@charset "UTF-8";
:root {
  --color-primary: #0F00E6;
  --color-primary-dark: #0B00B8;
  --color-primary-soft: #EEF0FF;
  --color-secondary: #8FA7BF;
  --color-secondary-soft: #F1F5F8;
  --color-text: #111827;
  --color-text-muted: #4B5563;
  --color-border: #E5E7EB;
  --color-background: #FFFFFF;
  --color-background-soft: #F3F4F6;
  --color-white: #FFFFFF;
  --bg: var(--color-background-soft);
  --surface: var(--color-background);
  --surface-2: #F9FAFB;
  --surface-3: var(--color-secondary-soft);
  --ink: var(--color-text);
  --ink-2: #1F2937;
  --muted: var(--color-text-muted);
  --muted-2: var(--color-secondary);
  --line: var(--color-border);
  --line-2: #D1D5DB;
  --primary: var(--color-primary);
  --primary-2: var(--color-primary-dark);
  --primary-ink: var(--color-primary-dark);
  --accent: var(--color-secondary);
  --accent-2: var(--color-secondary);
  --accent-soft: var(--color-secondary-soft);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(17,24,39,.04), 0 1px 1px rgba(17,24,39,.03);
  --sh-2: 0 6px 18px -8px rgba(17,24,39,.10), 0 2px 6px -2px rgba(17,24,39,.06);
  --sh-3: 0 24px 48px -20px rgba(17,24,39,.18), 0 6px 14px -6px rgba(17,24,39,.10);
  --sh-blue: 0 12px 28px -10px rgba(15,0,230,.35);
  --t-fast: 150ms cubic-bezier(.4,0,.2,1);
  --t: 220ms cubic-bezier(.4,0,.2,1);
  --t-slow: 360ms cubic-bezier(.4,0,.2,1);
  --sidebar-w: 268px;
  --topbar-h: 64px;
  --content-pad: clamp(20px, 3vw, 40px);
  --content-max: 1340px;
  --content-top: calc(var(--topbar-h) + 40px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  outline: 0;
}

button {
  cursor: pointer;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.1;
}

[class*=wp-block-] {
  margin-bottom: 20px;
}

html, body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.005em;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

::selection {
  background: var(--accent-2);
  color: #fff;
}

.main-wrap {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  transition: margin-left var(--t-slow);
}

body.sidebar-collapsed .main-wrap {
  margin-left: 72px;
}

@media (max-width: 900px) {
  .main-wrap {
    margin-left: 0;
  }
  body.sidebar-collapsed .main-wrap {
    margin-left: 0;
  }
}
.site-content {
  padding-top: var(--content-top);
}

.site-content > .cmdbar:first-child,
.site-content > .breadcrumb:first-child {
  margin-top: calc(var(--content-top) * -1);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  height: 42px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background var(--t), color var(--t), transform var(--t-fast), box-shadow var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn svg {
  width: 16px;
  height: 16px;
}
.btn:active {
  transform: translateY(1px);
}

.btn--sm {
  height: 32px;
  padding: 0 12px;
  font-size: 12.5px;
  border-radius: 8px;
}

.btn--lg {
  height: 50px;
  padding: 0 22px;
  font-size: 14.5px;
  border-radius: 12px;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: var(--sh-blue), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--primary-2, var(--color-primary-dark)) 100%);
  opacity: 0;
  transition: opacity var(--t);
}
.btn--primary:hover {
  box-shadow: 0 18px 36px -12px rgba(15, 0, 230, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.btn--primary:hover::before {
  opacity: 1;
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--sh-blue), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn--accent {
  background: var(--color-primary-soft);
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px rgba(15, 0, 230, 0.18);
}
.btn--accent:hover {
  background: #E1E4FF;
  box-shadow: inset 0 0 0 1px rgba(15, 0, 230, 0.35);
}

.btn--outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn--outline:hover {
  border-color: var(--ink-2);
  background: var(--surface-2);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid transparent;
}
.btn--ghost:hover {
  background: var(--surface-3);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover {
  background: var(--primary-2);
}

.wp-block-button .wp-block-button__link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  height: 42px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  text-decoration: none;
  transition: background var(--t), color var(--t), transform var(--t-fast), box-shadow var(--t), border-color var(--t);
}
.wp-block-button .wp-block-button__link:active {
  transform: translateY(1px);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: var(--sh-blue), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--primary-2, var(--color-primary-dark)) 100%);
  opacity: 0;
  transition: opacity var(--t);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  box-shadow: 0 18px 36px -12px rgba(15, 0, 230, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover::before {
  opacity: 1;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:active {
  transform: translateY(0);
  box-shadow: var(--sh-blue), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--ink-2);
  background: var(--surface-2);
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo svg {
  height: 100%;
  width: auto;
  display: block;
  fill: currentColor;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(143, 167, 191, 0.22);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}
.eyebrow--light .eyebrow__dot {
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}

.icon-toggle {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-radius: 8px;
  transition: background var(--t-fast), color var(--t-fast);
}
.icon-toggle svg {
  width: 18px;
  height: 18px;
}
.icon-toggle:hover {
  background: var(--surface-3);
  color: var(--ink);
}

.wrapper-970, .wrapper-1340 {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--content-pad);
}

.wrapper-1340 {
  max-width: 1340px;
}

.wrapper-970 {
  max-width: 970px;
}

.wrapper-full {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.wrapper-1340 .wrapper-970,
.wrapper-1340 .wrapper-1340,
.wrapper-970 .wrapper-970 {
  padding-inline: 0;
}

.wrapper-1340 .wrapper-full,
.wrapper-970 .wrapper-full {
  width: calc(100vw - var(--sidebar-w));
  margin-left: calc(50% - 50vw + var(--sidebar-w) / 2);
  margin-right: calc(50% - 50vw + var(--sidebar-w) / 2);
}

body.sidebar-collapsed .wrapper-1340 .wrapper-full,
body.sidebar-collapsed .wrapper-970 .wrapper-full {
  width: calc(100vw - 72px);
  margin-left: calc(50% - 50vw + 36px);
  margin-right: calc(50% - 50vw + 36px);
}

@media (max-width: 900px) {
  .wrapper-1340 .wrapper-full,
  .wrapper-970 .wrapper-full,
  body.sidebar-collapsed .wrapper-1340 .wrapper-full,
  body.sidebar-collapsed .wrapper-970 .wrapper-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

h1, .h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2, .h2 {
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.2;
}

h3, .h3 {
  font-size: clamp(20px, 1.8vw, 23px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

h4, .h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.section {
  padding: 40px var(--content-pad) 16px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 18px;
}

.section__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.section__title {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section__sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  max-width: 520px;
}

.section__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-2);
  transition: gap var(--t-fast), color var(--t-fast);
}
.section__link svg {
  width: 14px;
  height: 14px;
}
.section__link:hover {
  color: var(--color-primary-dark);
  gap: 9px;
}

.topbar-search {
  flex: 0 1 420px;
  min-width: 140px;
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 18px 0 42px;
  transition: background-color 420ms cubic-bezier(0.4, 0, 0.2, 1), border-color 420ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.topbar-search > svg {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.78);
  transition: color 420ms cubic-bezier(0.4, 0, 0.2, 1);
}
.topbar-search input {
  flex: 1;
  height: 100%;
  font-size: 13.5px;
  color: #fff;
  transition: color 420ms cubic-bezier(0.4, 0, 0.2, 1);
}
.topbar-search input::placeholder {
  color: rgba(255, 255, 255, 0.65);
  transition: color 420ms cubic-bezier(0.4, 0, 0.2, 1);
}
.topbar-search:focus-within {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.topbar.is-stuck .topbar-search,
body.has-light-hero .topbar .topbar-search {
  background: var(--surface-2);
  border-color: var(--line);
}
.topbar.is-stuck .topbar-search > svg,
body.has-light-hero .topbar .topbar-search > svg {
  color: var(--muted);
}
.topbar.is-stuck .topbar-search input,
body.has-light-hero .topbar .topbar-search input {
  color: var(--ink);
}
.topbar.is-stuck .topbar-search input::placeholder,
body.has-light-hero .topbar .topbar-search input::placeholder {
  color: var(--muted-2);
}
.topbar.is-stuck .topbar-search:focus-within,
body.has-light-hero .topbar .topbar-search:focus-within {
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(15, 0, 230, 0.12);
}

.topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color 420ms cubic-bezier(0.4, 0, 0.2, 1);
}
.topbar-contact svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--accent-2);
  transition: color 420ms cubic-bezier(0.4, 0, 0.2, 1);
}
.topbar-contact:hover {
  color: #fff;
}

.topbar.is-stuck .topbar-contact,
body.has-light-hero .topbar .topbar-contact {
  color: var(--ink);
}
.topbar.is-stuck .topbar-contact svg,
body.has-light-hero .topbar .topbar-contact svg {
  color: var(--accent);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav--topbar {
  flex-shrink: 0;
}
.main-nav--topbar ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav--topbar .main-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.86);
  border-radius: var(--r-sm);
  transition: color var(--t);
}
.main-nav--topbar .main-nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t);
}
.main-nav--topbar .main-nav__link:hover {
  color: #fff;
}
.main-nav--topbar .main-nav__link:hover::after, .main-nav--topbar .main-nav__link.is-active::after {
  transform: scaleX(1);
}
.main-nav--topbar .main-nav__link.is-active {
  color: #fff;
}
.main-nav--topbar .main-nav__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
}
@media (max-width: 900px) {
  .main-nav--topbar {
    display: none;
  }
}

.topbar.is-stuck .main-nav--topbar .main-nav__link,
body.has-light-hero .topbar .main-nav--topbar .main-nav__link {
  color: var(--muted);
}
.topbar.is-stuck .main-nav--topbar .main-nav__link:hover, .topbar.is-stuck .main-nav--topbar .main-nav__link.is-active,
body.has-light-hero .topbar .main-nav--topbar .main-nav__link:hover,
body.has-light-hero .topbar .main-nav--topbar .main-nav__link.is-active {
  color: var(--primary);
}
.topbar.is-stuck .main-nav--topbar .main-nav__link:focus-visible,
body.has-light-hero .topbar .main-nav--topbar .main-nav__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(15, 0, 230, 0.18);
}

.main-nav--sidebar {
  display: none;
  flex-shrink: 0;
  padding: 14px 14px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .main-nav--sidebar {
    display: block;
  }
}
.main-nav--sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
}
.main-nav--sidebar .main-nav__link {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: background-color var(--t), color var(--t);
}
.main-nav--sidebar .main-nav__link:hover {
  background: var(--surface-3);
}
.main-nav--sidebar .main-nav__link.is-active {
  color: var(--primary);
  background: var(--color-primary-soft);
}
.main-nav--sidebar .main-nav__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(15, 0, 230, 0.18);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8.5px 12px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.3;
  position: relative;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-link svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--muted-2);
  transition: color var(--t-fast);
}
.nav-link:hover {
  background: var(--surface-3);
  color: var(--ink);
}
.nav-link:hover svg {
  color: var(--primary-2);
}
.nav-link.is-active {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.nav-link.is-active svg {
  color: var(--color-white);
}

.nav-group {
  margin-bottom: 14px;
}
.nav-group ul li + li {
  margin-top: 1px;
}

.nav-group__title {
  display: block;
  padding: 0 12px 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.sidebar-cta {
  margin: 14px;
  padding: 16px;
  background: radial-gradient(120% 120% at 100% 0%, rgba(255, 255, 255, 0.14) 0%, transparent 60%), linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 14px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sidebar-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 60% at 90% 110%, rgba(255, 255, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.sidebar-cta__eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.sidebar-cta__text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  margin-bottom: 12px;
}

.page-hero {
  padding-block: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 64px);
}
.page-hero--title-only {
  padding-block: clamp(32px, 5vw, 64px) clamp(16px, 2.5vw, 28px);
}
.page-hero .wp-block-columns {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 56px);
}
@media (min-width: 901px) {
  .page-hero .wp-block-columns {
    flex-direction: row;
    align-items: center;
  }
}
.page-hero .wp-block-column {
  flex: 1 1 0;
  min-width: 0;
}
@media (min-width: 901px) {
  .page-hero.has-media .wp-block-columns .wp-block-column:first-child {
    flex-basis: 55%;
  }
  .page-hero.has-media .wp-block-columns .wp-block-column:last-child {
    flex-basis: 45%;
  }
}
.page-hero h1 {
  margin-bottom: 18px;
}
.page-hero p {
  font-size: clamp(15.5px, 1.2vw, 17.5px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 28px;
}
.page-hero .wp-block-buttons {
  gap: 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-hero .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
}

.rich-text {
  color: var(--ink);
}
.rich-text > * + * {
  margin-top: 18px;
}
.rich-text > h2 + *,
.rich-text > h3 + *,
.rich-text > h4 + * {
  margin-top: 14px;
}
.rich-text > * + h2 {
  margin-top: clamp(36px, 4vw, 56px);
}
.rich-text > * + h3 {
  margin-top: clamp(28px, 3vw, 40px);
}
.rich-text > * + h4 {
  margin-top: clamp(24px, 2.5vw, 32px);
}
.rich-text p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
}
.rich-text p a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--t);
}
.rich-text p a:hover {
  color: var(--color-primary-dark);
}
.rich-text p strong {
  font-weight: 700;
  color: var(--ink);
}
.rich-text p em {
  font-style: italic;
}
.rich-text p.is-style-lead,
.rich-text .has-text-align-center.is-style-lead {
  font-size: clamp(16.5px, 1.3vw, 18.5px);
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}
.rich-text ul {
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.7;
}
.rich-text ul li + li {
  margin-top: 8px;
}
.rich-text ul li::marker {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.1em;
}
.rich-text ul a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rich-text ol {
  list-style: none;
  counter-reset: vectori-ol;
  padding-left: 0;
  font-size: 15.5px;
  line-height: 1.7;
}
.rich-text ol li {
  counter-increment: vectori-ol;
  position: relative;
  padding-left: 40px;
  min-height: 26px;
}
.rich-text ol li + li {
  margin-top: 10px;
}
.rich-text ol li::before {
  content: counter(vectori-ol);
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 2px 6px -1px rgba(15, 0, 230, 0.28);
}
.rich-text ol li a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.is-style-highlight {
  background: var(--color-primary-soft);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--r-md);
  padding: 22px 26px;
  color: var(--ink);
}
.is-style-highlight p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}
.is-style-highlight p + p {
  margin-top: 10px;
}
.is-style-highlight p strong {
  color: var(--color-primary-dark);
  font-weight: 700;
}
.is-style-highlight p a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.wp-block-quote {
  position: relative;
  margin: 0;
  padding: 28px 32px 28px 38px;
  background: var(--surface-2);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--r-md);
}
.wp-block-quote::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 14px;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 7h4v4H7c0 2 1 3 3 3v2c-3 0-5-2-5-5V7zm9 0h4v4h-4c0 2 1 3 3 3v2c-3 0-5-2-5-5V7z'/></svg>") center/contain no-repeat;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 7h4v4H7c0 2 1 3 3 3v2c-3 0-5-2-5-5V7zm9 0h4v4h-4c0 2 1 3 3 3v2c-3 0-5-2-5-5V7z'/></svg>") center/contain no-repeat;
  opacity: 0.25;
}
.wp-block-quote p {
  font-size: clamp(16.5px, 1.4vw, 19px);
  line-height: 1.55;
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}
.wp-block-quote cite {
  display: block;
  margin-top: 14px;
  font-size: 13.5px;
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}
.wp-block-quote cite::before {
  content: "— ";
  color: var(--muted-2);
}

.media-block {
  margin-block: clamp(28px, 3vw, 40px);
}
.media-block .wp-block-columns {
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}
.media-block .wp-block-column > * + * {
  margin-top: 14px;
}
.media-block .wp-block-column h4 {
  margin-bottom: 6px;
}
.media-block .wp-block-column p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
}
.media-block .wp-block-image {
  margin: 0;
}
.media-block .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
  box-shadow: var(--sh-2);
}

.wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 0;
}
.wp-block-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  aspect-ratio: 4/3;
}
.wp-block-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.wp-block-gallery figure:hover img {
  transform: scale(1.04);
}

.wpcf7 {
  --field-h: 52px;
  max-width: 760px;
}

.vform--card {
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  padding: clamp(20px, 3vw, 36px);
}
.vform--card .wpcf7 {
  max-width: none;
}

.wpcf7-form {
  display: block;
}

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

.vform__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.vform__field--full {
  grid-column: 1/-1;
}

.vform__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.vform__label .req {
  color: var(--color-primary);
  margin-left: 2px;
}

.wpcf7-form-control-wrap {
  display: block;
  position: relative;
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-number,
.wpcf7-date,
.wpcf7-select,
.wpcf7-textarea {
  width: 100%;
  height: var(--field-h);
  padding: 0 16px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  appearance: none;
}
.wpcf7-text::placeholder,
.wpcf7-email::placeholder,
.wpcf7-tel::placeholder,
.wpcf7-number::placeholder,
.wpcf7-date::placeholder,
.wpcf7-select::placeholder,
.wpcf7-textarea::placeholder {
  color: var(--muted-2);
}
.wpcf7-text:hover,
.wpcf7-email:hover,
.wpcf7-tel:hover,
.wpcf7-number:hover,
.wpcf7-date:hover,
.wpcf7-select:hover,
.wpcf7-textarea:hover {
  border-color: #B6BCC6;
}
.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-number:focus,
.wpcf7-date:focus,
.wpcf7-select:focus,
.wpcf7-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--sh-1), 0 0 0 4px rgba(15, 0, 230, 0.12);
}

.wpcf7-textarea {
  height: auto;
  min-height: 132px;
  padding: 13px 16px;
  line-height: 1.55;
  resize: vertical;
}

.wpcf7-select {
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.wpcf7-select:invalid,
.wpcf7-select option[value=""] {
  color: var(--muted-2);
}
.wpcf7-select option {
  color: var(--ink);
}
.wpcf7-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--ink);
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.wpcf7-acceptance input[type=checkbox] {
  appearance: none;
  width: 22px;
  height: 22px;
  margin: 0;
  flex: none;
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  border-radius: 7px;
  box-shadow: var(--sh-1);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.wpcf7-acceptance input[type=checkbox]:hover {
  border-color: var(--color-primary);
}
.wpcf7-acceptance input[type=checkbox]:checked {
  background: var(--color-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/13px;
  border-color: var(--color-primary);
}
.wpcf7-acceptance input[type=checkbox]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(15, 0, 230, 0.14);
}
.wpcf7-acceptance .wpcf7-list-item-label,
.wpcf7-acceptance a {
  font-size: 13px;
}
.wpcf7-acceptance a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
}
.wpcf7-acceptance a:hover {
  color: var(--color-primary-dark);
}

.vform__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wpcf7-submit {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #fff;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  box-shadow: var(--sh-blue), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform var(--t-fast), box-shadow var(--t);
}
.wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -12px rgba(15, 0, 230, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.wpcf7-submit:active {
  transform: translateY(0);
}
.wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.wpcf7-not-valid {
  border-color: #DC2626 !important;
}
.wpcf7-not-valid:focus {
  box-shadow: var(--sh-1), 0 0 0 4px rgba(220, 38, 38, 0.14) !important;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #DC2626;
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 13px 16px !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-md);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--surface-2);
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output,
.wpcf7-form.payment-required .wpcf7-response-output {
  border-color: rgba(220, 38, 38, 0.35) !important;
  background: #FEF2F2;
  color: #DC2626;
}

.wpcf7-form.sent .wpcf7-response-output {
  border-color: rgba(22, 163, 74, 0.35) !important;
  background: #F0FDF4;
  color: #16A34A;
}

.wpcf7-spinner {
  margin: 0 0 0 12px;
  background-color: var(--color-primary);
}

@media (max-width: 620px) {
  .wpcf7 {
    --field-h: 48px;
  }
  .vform__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wpcf7-submit {
    width: 100%;
  }
}
.topbar {
  position: fixed;
  top: 0;
  left: var(--sidebar-w);
  right: 0;
  z-index: 60;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 var(--content-pad);
  background: rgba(15, 0, 230, 0);
  border-bottom: 1px solid transparent;
  box-shadow: 0 0 0 rgba(11, 27, 46, 0);
  backdrop-filter: blur(0px) saturate(100%);
  -webkit-backdrop-filter: blur(0px) saturate(100%);
  transition: background-color 420ms cubic-bezier(0.4, 0, 0.2, 1), border-color 420ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 420ms cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 420ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-backdrop-filter 420ms cubic-bezier(0.4, 0, 0.2, 1), height 320ms cubic-bezier(0.4, 0, 0.2, 1), left var(--t-slow);
}

body.sidebar-collapsed .topbar {
  left: 72px;
}

.topbar__logo {
  display: inline-flex;
  align-items: center;
  height: 40px;
  color: #fff;
  transition: height 320ms cubic-bezier(0.4, 0, 0.2, 1), color 420ms cubic-bezier(0.4, 0, 0.2, 1), filter 420ms cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
}
.topbar__logo svg {
  height: 100%;
  width: auto;
  display: block;
  fill: currentColor;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.topbar__cta {
  margin-left: 2px;
}

.topbar.is-stuck {
  height: var(--topbar-h);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.96) 28%, rgba(255, 255, 255, 0.78) 60%, rgba(255, 255, 255, 0.55) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(11, 27, 46, 0.02), 0 12px 28px -18px rgba(11, 27, 46, 0.22);
}
.topbar.is-stuck .topbar__logo {
  height: 34px;
  color: var(--primary);
  filter: drop-shadow(0 2px 6px rgba(11, 27, 46, 0.1));
}

body.has-light-hero .topbar {
  height: var(--topbar-h);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.96) 28%, rgba(255, 255, 255, 0.78) 60%, rgba(255, 255, 255, 0.55) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(11, 27, 46, 0.02), 0 12px 28px -18px rgba(11, 27, 46, 0.22);
}
body.has-light-hero .topbar .topbar__logo {
  height: 34px;
  color: var(--primary);
  filter: drop-shadow(0 2px 6px rgba(11, 27, 46, 0.1));
}

@media (max-width: 1180px) {
  .topbar__cta {
    display: none;
  }
  .topbar-contact span {
    display: none;
  }
}
@media (max-width: 900px) {
  .topbar {
    left: 0 !important;
    gap: 12px;
  }
  .topbar__logo {
    height: 34px;
  }
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-w);
  background: var(--color-background);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  z-index: 50;
  transition: width var(--t-slow);
}

.sidebar__top {
  height: var(--topbar-h);
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.sidebar__top-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.sidebar__nav {
  flex: 1;
  overflow-y: auto;
  padding: 18px 14px 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.sidebar__nav::-webkit-scrollbar {
  width: 6px;
}
.sidebar__nav::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 999px;
}

body.sidebar-collapsed .sidebar {
  width: 72px;
}
body.sidebar-collapsed .sidebar .nav-group__title,
body.sidebar-collapsed .sidebar .nav-link span,
body.sidebar-collapsed .sidebar .nav-link,
body.sidebar-collapsed .sidebar-cta,
body.sidebar-collapsed .sidebar__top-label {
  display: none;
}

@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform var(--t-slow);
  }
  body.sidebar-open .sidebar {
    transform: translateX(0);
  }
}
.story {
  margin: 40px auto 16px;
  max-width: var(--content-max);
  padding: 0 var(--content-pad);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.story__text .section__title {
  margin-bottom: 18px;
}

.story__lede {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.story__list {
  margin-bottom: 28px;
}
.story__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line);
}
.story__list li:last-child {
  border-bottom: none;
}

.story__check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.story__check svg {
  width: 13px;
  height: 13px;
}

.story__media {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 460px;
}

.story__media-main {
  grid-row: span 2;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
}

.story__media-side,
.story__media-bot {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.story__media > div:hover img {
  transform: scale(1.04);
}

@media (max-width: 1180px) {
  .story {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story__media {
    height: 380px;
  }
}
@media (max-width: 900px) {
  .story__media {
    grid-template-columns: 1fr;
    height: auto;
  }
  .story__media-main,
  .story__media-side,
  .story__media-bot {
    aspect-ratio: 16/10;
  }
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.prod-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: block;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.prod-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: var(--sh-3);
}

.prod-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 999px;
}

.prod-card__tag--new {
  background: var(--color-primary);
  color: var(--color-white);
}

.prod-card__media {
  aspect-ratio: 1/1;
  background: #fff;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.prod-card__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--t-slow);
}

.prod-card:hover .prod-card__media img {
  transform: scale(1.06);
}

.prod-card__body {
  padding: 16px 18px 20px;
}

.prod-card__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.prod-card__body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.prod-card__body p {
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-2);
  box-shadow: var(--sh-3);
}

.cat-card__media {
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, var(--color-secondary-soft) 0%, var(--color-background-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}
.cat-card__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform var(--t-slow);
}

.cat-card:hover .cat-card__media img {
  transform: scale(1.05);
}

.cat-card__body {
  padding: 18px 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cat-card__body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.cat-card__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.cat-card__arrow svg {
  width: 14px;
  height: 14px;
}

.cat-card:hover .cat-card__arrow {
  background: var(--accent);
  color: #fff;
  transform: translate(2px, -2px);
}

@media (max-width: 1180px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}
.cat-hero {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px) var(--content-pad) 8px;
}

.cat-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.cat-hero--has-media .cat-hero__inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.cat-hero__title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cat-hero__sub {
  margin-top: 12px;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 500;
  color: var(--accent);
}

.cat-hero__intro {
  margin-top: 16px;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.65;
}

.cat-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
}

.cat-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.cat-empty {
  color: var(--muted);
  font-size: 15px;
  padding-block: 24px;
}

.cat-pagination {
  margin-top: 32px;
}
.cat-pagination .page-numbers {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0;
}
.cat-pagination li > .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md, 10px);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.cat-pagination li > a.page-numbers:hover {
  border-color: var(--accent-2);
  color: var(--accent);
}
.cat-pagination li > .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.cat-pagination li > .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}

@media (max-width: 1180px) {
  .cat-hero--has-media .cat-hero__inner {
    grid-template-columns: 1fr;
  }
  .cat-hero__media {
    order: -1;
    max-width: 420px;
  }
}
.search-hero {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(24px, 3.5vw, 44px) var(--content-pad) 4px;
}

.search-hero__inner {
  max-width: 760px;
}

.search-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.search-hero__title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.search-hero__term {
  color: var(--primary);
}

.search-hero__count {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 18px;
  box-shadow: var(--sh-2);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.search-bar:focus-within {
  border-color: var(--primary);
  box-shadow: var(--sh-2), 0 0 0 4px rgba(15, 0, 230, 0.12);
}
.search-bar > svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--muted-2);
}
.search-bar input[type=search] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 0;
}
.search-bar input[type=search]::placeholder {
  color: var(--muted-2);
}
.search-bar input[type=search]:focus {
  outline: none;
}
.search-bar input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.search-bar__submit {
  flex-shrink: 0;
  border: 0;
  cursor: pointer;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  box-shadow: var(--sh-blue);
  transition: transform var(--t-fast), box-shadow var(--t);
}
.search-bar__submit:hover {
  transform: translateY(-1px);
}
.search-bar__submit:active {
  transform: translateY(0);
}

.search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--content-max);
  margin: 8px auto 0;
  padding: 16px var(--content-pad) 4px;
  border-bottom: 1px solid var(--line);
}

.search-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.search-tab:hover {
  border-color: var(--line-2);
}
.search-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.search-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 700;
  background: var(--surface-3);
  color: var(--muted);
}
.search-tab.is-active .search-tab__count {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.search-group {
  scroll-margin-top: calc(var(--topbar-h) + 16px);
}

.search-group__count {
  display: inline-block;
  margin-left: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-2);
  vertical-align: middle;
}

.result-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.result-row:hover {
  border-color: var(--line-2);
  box-shadow: var(--sh-2);
  transform: translateX(2px);
}
.result-row:hover .result-row__arrow {
  background: var(--accent);
  color: #fff;
  transform: translateX(2px);
}

.result-row__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  color: var(--ink);
}
.result-row__icon svg {
  width: 20px;
  height: 20px;
}
.result-row__icon--post {
  background: var(--color-primary-soft);
  color: var(--primary);
}

.result-row__main {
  flex: 1;
  min-width: 0;
}

.result-row__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
}

.result-row__type {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.result-row__meta {
  font-size: 11.5px;
  color: var(--muted-2);
}

.result-row__title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.result-row__title mark {
  background: rgba(15, 0, 230, 0.12);
  color: var(--primary);
  padding: 0 2px;
  border-radius: 3px;
}

.result-row__excerpt {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.result-row__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--r-pill);
  background: var(--surface-3);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.result-row__arrow svg {
  width: 14px;
  height: 14px;
}

.search-empty {
  color: var(--muted);
  font-size: 15px;
  padding-block: 16px;
}

.search-empty--lg {
  text-align: center;
  padding: clamp(32px, 5vw, 64px) 20px;
}
.search-empty--lg h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.search-empty--lg p {
  margin-top: 10px;
  color: var(--muted);
}

.search-empty__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 620px) {
  .search-bar {
    flex-wrap: wrap;
    border-radius: var(--r-lg);
    padding: 12px;
  }
  .search-bar > svg {
    display: none;
  }
  .search-bar input[type=search] {
    flex: 1 1 100%;
    padding: 6px 4px;
  }
  .search-bar__submit {
    flex: 1 1 100%;
  }
  .result-row {
    gap: 12px;
    padding: 14px;
  }
  .result-row__arrow {
    display: none;
  }
}
.refs {
  padding-top: 56px;
  padding-bottom: 24px;
}

.refs__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 4px;
}

.ref-logo {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: background var(--t-fast);
}
.ref-logo img {
  max-width: 80%;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.ref-logo:hover {
  background: var(--surface-2);
}

@media (max-width: 1180px) {
  .refs__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 620px) {
  .refs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: var(--sh-2);
}

.news-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.news-card:hover .news-card__media img {
  transform: scale(1.05);
}

.news-card__body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.news-card__body h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  flex: 1;
}

.news-card__more {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary-2);
  transition: color var(--t-fast);
}

.news-card:hover .news-card__more {
  color: var(--accent);
}

@media (max-width: 1180px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}
.finalcta {
  margin: 48px auto 24px;
  max-width: calc(var(--content-max) - 2 * var(--content-pad));
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-text) 100%);
  border-radius: var(--r-xl);
  padding: 56px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-3);
}

.finalcta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.finalcta__bg svg {
  width: 100%;
  height: 100%;
}

.finalcta__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.finalcta h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--color-white);
}

.finalcta__accent {
  color: var(--accent-2);
  font-style: italic;
  font-weight: 500;
}

.finalcta p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 540px;
}

.finalcta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .finalcta {
    padding: 36px 28px;
    border-radius: 18px;
  }
}
@media (max-width: 620px) {
  .finalcta {
    padding: 28px 22px;
  }
  .finalcta h2 {
    font-size: 28px;
  }
  .finalcta__actions .btn {
    flex: 1;
  }
}
.breadcrumb {
  padding: var(--content-top) var(--content-pad) 18px;
  background: linear-gradient(180deg, var(--color-secondary-soft) 0%, rgba(241, 245, 248, 0) 100%);
  border-bottom: 1px solid var(--line);
}

.breadcrumb ol {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 12.5px;
  color: var(--muted);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.breadcrumb li + li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--muted-2);
  border-radius: 999px;
  opacity: 0.5;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  transition: color var(--t-fast);
}
.breadcrumb a svg {
  width: 13px;
  height: 13px;
}
.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb [aria-current=page] {
  color: var(--ink);
  font-weight: 600;
}

.product-hero {
  padding: 32px var(--content-pad) 56px;
}

.product-hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--topbar-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-gallery__main {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, var(--color-secondary-soft) 0%, var(--color-background-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery__main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform var(--t-slow);
}
.product-gallery__main:hover img {
  transform: scale(1.04);
}
.product-gallery__main:hover .product-gallery__zoom {
  opacity: 1;
  transform: translateY(0);
}

.product-gallery__zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-1);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.product-gallery__zoom svg {
  width: 16px;
  height: 16px;
}

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

.product-gallery__thumb {
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, var(--color-secondary-soft) 0%, var(--color-background-soft) 100%);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.product-gallery__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-gallery__thumb:hover {
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}
.product-gallery__thumb.is-active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 0, 230, 0.18);
}

.product-info {
  padding-top: 4px;
}

.product-info__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 18px;
}

.product-info__lede {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 540px;
}

.product-specs-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.spec-mini {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-mini:nth-child(2n) {
  border-right: none;
}
.spec-mini:nth-last-child(-n+2) {
  border-bottom: none;
}

.spec-mini__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-mini__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.product-info__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.product-section {
  padding-top: 8px;
}

.product-prose {
  max-width: 760px;
}

.doc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t-fast);
}
.doc-item:hover {
  border-color: var(--line-2);
  box-shadow: var(--sh-2);
  transform: translateY(-2px);
}

.doc-item__icon {
  flex: none;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.doc-item__icon svg {
  width: 20px;
  height: 20px;
}

.doc-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.doc-item__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.doc-item__meta {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.doc-item__dl {
  flex: none;
  color: var(--muted-2);
  transition: color var(--t-fast), transform var(--t-fast);
}
.doc-item__dl svg {
  width: 18px;
  height: 18px;
}

.doc-item:hover .doc-item__dl {
  color: var(--color-primary);
  transform: translateY(1px);
}

.product-stickybar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -10px rgba(11, 27, 46, 0.18);
  align-items: center;
  gap: 12px;
}

.product-stickybar__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.product-stickybar__ref {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-stickybar__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1180px) {
  .product-hero__inner {
    gap: 36px;
  }
  .product-info__title {
    font-size: clamp(26px, 3.4vw, 34px);
  }
}
@media (max-width: 900px) {
  .breadcrumb {
    padding-top: var(--content-top);
    padding-bottom: 14px;
  }
  .product-hero {
    padding: 24px var(--content-pad) 36px;
  }
  .product-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-gallery {
    position: static;
    max-width: 520px;
    margin: 0 auto;
  }
  .doc-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .product-info__title {
    font-size: 26px;
  }
  .product-info__lede {
    font-size: 14.5px;
  }
  .product-info__actions {
    width: 100%;
  }
  .product-info__actions .btn {
    flex: 1;
  }
  .product-specs-mini {
    grid-template-columns: 1fr;
  }
  .spec-mini {
    border-right: none;
  }
  .spec-mini:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }
  .product-stickybar {
    display: flex;
  }
}
@media (max-width: 620px) {
  body:has(.product-stickybar) .footer {
    padding-bottom: 88px;
  }
}

.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 56px var(--content-pad) 28px;
}

.footer__top {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.footer__brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 14px 0 18px;
  max-width: 320px;
}

.footer__logo-link {
  display: inline-block;
  color: var(--primary);
}

.footer__logo {
  height: 38px;
  width: auto;
  display: block;
  color: var(--primary);
  fill: currentColor;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer__col ul li {
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.footer__col ul li a {
  transition: color var(--t-fast);
}
.footer__col ul li a:hover {
  color: var(--ink);
}

.footer__contact li:first-child {
  color: var(--ink-2);
}

.footer__bot {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__bot p {
  font-size: 12.5px;
  color: var(--muted);
}
.footer__bot ul {
  display: flex;
  gap: 22px;
}
.footer__bot ul li a {
  font-size: 12.5px;
  color: var(--muted);
  transition: color var(--t-fast);
}
.footer__bot ul li a:hover {
  color: var(--ink);
}

@media (max-width: 1180px) {
  .footer__top {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer__bot {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 620px) {
  .footer {
    padding: 40px var(--content-pad) 24px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer__bot ul {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

/*# sourceMappingURL=style_page.css.map */
