:root {
  --ink: #0a2140;
  --ink-soft: #41546c;
  --muted: #6d7d91;
  --line: #dfe7f2;
  --line-strong: #c9d6e8;
  --paper: #ffffff;
  --paper-blue: #f4f8ff;
  --paper-ice: #eaf2ff;
  --blue: #155eef;
  --blue-deep: #0d49c6;
  --blue-soft: #dce8ff;
  --mint: #43d9b1;
  --mint-soft: #dffaf2;
  --coral: #ff725e;
  --shadow-sm: 0 8px 30px rgba(27, 60, 108, 0.08);
  --shadow-md: 0 24px 70px rgba(27, 60, 108, 0.14);
  --content: 1240px;
  --header-height: 82px;
  --radius: 8px;
}

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

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbff 0, #fff 14%, #fff 78%, #f4f8ff 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

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

p,
h1,
h2,
h3,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

:focus-visible {
  outline: 3px solid rgba(21, 94, 239, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

main {
  overflow: clip;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(201, 214, 232, 0.72);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(1.15);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(var(--content), calc(100% - 48px));
  min-height: var(--header-height);
  margin: 0 auto;
  gap: 32px;
}

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

.brand-mark {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(21, 94, 239, 0.22);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

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

.brand-copy strong {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.primary-nav > a:not(.nav-mobile-cta) {
  padding: 10px 11px;
  color: var(--ink-soft);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}

.primary-nav > a:not(.nav-mobile-cta):hover,
.primary-nav > a:not(.nav-mobile-cta):focus-visible {
  color: var(--blue);
  background: var(--paper-blue);
}

.header-cta,
.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.nav-mobile-cta:hover,
.nav-mobile-cta:focus-visible {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.nav-mobile-cta,
.mobile-menu-toggle {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -65%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.button:hover::before {
  left: 130%;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(21, 94, 239, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  box-shadow: 0 16px 36px rgba(21, 94, 239, 0.26);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--blue);
  background: #fff;
  border-color: var(--blue);
}

.button-white {
  color: var(--blue-deep);
  background: #fff;
  border-color: #fff;
}

.button-ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-full {
  width: 100%;
}

.eyebrow,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #bcd2ff;
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-right: 9px;
  background: var(--mint);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(67, 217, 177, 0.17);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(520px, 1.09fr);
  align-items: center;
  width: min(var(--content), calc(100% - 48px));
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: 48px 0 42px;
  gap: 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: hero-copy-in 720ms cubic-bezier(.22, .8, .28, 1) both;
}

.hero h1 {
  max-width: 700px;
  margin-top: 22px;
  font-size: 62px;
  font-weight: 790;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-lead {
  max-width: 650px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 10px;
}

.hero-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-routes a {
  display: grid;
  min-width: 0;
  padding: 18px 16px 18px 0;
  border-right: 1px solid var(--line);
  transition: color 180ms ease, padding-left 180ms ease;
}

.hero-routes a + a {
  padding-left: 16px;
}

.hero-routes a:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-routes a:hover,
.hero-routes a:focus-visible {
  color: var(--blue);
  padding-left: 8px;
}

.hero-routes a + a:hover,
.hero-routes a + a:focus-visible {
  padding-left: 24px;
}

.hero-routes span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.hero-routes b {
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.3;
}

.hero-routes small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-width: 0;
  animation: hero-visual-in 900ms 100ms cubic-bezier(.2, .76, .24, 1) both;
}

.hero-image-shell {
  position: relative;
  aspect-ratio: 1.06;
  overflow: hidden;
  background: #edf4ff;
  border: 1px solid rgba(201, 214, 232, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.hero-image-shell::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 900ms cubic-bezier(.2, .7, .2, 1);
}

.hero-visual:hover .hero-image-shell img {
  transform: scale(1.025);
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.28), transparent 48%, rgba(10, 33, 64, 0.06));
  pointer-events: none;
}

.hero-float,
.hero-year {
  position: absolute;
  z-index: 3;
  display: grid;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(201, 214, 232, 0.82);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.hero-float {
  min-width: 226px;
  padding: 15px 17px;
  gap: 3px;
}

.hero-float span,
.hero-year span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-float b {
  font-size: 13px;
  line-height: 1.35;
}

.hero-float-top {
  top: 30px;
  left: -32px;
  animation: quiet-float 7s 1.2s ease-in-out infinite;
}

.hero-float-bottom {
  right: -22px;
  bottom: 38px;
  animation: quiet-float-reverse 8s 1.5s ease-in-out infinite;
}

.hero-year {
  right: 22px;
  top: -18px;
  align-items: end;
  grid-template-columns: auto auto;
  padding: 14px 16px;
  gap: 10px;
}

.hero-year b {
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip > div {
  display: grid;
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
  gap: 3px;
}

.proof-strip > div + div {
  padding-left: 24px;
}

.proof-strip > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-strip b {
  font-size: 14px;
}

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

.section {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 820px;
}

.section-heading h2,
.custom-form-copy h2 {
  margin-top: 14px;
  font-size: 48px;
  font-weight: 760;
  line-height: 1.08;
  text-wrap: balance;
}

.section-heading > p,
.section-heading-split > p,
.custom-form-copy > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.section-heading > p {
  max-width: 690px;
  margin-top: 18px;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .62fr);
  align-items: end;
  max-width: none;
  gap: 72px;
}

.section-heading-split > p {
  padding-bottom: 5px;
}

.section-heading-row {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 32px;
}

.text-link,
.footer-action {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

.text-link:hover,
.footer-action:hover {
  color: var(--blue-deep);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.22, .7, .24, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.about-ledger article {
  min-height: 250px;
  padding: 30px 34px 34px 0;
  border-right: 1px solid var(--line-strong);
}

.about-ledger article + article {
  padding-left: 34px;
}

.about-ledger article:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-ledger article > span,
.services-list article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.about-ledger h3,
.services-list h3 {
  margin-top: 55px;
  font-size: 22px;
  line-height: 1.2;
}

.about-ledger p,
.services-list p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.path-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - var(--content)) / 2));
  padding-left: max(24px, calc((100% - var(--content)) / 2));
  background: var(--paper-blue);
}

.path-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  margin-top: 60px;
  gap: 12px;
}

.path-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.path-card:hover {
  border-color: #b7c9e6;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.path-card-primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 22px 55px rgba(21, 94, 239, 0.2);
}

.path-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.path-card-primary .path-number {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.path-card > div {
  margin-top: auto;
}

.path-card h3 {
  font-size: 28px;
  line-height: 1.15;
}

.path-card p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.path-card-primary p {
  color: rgba(255, 255, 255, 0.74);
}

.path-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 18px;
  color: var(--blue);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.path-card-primary > a {
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.22);
}

.material-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  gap: 14px;
}

.material-card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 0 rgba(10, 33, 64, 0.02);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.material-card:hover {
  border-color: #b5c8e8;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.material-card-top,
.material-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.material-type,
.material-pages,
.material-options span,
.active-filter-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
}

.material-type {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.material-pages {
  color: var(--muted);
  background: var(--paper-blue);
}

.material-card > div:nth-child(2) {
  margin-top: 54px;
}

.material-card small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
}

.material-card h2,
.material-card h3 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.24;
  text-wrap: balance;
}

.material-card p {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.material-options {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  gap: 6px;
}

.material-options span {
  color: #087b61;
  background: var(--mint-soft);
}

.material-card-bottom {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.material-card-bottom b {
  font-size: 24px;
  line-height: 1;
}

.material-card-bottom a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--line-strong);
}

.services-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  min-height: 150px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line-strong);
  gap: 8px 14px;
}

.services-list article:nth-child(even) {
  padding-right: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line-strong);
}

.services-list article > span {
  grid-row: 1 / span 2;
}

.services-list h3,
.services-list p {
  margin-top: 0;
}

.process-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - var(--content)) / 2));
  padding-left: max(24px, calc((100% - var(--content)) / 2));
  color: #fff;
  background: var(--ink);
  border-top: 0 !important;
}

.process-section .eyebrow {
  color: #8fb3ff;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.process-line li {
  display: grid;
  grid-template-columns: 40px 1fr;
  min-height: 190px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  gap: 20px;
}

.process-line li:nth-child(3n + 2),
.process-line li:nth-child(3n + 3) {
  padding-left: 28px;
}

.process-line li:nth-child(3n) {
  border-right: 0;
}

.process-line li > span {
  color: #8fb3ff;
  font-size: 12px;
  font-weight: 800;
}

.process-line h3 {
  font-size: 20px;
  line-height: 1.25;
}

.process-line p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.65;
}

.reviews-note {
  color: var(--muted);
  font-size: 13px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.15fr .925fr .925fr;
  margin-top: 60px;
  gap: 14px;
}

.reviews-disclaimer {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 30px;
  background: var(--paper-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-card::before {
  color: var(--blue);
  content: "“";
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: .7;
}

.review-card-featured {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.review-card-featured::before {
  color: #bcd2ff;
}

.review-card blockquote {
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.review-card-featured blockquote {
  color: rgba(255, 255, 255, 0.88);
}

.review-card figcaption {
  display: grid;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
  gap: 3px;
}

.review-card-featured figcaption {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.review-card figcaption b {
  font-size: 15px;
}

.review-card figcaption span {
  color: var(--muted);
  font-size: 12px;
}

.review-card-featured figcaption span {
  color: rgba(255, 255, 255, 0.64);
}

.faq-list {
  margin-top: 52px;
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  position: relative;
  padding: 28px 56px 28px 0;
  list-style: none;
  font-size: 20px;
  font-weight: 720;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 20px;
  height: 20px;
  color: var(--blue);
  content: "+";
  font-size: 23px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 56px 28px 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.request-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: end;
  width: min(var(--content), calc(100% - 48px));
  margin-bottom: 112px;
  padding: 56px;
  color: #fff;
  background: var(--blue);
  border: 0 !important;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(21, 94, 239, 0.24);
  gap: 54px;
}

.request-banner h2 {
  max-width: 800px;
  margin-top: 14px;
  font-size: 44px;
  line-height: 1.08;
  text-wrap: balance;
}

.request-banner p {
  max-width: 690px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.7;
}

.request-banner-actions {
  display: grid;
  min-width: 270px;
  gap: 8px;
}

.page-intro,
.custom-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 64px;
  border-bottom: 1px solid var(--line-strong);
  gap: 64px;
}

.page-intro h1,
.custom-intro h1,
.confirmation-page h1,
.project-content > h1 {
  max-width: 890px;
  margin-top: 16px;
  font-size: 58px;
  font-weight: 770;
  line-height: 1.04;
  text-wrap: balance;
}

.page-intro > div:first-child > p,
.custom-intro > div:first-child > p {
  max-width: 720px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.catalog-count {
  display: grid;
  justify-items: end;
  padding-bottom: 6px;
}

.catalog-count b {
  color: var(--blue);
  font-size: 72px;
  font-weight: 760;
  line-height: .9;
}

.catalog-count span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 112px;
  gap: 42px;
}

.catalog-filters {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  padding: 24px;
  background: var(--paper-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  gap: 18px;
}

.filter-heading,
.catalog-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.filter-heading > div,
.catalog-toolbar > div:first-child {
  display: grid;
  gap: 2px;
}

.filter-heading span,
.catalog-toolbar span {
  color: var(--muted);
  font-size: 11px;
}

.filter-heading b,
.catalog-toolbar b {
  font-size: 17px;
}

.filter-heading a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
}

.field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.field > span,
.contact-picker legend,
.extras-picker legend {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa8b9;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.1);
}

.filter-help {
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}

.filter-help b {
  font-size: 13px;
}

.filter-help p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.filter-help a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.catalog-toolbar {
  align-items: center;
  min-height: 50px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.active-filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.active-filter-list span {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 430px;
  margin-top: 18px;
  padding: 50px;
  background: var(--paper-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.empty-state > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.empty-state h2 {
  max-width: 520px;
  margin-top: auto;
  font-size: 34px;
  line-height: 1.12;
}

.empty-state p {
  max-width: 580px;
  margin-top: 14px;
  color: var(--ink-soft);
}

.empty-state .button {
  margin-top: 24px;
}

.project-page {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 112px;
}

.project-breadcrumbs {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  gap: 9px;
}

.project-breadcrumbs a:hover {
  color: var(--blue);
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: start;
  margin-top: 40px;
  gap: 64px;
}

.project-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.availability {
  display: inline-flex;
  align-items: center;
  color: #087b61;
  font-size: 12px;
  font-weight: 750;
  gap: 7px;
}

.availability i {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
}

.project-content > h1 {
  margin-top: 22px;
  font-size: 52px;
}

.project-lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.project-mobile-cta {
  display: none;
}

.project-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-specs div {
  display: grid;
  padding: 20px 20px 20px 0;
  border-right: 1px solid var(--line);
  gap: 3px;
}

.project-specs div + div {
  padding-left: 20px;
}

.project-specs div:last-child {
  border-right: 0;
}

.project-specs span {
  color: var(--muted);
  font-size: 11px;
}

.project-specs b {
  font-size: 14px;
}

.project-preview {
  position: relative;
  height: 500px;
  margin-top: 48px;
  overflow: hidden;
  background: var(--paper-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-preview::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 94, 239, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 94, 239, .06) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
}

.preview-sheet {
  position: absolute;
  width: 380px;
  height: 450px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.preview-sheet-back {
  top: 48px;
  left: calc(50% - 245px);
  transform: rotate(-10deg);
}

.preview-sheet-mid {
  top: 42px;
  left: calc(50% - 165px);
  transform: rotate(7deg);
}

.preview-sheet-front {
  top: 24px;
  left: calc(50% - 190px);
  display: flex;
  flex-direction: column;
  padding: 54px 46px 42px;
}

.preview-sheet-front span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-sheet-front b {
  margin-top: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.28;
}

.preview-sheet-front i {
  width: 100%;
  height: 7px;
  margin-top: 22px;
  background: var(--paper-ice);
  border-radius: 2px;
}

.preview-sheet-front i + i {
  width: 88%;
  margin-top: 10px;
}

.preview-sheet-front i:nth-of-type(3) {
  width: 72%;
}

.preview-sheet-front i:nth-of-type(4) {
  width: 94%;
}

.preview-sheet-front small {
  margin-top: auto;
  color: var(--muted);
  font-size: 11px;
}

.project-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 54px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.project-details-grid section {
  min-height: 300px;
  padding: 36px 38px 36px 0;
}

.project-details-grid section + section {
  padding-right: 0;
  padding-left: 38px;
  border-left: 1px solid var(--line-strong);
}

.project-details-grid h2 {
  margin-top: 12px;
  font-size: 28px;
  line-height: 1.18;
}

.project-details-grid p,
.check-list {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  list-style: none;
  gap: 9px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  content: "";
}

.project-order-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.order-price {
  padding: 28px;
  color: #fff;
  background: var(--ink);
}

.order-price > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.order-price > b {
  display: block;
  margin-top: 8px;
  font-size: 42px;
  line-height: 1;
}

.order-price p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.6;
}

.request-form {
  display: grid;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  gap: 20px;
}

.compact-request-form {
  padding: 28px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-picker,
.extras-picker {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-options,
.check-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
  gap: 6px;
}

.contact-options label,
.check-options label {
  position: relative;
  min-width: 0;
}

.contact-options input,
.check-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-options span,
.check-options span {
  display: grid;
  min-height: 42px;
  padding: 0 10px;
  place-items: center;
  color: var(--ink-soft);
  background: var(--paper-blue);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-options input:checked + span,
.check-options input:checked + span {
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-color: #9dbaf5;
}

.contact-options input:focus-visible + span,
.check-options input:focus-visible + span {
  outline: 3px solid rgba(21, 94, 239, 0.3);
  outline-offset: 2px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  gap: 9px;
}

.consent-row input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.consent-row a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.custom-intro {
  align-items: center;
  padding-top: 76px;
}

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

.custom-guide {
  padding: 26px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.custom-guide > span {
  color: #8fb3ff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.custom-guide ol {
  display: grid;
  margin-top: 22px;
  list-style: none;
  gap: 18px;
}

.custom-guide li {
  display: grid;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  gap: 2px;
}

.custom-guide li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.custom-guide b {
  font-size: 14px;
}

.custom-guide small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.success-message {
  display: flex;
  align-items: center;
  width: min(var(--content), calc(100% - 48px));
  margin: 32px auto 0;
  padding: 24px 28px;
  color: #075d49;
  background: var(--mint-soft);
  border: 1px solid #abeedb;
  border-radius: var(--radius);
  gap: 18px;
}

.success-message > span {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: #12a782;
  border-radius: 50%;
  font-weight: 800;
}

.success-message h2 {
  font-size: 19px;
}

.success-message p {
  margin-top: 3px;
  font-size: 13px;
}

.custom-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1fr);
  align-items: start;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 112px;
  gap: 72px;
}

.custom-form-copy {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.custom-form-copy h2 {
  font-size: 42px;
}

.custom-form-copy > p {
  margin-top: 18px;
}

.privacy-note {
  display: grid;
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 5px;
}

.privacy-note b {
  font-size: 13px;
}

.privacy-note span,
.form-footnote {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.check-options {
  grid-template-columns: 1fr 1fr;
}

.confirmation-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 112px;
  text-align: center;
}

.confirmation-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  place-items: center;
  color: #087b61;
  background: var(--mint-soft);
  border: 1px solid #a8ead8;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
}

.confirmation-page h1 {
  font-size: 50px;
}

.confirmation-lead {
  max-width: 680px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 17px;
}

.confirmation-card {
  display: grid;
  width: 100%;
  margin-top: 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.confirmation-card > div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  gap: 18px;
}

.confirmation-card > div:last-child {
  border-bottom: 0;
}

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

.confirmation-card b {
  font-size: 13px;
}

.status-text {
  color: var(--blue);
}

.confirmation-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.confirmation-steps div {
  display: grid;
  padding: 24px;
  border-right: 1px solid var(--line);
  gap: 4px;
}

.confirmation-steps div:last-child {
  border-right: 0;
}

.confirmation-steps span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.confirmation-steps b {
  margin-top: 8px;
  font-size: 14px;
}

.confirmation-steps small {
  color: var(--muted);
  font-size: 11px;
}

.confirmation-actions {
  display: flex;
  margin-top: 34px;
  gap: 10px;
}

.hero-actions {
  display: flex;
}

.contacts-card,
.seo-aside {
  padding: 26px;
  background: var(--paper-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contacts-card > span,
.seo-aside > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contacts-card > b,
.seo-aside > b {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.35;
}

.contacts-card > p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.contact-steps .about-ledger {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-steps .about-ledger article {
  min-height: 230px;
}

.legal-page {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 112px;
}

.legal-card h1 {
  font-size: 50px;
  line-height: 1.08;
}

.legal-card h2 {
  margin-top: 40px;
  font-size: 25px;
}

.legal-card p {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.legal-card a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 30px;
  border-top: 1px solid var(--line-strong);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: start;
  gap: 54px;
}

.footer-main > p {
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 32px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links b {
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--muted);
  font-size: 11px;
  gap: 20px;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-visual-in {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes quiet-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

@keyframes quiet-float-reverse {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-4px, 6px, 0); }
}

@media (max-width: 1180px) {
  .header-inner,
  .hero,
  .proof-strip,
  .section,
  .page-intro,
  .custom-intro,
  .catalog-layout,
  .project-page,
  .custom-form-layout,
  .site-footer,
  .success-message {
    width: min(100% - 40px, var(--content));
  }

  .primary-nav > a:not(.nav-mobile-cta) {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: minmax(0, .94fr) minmax(470px, 1.06fr);
    gap: 38px;
  }

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

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

  .section-heading h2 {
    font-size: 44px;
  }

  .contact-steps .about-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-steps .about-ledger article:nth-child(2) {
    border-right: 0;
  }

  .contact-steps .about-ledger article:nth-child(3) {
    padding-left: 0;
  }

  .project-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .primary-nav {
    position: fixed;
    z-index: 20;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: grid;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a:not(.nav-mobile-cta) {
    padding: 12px;
    font-size: 15px;
  }

  .nav-mobile-cta {
    display: inline-flex;
    margin-top: 6px;
  }

  .mobile-menu-toggle {
    display: grid;
    grid-column: 3;
    grid-row: 1;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    cursor: pointer;
    gap: 5px;
  }

  .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 56px;
    gap: 42px;
  }

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

  .hero-visual {
    max-width: 780px;
  }

  .hero-image-shell {
    aspect-ratio: 1.35;
  }

  .hero-float-top {
    left: 20px;
  }

  .hero-float-bottom {
    right: 20px;
  }

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

  .proof-strip > div:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

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

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

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .path-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 300px;
  }

  .reviews-grid {
    gap: 10px;
  }

  .review-card {
    min-height: 340px;
  }

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

  .process-line li:nth-child(3n),
  .process-line li:nth-child(3n + 2),
  .process-line li:nth-child(3n + 3) {
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-line li:nth-child(even) {
    padding-left: 28px;
    border-right: 0;
  }

  .request-banner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 44px;
    gap: 32px;
  }

  .request-banner-actions {
    width: 100%;
    min-width: 0;
    max-width: 360px;
  }

  .page-intro,
  .custom-intro {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }

  .page-intro h1,
  .custom-intro h1 {
    font-size: 48px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .filter-heading,
  .filter-help,
  .catalog-filters > .button {
    grid-column: 1 / -1;
  }

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

  .project-order-card {
    position: static;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
  }

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

  .custom-form-copy {
    position: static;
  }

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

  .footer-action {
    grid-column: 1 / -1;
  }
}

/* Kursovik catalog and order experience, v56 */
.catalog-intro {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: stretch;
  margin-top: 30px;
  padding: 58px 60px 54px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(7, 26, 51, .12), transparent 48%),
    var(--electric);
  border: 0;
  border-radius: 8px;
  gap: 54px;
}

.catalog-intro::before {
  top: -32px;
  right: 24%;
  width: 1px;
  height: 190px;
  background: rgba(255, 255, 255, .24);
  transform: rotate(24deg);
}

.catalog-intro::after {
  position: absolute;
  right: 225px;
  bottom: -95px;
  color: rgba(255, 255, 255, .08);
  content: "01";
  font-size: 310px;
  font-weight: 900;
  line-height: .75;
  pointer-events: none;
}

.catalog-intro-copy,
.catalog-count {
  position: relative;
  z-index: 2;
}

.catalog-intro .eyebrow {
  color: var(--acid);
}

.catalog-intro h1 {
  max-width: 860px;
  margin-top: 22px;
  color: #fff;
  font-size: 68px;
  font-weight: 850;
  line-height: .96;
}

.catalog-intro .catalog-intro-copy > p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.55;
}

.catalog-count {
  display: flex;
  min-height: 196px;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding: 24px;
  color: var(--ink);
  background: var(--acid);
}

.catalog-count small {
  margin-bottom: auto;
  color: rgba(7, 26, 51, .58);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.catalog-count b {
  color: var(--ink);
  font-family: inherit;
  font-size: 78px;
  font-weight: 900;
  line-height: .72;
}

.catalog-count span {
  margin-top: 16px;
  color: rgba(7, 26, 51, .7);
  font-size: 12px;
  font-weight: 750;
}

.catalog-layout {
  grid-template-columns: 276px minmax(0, 1fr);
  padding-top: 40px;
  gap: 28px;
}

.catalog-filter-panel {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  min-width: 0;
}

.catalog-filter-panel > summary {
  display: none;
}

.catalog-filter-panel:not([open]) > .catalog-filters {
  display: grid;
}

.catalog-filters {
  position: static;
  padding: 26px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-top: 7px solid var(--acid);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 26, 51, .16);
  gap: 17px;
}

.catalog-filters .filter-heading span,
.catalog-filters .field > span,
.catalog-filters .filter-help p {
  color: rgba(255, 255, 255, .6);
}

.catalog-filters .filter-heading b,
.catalog-filters .filter-help b {
  color: #fff;
}

.catalog-filters .filter-heading a,
.catalog-filters .filter-help a {
  color: var(--acid);
}

.catalog-filters .field input,
.catalog-filters .field select {
  min-height: 54px;
  color: var(--ink);
  background: #fff;
  border-color: transparent;
  border-radius: 5px;
}

.catalog-filters .button {
  min-height: 56px;
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  border-radius: 999px;
}

.catalog-filters .button:hover,
.catalog-filters .button:focus-visible {
  color: #fff;
  background: var(--electric);
  border-color: var(--electric);
}

.catalog-filters .filter-help {
  border-top-color: rgba(255, 255, 255, .16);
}

.catalog-toolbar {
  min-height: 64px;
  padding: 0 4px 18px;
  border-bottom-color: rgba(7, 26, 51, .16);
}

.catalog-toolbar b {
  font-size: 20px;
}

.catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
  gap: 22px;
}

.material-card {
  display: flex;
  min-height: 650px;
  padding: 0;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 26, 51, .13);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(28, 56, 96, .09);
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1), box-shadow 320ms ease, border-color 320ms ease;
}

.material-card:hover {
  border-color: rgba(23, 87, 232, .36);
  box-shadow: 0 30px 70px rgba(22, 58, 112, .16);
  transform: translateY(-5px);
}

.material-card-media {
  aspect-ratio: 1.34;
  margin: 0;
  flex: 0 0 auto;
  background: #eef4ff;
}

.material-card-media::after {
  background:
    linear-gradient(180deg, transparent 54%, rgba(7, 26, 51, .42)),
    linear-gradient(90deg, rgba(23, 87, 232, .08), transparent 42%);
}

.material-card-media img {
  object-position: center;
}

.material-card-2 .material-card-media img {
  object-position: 58% center;
}

.material-card-media .material-card-index {
  top: 16px;
  right: auto;
  bottom: auto;
  left: 16px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
}

.material-card-media > small {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  gap: 9px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.material-card-media > small i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-style: normal;
}

.material-card:hover .material-card-media > small,
.material-card-media:focus-visible > small {
  opacity: 1;
  transform: translateY(0);
}

.material-card-body {
  display: flex;
  height: 100%;
  padding: 24px 24px 22px;
  flex-direction: column;
}

.material-card .material-card-top {
  margin: 0;
}

.material-card .material-type {
  color: var(--electric);
  background: #edf3ff;
}

.material-card-copy {
  margin-top: 28px;
}

.material-card-copy > small {
  display: block;
  color: var(--electric);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.material-card h2 {
  margin-top: 9px;
  font-size: 27px;
  font-weight: 850;
  line-height: 1.08;
}

.material-card p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.material-card .material-options {
  margin-top: 22px;
}

.material-card-bottom {
  min-height: 62px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.material-card-bottom b {
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
}

.material-card-bottom a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  color: #fff;
  background: var(--electric);
  border-radius: 999px;
  gap: 9px;
}

.material-card:nth-child(3):last-child {
  grid-column: 1 / -1;
  display: grid;
  min-height: 460px;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr);
}

.material-card:nth-child(3):last-child .material-card-media {
  height: 100%;
  aspect-ratio: auto;
}

.material-card:nth-child(3):last-child .material-card-body {
  padding: 34px;
}

.material-card:nth-child(3):last-child h2 {
  font-size: 35px;
}

.project-page {
  padding-top: 28px;
}

.project-breadcrumbs {
  min-height: 48px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.project-layout {
  grid-template-columns: minmax(0, 1fr) 410px;
  margin-top: 34px;
  gap: 46px;
}

.project-heading-block {
  position: relative;
  padding: 36px 38px 40px;
  background: var(--electric);
  border-radius: 8px;
}

.project-heading-block::after {
  position: absolute;
  top: 0;
  right: 34px;
  width: 94px;
  height: 7px;
  background: var(--acid);
  content: "";
}

.project-heading-block .material-type {
  color: var(--ink);
  background: var(--acid);
}

.project-heading-block .availability {
  color: rgba(255, 255, 255, .82);
}

.project-heading-block h1 {
  max-width: 850px;
  margin-top: 28px;
  color: #fff;
  font-size: 58px;
  font-weight: 850;
  line-height: .98;
}

.project-heading-block .project-lead {
  max-width: 710px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
}

.project-specs {
  margin-top: 18px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-preview {
  height: 650px;
  margin-top: 18px;
  border-radius: 8px;
  box-shadow: 0 30px 78px rgba(13, 53, 127, .2);
}

.project-preview::before {
  background:
    linear-gradient(180deg, transparent 38%, rgba(7, 26, 51, .82)),
    linear-gradient(90deg, transparent 62%, rgba(23, 87, 232, .18));
}

.project-preview > img {
  object-position: center;
  transition: transform 800ms cubic-bezier(.2, .7, .2, 1);
}

.project-preview:hover > img {
  transform: scale(1.025);
}

.project-preview-creatine-human-impact > img {
  object-position: 58% center;
}

.project-preview-coordinate {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 22px;
  display: grid;
  min-width: 132px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--acid);
  gap: 5px;
}

.project-preview-coordinate span {
  font-size: 9px;
  font-weight: 850;
}

.project-preview-coordinate b {
  font-size: 28px;
  line-height: 1;
}

.project-preview-caption {
  right: 38px;
  bottom: 38px;
  left: 38px;
}

.project-preview-caption > span {
  color: var(--acid);
}

.project-preview-caption > b {
  max-width: 700px;
  font-family: inherit;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.14;
}

.project-details-grid {
  margin-top: 22px;
  gap: 12px;
}

.project-details-grid > section {
  min-height: 320px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-details-grid > section:nth-child(2) {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.project-details-grid > section:nth-child(2) .eyebrow {
  color: var(--acid);
}

.project-details-grid > section:nth-child(2) p {
  color: rgba(255, 255, 255, .68);
}

.project-order-card {
  top: calc(var(--header-height) + 22px);
  overflow: hidden;
  border: 1px solid rgba(7, 26, 51, .14);
  border-top: 7px solid var(--acid);
  border-radius: 8px;
}

.order-price {
  padding: 32px;
  background: var(--ink);
}

.order-price b {
  color: var(--acid);
  font-size: 48px;
}

.project-order-card .compact-request-form {
  padding: 26px;
}

.project-order-card .field input,
.project-order-card .field textarea {
  min-height: 54px;
}

.project-order-card .button {
  min-height: 58px;
  border-radius: 999px;
}

.custom-intro {
  margin-top: 30px;
  padding: 54px 58px;
  color: #fff;
  background: var(--electric);
  border: 0;
  border-radius: 8px;
}

.custom-intro::before {
  top: 0;
  right: 42px;
  width: 100px;
  height: 7px;
  background: var(--acid);
}

.custom-intro h1 {
  color: #fff;
  font-size: 61px;
}

.custom-intro > div:first-child > p {
  color: rgba(255, 255, 255, .72);
}

.custom-intro .eyebrow {
  color: var(--acid);
}

.custom-intro .button-primary {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.custom-intro .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.custom-guide {
  min-height: 410px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
}

.custom-guide ol {
  margin-top: 48px;
}

.custom-form-layout {
  align-items: start;
}

.custom-form-copy {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.form-chapter {
  border-radius: 8px;
}

.custom-form-layout > .request-form > .button {
  min-height: 60px;
  border-radius: 999px;
}

@media (max-width: 1120px) {
  .catalog-intro h1 {
    font-size: 58px;
  }

  .catalog-layout {
    grid-template-columns: 250px minmax(0, 1fr);
  }

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

  .material-card:nth-child(3):last-child {
    grid-column: auto;
    display: flex;
    min-height: 650px;
  }

  .material-card:nth-child(3):last-child .material-card-media {
    height: auto;
    aspect-ratio: 1.34;
  }

  .material-card:nth-child(3):last-child .material-card-body {
    padding: 24px;
  }

  .material-card:nth-child(3):last-child h2 {
    font-size: 27px;
  }

  .project-layout {
    grid-template-columns: minmax(0, 1fr) 370px;
  }

  .project-heading-block h1 {
    font-size: 50px;
  }
}

@media (max-width: 900px) {
  .catalog-intro {
    grid-template-columns: minmax(0, 1fr) 170px;
    padding: 46px;
  }

  .catalog-intro h1 {
    font-size: 50px;
  }

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

  .catalog-filter-panel {
    position: static;
  }

  .catalog-filter-panel > summary {
    display: grid;
    min-height: 78px;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 16px 20px;
    color: #fff;
    background: var(--ink);
    border-left: 7px solid var(--acid);
    border-radius: 8px;
    cursor: pointer;
    list-style: none;
  }

  .catalog-filter-panel > summary::-webkit-details-marker {
    display: none;
  }

  .catalog-filter-panel > summary span,
  .catalog-filter-panel > summary small {
    grid-column: 1;
  }

  .catalog-filter-panel > summary span {
    font-weight: 850;
  }

  .catalog-filter-panel > summary small {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
  }

  .catalog-filter-panel > summary i {
    grid-row: 1 / span 2;
    grid-column: 2;
    width: 22px;
    height: 22px;
    border-right: 2px solid var(--acid);
    border-bottom: 2px solid var(--acid);
    transform: rotate(45deg) translateY(-4px);
    transition: transform 180ms ease;
  }

  .catalog-filter-panel[open] > summary i {
    transform: rotate(225deg) translate(-4px, -4px);
  }

  .catalog-filter-panel:not([open]) > .catalog-filters {
    display: none;
  }

  .catalog-filters {
    margin-top: 4px;
  }

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

  .project-order-card {
    position: static;
  }

  .custom-form-copy {
    position: static;
  }
}

@media (max-width: 768px) {
  .catalog-intro,
  .custom-intro {
    width: calc(100% - 28px);
    margin-top: 14px;
  }

  .catalog-intro {
    grid-template-columns: 1fr;
    padding: 34px 24px 24px;
    gap: 28px;
  }

  .catalog-intro::after {
    right: -22px;
    bottom: 60px;
    font-size: 210px;
  }

  .catalog-intro h1 {
    max-width: 520px;
    font-size: 43px;
    line-height: .98;
  }

  .catalog-intro .catalog-intro-copy > p {
    margin-top: 19px;
    font-size: 15px;
  }

  .catalog-count {
    min-height: 110px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    padding: 18px 20px;
    gap: 5px 15px;
  }

  .catalog-count small {
    grid-column: 1 / -1;
    margin: 0;
  }

  .catalog-count b {
    font-size: 58px;
  }

  .catalog-count span {
    margin: 0 0 2px;
  }

  .catalog-layout {
    width: calc(100% - 28px);
    padding-top: 20px;
    padding-bottom: 78px;
    gap: 18px;
  }

  .catalog-toolbar {
    min-height: 56px;
  }

  .catalog-grid {
    margin-top: 14px;
    gap: 14px;
  }

  .material-card,
  .material-card:nth-child(3):last-child {
    min-height: 0;
    border-radius: 8px;
  }

  .material-card:hover {
    transform: none;
  }

  .material-card-media,
  .material-card:nth-child(3):last-child .material-card-media {
    aspect-ratio: 1.45;
  }

  .material-card-media > small {
    display: none;
  }

  .material-card-body,
  .material-card:nth-child(3):last-child .material-card-body {
    padding: 20px;
  }

  .material-card-copy {
    margin-top: 22px;
  }

  .material-card h2,
  .material-card:nth-child(3):last-child h2 {
    font-size: 25px;
  }

  .material-card p {
    font-size: 13px;
  }

  .material-card-bottom {
    margin-top: 22px;
  }

  .project-page {
    width: calc(100% - 28px);
    padding-top: 14px;
  }

  .project-layout {
    margin-top: 18px;
    gap: 18px;
  }

  .project-heading-block {
    padding: 28px 22px 30px;
  }

  .project-heading-block h1 {
    font-size: 42px;
    line-height: 1;
  }

  .project-heading-block .project-lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .project-specs {
    grid-template-columns: 1fr;
    padding: 4px 20px;
  }

  .project-specs div,
  .project-specs div + div {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-specs div:last-child {
    border-bottom: 0;
  }

  .project-preview {
    height: 470px;
  }

  .project-preview-coordinate {
    top: 14px;
    right: 14px;
    min-width: 112px;
    padding: 10px 12px;
  }

  .project-preview-caption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .project-preview-caption > b {
    font-size: 24px;
  }

  .project-details-grid {
    grid-template-columns: 1fr;
  }

  .project-details-grid > section {
    min-height: 0;
  }

  .custom-intro {
    padding: 34px 24px 24px;
  }

  .custom-intro h1 {
    font-size: 43px;
  }

  .custom-guide {
    min-height: 330px;
  }
}

@media (max-width: 430px) {
  .catalog-intro h1,
  .custom-intro h1,
  .project-heading-block h1 {
    font-size: 37px;
  }

  .catalog-toolbar > div:first-child span {
    display: none;
  }

  .material-card-bottom b {
    font-size: 25px;
  }

  .material-card-bottom a {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .project-preview {
    height: 410px;
  }

  .project-preview-caption > b {
    font-size: 21px;
  }

  .custom-intro-actions {
    grid-template-columns: 1fr;
  }
}

/* v117: payment handoff and result states */
.payment-alert {
  max-width: 680px;
  margin: 22px 0 0;
  padding: 14px 16px;
  color: #7a2e16;
  background: #fff3ec;
  border: 1px solid #f1c7b7;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.5;
}

.checkout-payment-action {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.checkout-payment-action .button {
  min-width: 250px;
  min-height: 58px;
  border: 0;
  cursor: pointer;
}

.checkout-payment-action small {
  max-width: 230px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkout-payment-state {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding: 13px 16px;
  background: #eef4ff;
  border: 1px solid #c9d9f3;
  border-radius: 8px;
}

.checkout-payment-state > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: #fff;
  background: var(--electric);
  border-radius: 50%;
  font-weight: 900;
}

.checkout-payment-state div {
  display: grid;
  gap: 2px;
}

.checkout-payment-state b {
  color: var(--ink);
}

.checkout-payment-state small {
  color: var(--muted);
}

.checkout-payment-state.is-paid {
  background: #f3ffe0;
  border-color: #b8ea69;
}

.checkout-payment-state.is-paid > span {
  color: var(--ink);
  background: var(--acid);
}

.confirmation-secondary-actions {
  margin-top: 22px;
}

.payment-result-page {
  min-height: calc(100vh - 190px);
  display: grid;
  place-items: center;
  padding: 72px 24px 96px;
  background:
    radial-gradient(circle at 72% 18%, rgba(30, 91, 232, .13), transparent 32%),
    #f7f9fd;
}

.payment-result-card {
  width: min(760px, 100%);
  padding: 58px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #cbd9ed;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(7, 26, 51, .12);
}

.payment-result-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
}

.payment-result-failed .payment-result-icon {
  color: #fff;
  background: #ff624f;
}

.payment-result-pending .payment-result-icon {
  color: #fff;
  background: var(--electric);
}

.payment-result-card h1 {
  max-width: 660px;
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
}

.payment-result-card > p {
  max-width: 610px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.payment-result-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.payment-result-summary span {
  color: var(--ink);
  font-weight: 750;
}

.payment-result-summary b {
  flex: 0 0 auto;
  color: var(--electric);
  font-size: 28px;
}

@media (max-width: 700px) {
  .checkout-payment-action {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .checkout-payment-action .button {
    width: 100%;
    min-width: 0;
  }

  .checkout-payment-action small {
    max-width: none;
  }

  .payment-result-page {
    padding: 34px 14px 64px;
  }

  .payment-result-card {
    padding: 34px 22px;
    border-radius: 10px;
  }

  .payment-result-card h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .payment-result-card > p {
    font-size: 16px;
  }

  .payment-result-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .material-card,
  .material-card-media img,
  .material-card-media > small,
  .project-preview > img {
    transition: none;
  }
}

/* v90: two-axis catalog navigator */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.catalog-explorer {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  padding: 24px;
  color: var(--ink);
  background: rgba(248, 250, 255, .97);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(4, 27, 79, .24);
}

.catalog-explorer-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 2px 2px 20px;
}

.catalog-explorer-head > div > span {
  display: block;
  margin-bottom: 7px;
  color: var(--electric);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-explorer-head h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.05;
}

.catalog-explorer-head > a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 5px;
  padding: 0 2px;
  color: var(--ink-soft);
  font-size: 12px;
  white-space: nowrap;
}

.catalog-explorer-head > a b {
  color: var(--electric);
}

.catalog-explorer-head > a span {
  margin-left: 3px;
  color: var(--electric);
}

.catalog-type-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.catalog-type-tabs a {
  position: relative;
  display: flex;
  min-height: 76px;
  justify-content: center;
  padding: 15px 42px 15px 17px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dce4f1;
  border-radius: 14px;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.catalog-type-tabs a::after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--electric);
  background: #edf3ff;
  border-radius: 50%;
  content: "\2197";
  font-size: 11px;
  transform: translateY(-50%);
}

.catalog-type-tabs a small {
  margin-bottom: 5px;
  color: #77869d;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-type-tabs a b {
  font-size: 15px;
  line-height: 1.12;
}

.catalog-type-tabs a.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 14px 28px rgba(4, 27, 58, .18);
}

.catalog-type-tabs a.is-active small {
  color: var(--acid);
}

.catalog-type-tabs a.is-active::after {
  color: var(--ink);
  background: var(--acid);
}

.catalog-type-tabs a:hover {
  border-color: rgba(31, 91, 232, .45);
  box-shadow: 0 12px 26px rgba(7, 42, 93, .1);
  transform: translateY(-2px);
}

.catalog-subjects {
  display: grid;
  align-items: start;
  margin-top: 18px;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
}

.catalog-subjects-label {
  padding-top: 10px;
  color: #6b7c95;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-subject-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalog-subject-list a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #273b58;
  background: #fff;
  border: 1px solid #dfe6f1;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.catalog-subject-list a:hover {
  color: var(--electric);
  background: #f4f7ff;
  border-color: rgba(31, 91, 232, .42);
}

.catalog-finder {
  display: grid;
  min-height: 58px;
  margin-top: 18px;
  padding: 6px;
  background: #fff;
  border: 1px solid #d8e1ef;
  border-radius: 15px;
  grid-template-columns: minmax(260px, 1fr) 190px 126px;
  gap: 5px;
}

.catalog-finder-search {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 0 17px;
}

.catalog-finder-search i {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #8b99ad;
  border-radius: 50%;
  flex: 0 0 auto;
}

.catalog-finder-search i::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 2px;
  background: #8b99ad;
  border-radius: 2px;
  content: "";
  transform: rotate(45deg);
}

.catalog-finder input,
.catalog-finder select {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.catalog-finder input::placeholder {
  color: #8a98ac;
  font-weight: 600;
}

.catalog-finder-sort {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-left: 1px solid #e2e8f1;
}

.catalog-finder button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 17px;
  color: #fff;
  background: var(--electric);
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  transition: background .2s ease, transform .2s ease;
}

.catalog-finder button b {
  font-size: 15px;
}

.catalog-finder button:hover {
  background: #0c48cf;
  transform: translateY(-1px);
}

.catalog-type-tabs a:focus-visible,
.catalog-subject-list a:focus-visible,
.catalog-explorer-head > a:focus-visible,
.catalog-finder input:focus-visible,
.catalog-finder select:focus-visible,
.catalog-finder button:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.material-grid-home {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .catalog-explorer-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .catalog-finder {
    grid-template-columns: minmax(0, 1fr) 175px 112px;
  }
}

@media (max-width: 620px) {
  .catalog-explorer {
    margin-top: 30px;
    padding: 15px;
    border-radius: 16px;
  }

  .catalog-explorer-head {
    padding: 1px 1px 15px;
  }

  .catalog-explorer-head h3 {
    max-width: 280px;
    font-size: 21px;
  }

  .catalog-explorer-head > a {
    min-height: 34px;
    align-items: flex-start;
    white-space: normal;
  }

  .catalog-type-tabs {
    gap: 6px;
  }

  .catalog-type-tabs a {
    min-height: 72px;
    padding: 12px 34px 12px 12px;
    border-radius: 12px;
  }

  .catalog-type-tabs a::after {
    right: 10px;
    width: 24px;
    height: 24px;
  }

  .catalog-type-tabs a b {
    font-size: 13px;
  }

  .catalog-subjects {
    display: block;
    margin-top: 15px;
  }

  .catalog-subjects-label {
    display: block;
    padding: 0 0 8px;
  }

  .catalog-subject-list {
    margin-right: -15px;
    padding-right: 15px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .catalog-subject-list::-webkit-scrollbar {
    display: none;
  }

  .catalog-subject-list a {
    flex: 0 0 auto;
  }

  .catalog-finder {
    min-height: 0;
    padding: 6px;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 5px;
  }

  .catalog-finder-search {
    min-height: 48px;
    padding: 0 12px;
  }

  .catalog-finder-search input {
    font-size: 12px;
  }

  .catalog-finder-sort {
    min-height: 44px;
    padding: 0 12px;
    background: #f2f5fa;
    border: 0;
    border-radius: 10px;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .catalog-finder button {
    width: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
  }

  .catalog-finder button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .material-grid-home {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-type-tabs a,
  .catalog-finder button {
    transition: none;
  }
}

/* v91: catalog type modes */
.catalog-mode-tabs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-mode-tabs a {
  min-height: 82px;
}

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

.catalog-mode-panel.is-active {
  animation: catalog-mode-in .28s ease both;
}

.catalog-custom-route {
  display: grid;
  min-height: 142px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 26px;
  background:
    linear-gradient(115deg, rgba(235, 241, 252, .96), rgba(255, 255, 255, .98)),
    #fff;
  border: 1px solid #d9e2ef;
  border-radius: 15px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
}

.catalog-custom-route-copy > span {
  display: block;
  margin-bottom: 7px;
  color: var(--electric);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-custom-route-copy h4 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.08;
}

.catalog-custom-route-copy p {
  max-width: 760px;
  margin: 9px 0 0;
  color: #61728b;
  font-size: 12px;
  line-height: 1.5;
}

.catalog-custom-route-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-custom-route-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d8e1ee;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.catalog-custom-route-actions a.is-primary {
  gap: 14px;
  color: #fff;
  background: var(--electric);
  border-color: var(--electric);
}

.catalog-custom-route-actions a:hover {
  border-color: rgba(31, 91, 232, .5);
}

.catalog-custom-route-actions a.is-primary:hover {
  background: #0c48cf;
}

.catalog-custom-route-actions a:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

@keyframes catalog-mode-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .catalog-custom-route {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-custom-route-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .catalog-mode-tabs {
    display: grid;
    margin-right: 0;
    padding-right: 0;
    overflow: visible;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-mode-tabs a {
    min-width: 0;
    min-height: 66px;
    padding: 10px 28px 10px 10px;
    flex: none;
  }

  .catalog-mode-tabs a small {
    display: none;
  }

  .catalog-mode-tabs a b {
    font-size: 11px;
    line-height: 1.1;
  }

  .catalog-mode-tabs a::after {
    right: 8px;
    width: 20px;
    height: 20px;
    font-size: 9px;
  }

  .catalog-custom-route {
    min-height: 0;
    padding: 18px;
    border-radius: 12px;
  }

  .catalog-custom-route-copy h4 {
    font-size: 20px;
  }

  .catalog-custom-route-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-custom-route-actions a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-mode-panel.is-active {
    animation: none;
  }
}

/* v92: filtered material suggestions and consistent cover badge */
.home-material-card.is-catalog-hidden {
  display: none !important;
}

.material-grid-home.is-count-1 {
  max-width: 307px;
  grid-template-columns: minmax(0, 307px);
}

.material-grid-home.is-count-2 {
  max-width: 632px;
  grid-template-columns: repeat(2, minmax(0, 307px));
}

.material-grid-home.is-count-3 {
  max-width: 957px;
  grid-template-columns: repeat(3, minmax(0, 307px));
}

.material-grid-home.is-count-1,
.material-grid-home.is-count-2,
.material-grid-home.is-count-3 {
  width: 100%;
  justify-content: start;
}

.home-material-media > .catalog-cover-brand,
.material-card-media > .catalog-cover-brand {
  display: inline-flex;
  width: 116px;
  min-width: 116px;
  height: 28px;
  align-items: center;
  padding: 0 11px 0 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(23, 87, 232, .24);
  border-radius: 999px;
  box-shadow: 0 5px 15px rgba(7, 26, 51, .08);
  gap: 7px;
}

.home-material-media > .catalog-cover-brand > i,
.material-card-media > .catalog-cover-brand > i {
  width: 20px;
  min-width: 20px;
  height: 20px;
  color: var(--electric);
  background: #f4f7ff;
  border: 0;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .material-grid-home.is-count-1 {
    max-width: 361px;
    grid-template-columns: minmax(0, 361px);
  }

  .material-grid-home.is-count-2,
  .material-grid-home.is-count-3 {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .material-grid-home.is-count-1,
  .material-grid-home.is-count-2,
  .material-grid-home.is-count-3,
  .material-grid-home.is-count-4-plus {
    max-width: none;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner,
  .hero,
  .proof-strip,
  .section,
  .page-intro,
  .custom-intro,
  .catalog-layout,
  .project-page,
  .custom-form-layout,
  .site-footer,
  .success-message,
  .confirmation-page,
  .legal-page {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: var(--header-height);
  }

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

  .brand-copy strong {
    font-size: 18px;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 30px;
    gap: 30px;
  }

  .hero h1 {
    margin-top: 17px;
    font-size: 44px;
    line-height: 1.04;
  }

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

  .hero-actions {
    width: 100%;
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1 1 calc(50% - 5px);
  }

  .hero-routes {
    margin-top: 28px;
  }

  .hero-routes a {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero-routes small {
    display: none;
  }

  .hero-image-shell {
    aspect-ratio: 1.24;
  }

  .hero-year {
    top: 14px;
  }

  .hero-float-top {
    top: auto;
    bottom: 18px;
    left: 16px;
  }

  .hero-float-bottom {
    display: none;
  }

  .section-heading h2,
  .custom-form-copy h2 {
    font-size: 38px;
  }

  .about-ledger {
    grid-template-columns: 1fr;
  }

  .about-ledger article,
  .about-ledger article + article {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-ledger article:last-child {
    border-bottom: 0;
  }

  .about-ledger h3 {
    margin-top: 24px;
  }

  .material-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

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

  .services-list article,
  .services-list article:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

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

  .process-line li,
  .process-line li:nth-child(even),
  .process-line li:nth-child(3n),
  .process-line li:nth-child(3n + 2),
  .process-line li:nth-child(3n + 3) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
  }

  .request-banner {
    width: calc(100% - 32px);
    margin-bottom: 88px;
    padding: 34px 26px;
  }

  .request-banner h2 {
    font-size: 36px;
  }

  .page-intro,
  .custom-intro {
    grid-template-columns: 1fr;
    padding-top: 58px;
    gap: 32px;
  }

  .catalog-count {
    justify-items: start;
  }

  .catalog-count b {
    font-size: 56px;
  }

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

  .filter-heading,
  .filter-help,
  .catalog-filters > .button {
    grid-column: auto;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .active-filter-list {
    justify-content: flex-start;
  }

  .project-layout {
    margin-top: 28px;
  }

  .project-content > h1 {
    font-size: 42px;
  }

  .project-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-mobile-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-top: 24px;
    padding: 18px 20px;
    color: #fff;
    background: var(--ink);
    border-radius: var(--radius);
    gap: 4px 16px;
  }

  .project-mobile-cta span {
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
  }

  .project-mobile-cta b {
    grid-row: 2;
    font-size: 26px;
  }

  .project-mobile-cta em {
    grid-column: 2;
    grid-row: 1 / 3;
    color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
  }

  .project-specs {
    grid-template-columns: 1fr;
  }

  .project-specs div,
  .project-specs div + div {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-specs div:last-child {
    border-bottom: 0;
  }

  .project-preview {
    height: 420px;
  }

  .preview-sheet {
    width: 320px;
    height: 390px;
  }

  .preview-sheet-back {
    left: calc(50% - 205px);
  }

  .preview-sheet-mid {
    left: calc(50% - 140px);
  }

  .preview-sheet-front {
    left: calc(50% - 160px);
    padding: 44px 36px 34px;
  }

  .project-details-grid {
    grid-template-columns: 1fr;
  }

  .project-details-grid section,
  .project-details-grid section + section {
    min-height: 0;
    padding: 30px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .confirmation-page h1 {
    font-size: 40px;
  }

  .confirmation-card > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .confirmation-steps {
    grid-template-columns: 1fr;
  }

  .confirmation-steps div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .confirmation-steps div:last-child {
    border-bottom: 0;
  }

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

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

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

  .contact-steps .about-ledger {
    grid-template-columns: 1fr;
  }

  .contact-steps .about-ledger article:nth-child(3) {
    padding-left: 0;
  }

  .legal-card h1 {
    font-size: 40px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 38px;
  }

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

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

  .hero-routes {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .hero-routes a,
  .hero-routes a + a {
    grid-template-columns: 30px 1fr;
    align-items: center;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 7px;
  }

  .hero-routes a:hover,
  .hero-routes a:focus-visible,
  .hero-routes a + a:hover,
  .hero-routes a + a:focus-visible {
    padding-left: 6px;
  }

  .hero-routes b {
    margin-top: 0;
  }

  .hero-image-shell {
    aspect-ratio: .98;
  }

  .hero-image-shell img {
    object-position: 67% center;
  }

  .hero-year {
    right: 10px;
    padding: 10px 12px;
  }

  .hero-year b {
    font-size: 18px;
  }

  .hero-float {
    min-width: 0;
    max-width: calc(100% - 32px);
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > div,
  .proof-strip > div + div,
  .proof-strip > div:nth-child(3) {
    padding: 16px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading h2,
  .custom-form-copy h2 {
    font-size: 34px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .path-card {
    min-height: 330px;
    padding: 24px;
  }

  .path-card h3 {
    font-size: 24px;
  }

  .material-card {
    min-height: 360px;
    padding: 20px;
  }

  .review-card {
    min-height: 390px;
    padding: 24px;
  }

  .faq-list summary {
    padding-right: 42px;
    font-size: 17px;
  }

  .request-banner h2 {
    font-size: 32px;
  }

  .page-intro h1,
  .custom-intro h1,
  .project-content > h1,
  .confirmation-page h1 {
    font-size: 36px;
  }

  .page-intro > div:first-child > p,
  .custom-intro > div:first-child > p {
    font-size: 16px;
  }

  .custom-intro-actions,
  .confirmation-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .custom-intro-actions .button,
  .confirmation-actions .button {
    width: 100%;
  }

  .catalog-layout,
  .project-page,
  .custom-form-layout {
    padding-bottom: 80px;
  }

  .catalog-filters,
  .request-form,
  .compact-request-form {
    padding: 22px;
  }

  .catalog-count b {
    font-size: 48px;
  }

  .project-preview {
    height: 360px;
  }

  .preview-sheet {
    width: 270px;
    height: 340px;
  }

  .preview-sheet-back {
    left: calc(50% - 174px);
  }

  .preview-sheet-mid {
    left: calc(50% - 118px);
  }

  .preview-sheet-front {
    left: calc(50% - 135px);
    padding: 36px 28px 28px;
  }

  .preview-sheet-front b {
    font-size: 20px;
  }

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

  .check-options {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 390px) {
  .header-inner,
  .hero,
  .proof-strip,
  .section,
  .page-intro,
  .custom-intro,
  .catalog-layout,
  .project-page,
  .custom-form-layout,
  .site-footer,
  .success-message,
  .confirmation-page,
  .legal-page,
  .request-banner {
    width: calc(100% - 24px);
  }

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

  .hero-eyebrow {
    font-size: 10px;
  }

  .section-heading h2,
  .custom-form-copy h2 {
    font-size: 31px;
  }

  .request-banner {
    padding: 28px 20px;
  }

  .request-banner h2 {
    font-size: 29px;
  }

  .page-intro h1,
  .custom-intro h1,
  .project-content > h1,
  .confirmation-page h1,
  .legal-card h1 {
    font-size: 33px;
  }

  .project-order-card,
  .request-form,
  .catalog-filters,
  .material-card,
  .path-card,
  .review-card {
    border-radius: 6px;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero {
    min-height: 690px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: 50px;
  }

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

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

  .hero-routes {
    margin-top: 24px;
  }

  .hero-image-shell {
    max-height: 600px;
  }
}

/* Kursovik pop-editorial art direction, v54 */
:root {
  --acid: #c8ff3d;
  --electric: #1757e8;
  --electric-deep: #0b3eb7;
  --orange: #ff6238;
  --cloud: #f2f4f6;
}

body {
  background:
    radial-gradient(circle at 8% 9%, rgba(200, 255, 61, .14), transparent 24rem),
    linear-gradient(180deg, #f5f7f8 0, #fff 22%, #fff 76%, #eff2f5 100%);
}

.site-header {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(7, 26, 51, .08);
  backdrop-filter: blur(18px) saturate(1.2);
}

.header-inner {
  width: min(1400px, calc(100% - 40px));
  min-height: 78px;
}

.brand-mark {
  color: var(--electric);
}

.brand-route {
  stroke: var(--orange);
}

.header-cta,
.nav-mobile-cta {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  border-radius: 999px;
  box-shadow: none;
}

.header-cta:hover,
.header-cta:focus-visible,
.nav-mobile-cta:hover,
.nav-mobile-cta:focus-visible {
  color: #fff;
  background: var(--electric);
  border-color: var(--electric);
  transform: translateY(-1px);
}

.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr);
  grid-template-rows: auto 1fr;
  width: min(1420px, calc(100% - 32px));
  min-height: 700px;
  margin: 20px auto 0;
  padding: 28px 34px 34px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 73% 44%, rgba(200, 255, 61, .34), transparent 18rem),
    radial-gradient(circle at 48% 120%, rgba(255, 255, 255, .15), transparent 30rem),
    var(--electric);
  border: 0;
  border-radius: 34px;
  gap: 10px 24px;
  isolation: isolate;
}

.hero-collage::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0 / 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-collage::after {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -100px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .035), 0 0 0 140px rgba(255, 255, 255, .025);
  content: "";
}

.hero-collage-meta {
  position: relative;
  z-index: 5;
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding: 0 2px;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero-collage .hero-copy {
  position: relative;
  z-index: 6;
  align-self: center;
  width: auto;
  max-width: 760px;
  padding: 16px 0 10px;
  animation: hero-pop-copy 720ms cubic-bezier(.18, .78, .22, 1) both;
}

.hero-collage .hero-eyebrow {
  color: #fff;
}

.hero-collage .status-dot {
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(200, 255, 61, .14);
}

.hero-collage h1 {
  width: auto;
  max-width: 760px;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(48px, 4.55vw, 72px);
  font-weight: 850;
  line-height: .98;
}

.hero-collage .title-tape {
  display: table;
  width: fit-content;
  max-width: 100%;
  padding: .07em .16em .1em;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 26, 51, .12);
  transform: rotate(-1.2deg);
}

.hero-collage .title-tape-shift {
  margin-top: -1px;
  margin-left: 44px;
  transform: rotate(.8deg);
}

.hero-collage h1 em {
  display: block;
  max-width: 650px;
  margin-top: 14px;
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .65em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.02;
}

.hero-collage .hero-lead {
  max-width: 600px;
  margin-top: 23px;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}

.hero-collage .hero-actions {
  margin-top: 24px;
}

.hero-collage .button {
  min-height: 54px;
  padding-inline: 23px;
  border-radius: 999px;
}

.hero-collage .button-primary {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  box-shadow: 0 14px 34px rgba(7, 26, 51, .18);
}

.hero-collage .button-primary:hover,
.hero-collage .button-primary:focus-visible {
  color: var(--ink);
  background: #dcff80;
  border-color: #dcff80;
}

.hero-collage .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .64);
}

.hero-collage .button-secondary:hover,
.hero-collage .button-secondary:focus-visible {
  color: var(--electric);
  background: #fff;
  border-color: #fff;
}

.hero-revision-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .34);
  font-size: 13px;
  font-weight: 750;
  gap: 8px;
}

.hero-revision-link:hover,
.hero-revision-link:focus-visible {
  color: var(--acid);
  border-bottom-color: var(--acid);
}

.hero-collage-art {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 610px;
  animation: hero-pop-art 880ms 100ms cubic-bezier(.18, .78, .22, 1) both;
}

.hero-collage-image {
  position: absolute;
  z-index: 1;
  right: -55px;
  bottom: -65px;
  width: 108%;
  height: 89%;
  overflow: hidden;
  background: #e7eff9;
  border: 10px solid rgba(255, 255, 255, .9);
  border-radius: 45% 14px 24px 24px;
  box-shadow: 0 34px 80px rgba(4, 24, 74, .34);
  transform: rotate(-2.8deg);
}

.hero-collage-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(23, 87, 232, .08), transparent 42%),
    linear-gradient(180deg, transparent 55%, rgba(7, 26, 51, .16));
  content: "";
}

.hero-collage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.06);
  transition: transform 900ms cubic-bezier(.2, .7, .2, 1);
}

.hero-collage:hover .hero-collage-image img {
  transform: scale(1.09);
}

.hero-cutout {
  position: absolute;
  z-index: 3;
  width: 190px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: 0 18px 44px rgba(7, 26, 51, .28);
}

.hero-cutout-document {
  top: 84px;
  left: -48px;
  transform: rotate(-8deg);
}

.hero-cutout-slide {
  right: 5px;
  bottom: 42px;
  width: 150px;
  transform: rotate(7deg);
}

.hero-sticker {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 26, 51, .16);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hero-sticker-year {
  top: 7px;
  right: 2px;
  padding: 11px 15px;
  gap: 9px;
  transform: rotate(2deg);
}

.hero-sticker-year b {
  color: var(--electric);
  font-size: 25px;
}

.hero-sticker-year small {
  color: var(--muted);
  font-size: 9px;
}

.hero-sticker-route {
  top: 215px;
  right: -2px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  transform: rotate(4deg);
}

.hero-sticker-format {
  bottom: 24px;
  left: 8px;
  padding: 9px 12px;
  color: #fff;
  background: var(--ink);
  transform: rotate(-3deg);
}

.hero-orbit {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.hero-orbit-one {
  top: 88px;
  right: 36px;
  width: 330px;
  height: 180px;
  transform: rotate(-14deg);
}

.hero-orbit-one::after {
  top: 9px;
  left: 64px;
}

.hero-orbit-two {
  right: 140px;
  bottom: 42px;
  width: 250px;
  height: 105px;
  transform: rotate(12deg);
}

.hero-orbit-two::after {
  right: 20px;
  bottom: 14px;
  background: var(--acid);
}

.hero-spark {
  position: absolute;
  z-index: 6;
  width: 34px;
  height: 34px;
  background: #fff;
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  filter: drop-shadow(0 8px 12px rgba(7, 26, 51, .18));
}

.hero-spark-one {
  top: 140px;
  left: 150px;
}

.hero-spark-two {
  top: 270px;
  right: 32px;
  width: 20px;
  height: 20px;
  background: var(--acid);
}

.proof-strip-pop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1400px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  gap: 12px;
}

.proof-strip-pop::before {
  display: none;
}

.proof-strip-pop > div {
  min-height: 100px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(7, 26, 51, .08);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(21, 54, 99, .07);
}

.proof-strip-pop > div:nth-child(2) {
  background: var(--acid);
  border-color: var(--acid);
}

.proof-strip-pop > div:nth-child(4) {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.proof-strip-pop b {
  color: var(--electric);
  font-size: 34px;
  line-height: 1;
}

.proof-strip-pop > div:nth-child(2) b,
.proof-strip-pop > div:nth-child(4) b {
  color: inherit;
}

.proof-strip-pop span {
  max-width: 170px;
  line-height: 1.25;
}

.subject-ticker {
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.subject-ticker > div {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  gap: 20px;
}

.subject-ticker i {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
}

.about-year-stamp {
  color: var(--ink);
  background: var(--acid);
  border-radius: 30px;
}

.about-year-stamp::after {
  border-color: rgba(7, 26, 51, .18);
}

.path-section {
  background:
    linear-gradient(90deg, rgba(23, 87, 232, .04) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(rgba(23, 87, 232, .04) 1px, transparent 1px) 0 0 / 52px 52px,
    #edf1f5;
}

.path-grid-editorial .path-card,
.path-grid-editorial .path-card-primary {
  border-radius: 28px;
}

.path-grid-editorial .path-card-primary {
  box-shadow: 0 24px 70px rgba(38, 64, 100, .12);
}

.path-stack .path-card:first-child {
  background: var(--acid);
  border-color: var(--acid);
}

.path-stack .path-card:first-child .path-number {
  color: #fff;
  background: var(--electric);
}

.material-card {
  border-color: rgba(7, 26, 51, .09);
  border-radius: 26px;
  box-shadow: 0 16px 42px rgba(21, 54, 99, .08);
}

.material-card:nth-child(3n + 1) .material-card-media {
  background: #e8efff;
}

.material-card:nth-child(3n + 2) .material-card-media {
  background: #efffc5;
}

.material-card:nth-child(3n + 3) .material-card-media {
  background: #ffe7df;
}

.services-list {
  gap: 10px;
}

.services-list article,
.services-list article:nth-child(even) {
  padding: 26px 28px;
  background: #fff;
  border: 1px solid rgba(7, 26, 51, .08);
  border-radius: 22px;
}

.services-list article:nth-child(2),
.services-list article:nth-child(5) {
  background: #f0ffd0;
  border-color: #ddf5a4;
}

.services-list article:hover {
  padding-left: 38px;
  box-shadow: 0 14px 36px rgba(21, 54, 99, .08);
}

.process-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(200, 255, 61, .19), transparent 24rem),
    var(--ink);
}

.process-line li > span {
  color: var(--acid);
}

.review-card {
  border-radius: 26px;
}

.review-card-featured {
  background:
    linear-gradient(rgba(23, 87, 232, .72), rgba(11, 62, 183, .94)),
    url('/static/brand/kursovik-presentation.webp') center / cover;
}

.review-stack .review-card:first-child {
  background: var(--acid);
  border-color: var(--acid);
}

.request-banner {
  background:
    radial-gradient(circle at 16% 50%, rgba(200, 255, 61, .18), transparent 18rem),
    var(--electric);
  border-radius: 32px;
}

.request-banner .button-white {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  border-radius: 999px;
}

.request-banner .button-ghost {
  border-radius: 999px;
}

@keyframes hero-pop-copy {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes hero-pop-art {
  from { opacity: 0; transform: translate3d(24px, 28px, 0) scale(.975); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 1180px) {
  .hero-collage {
    grid-template-columns: minmax(0, 1fr) minmax(430px, .86fr);
    min-height: 660px;
  }

  .hero-collage h1 {
    font-size: 53px;
  }

  .hero-collage-art {
    min-height: 565px;
  }

  .hero-cutout-document {
    width: 150px;
  }

  .hero-sticker-route {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
    padding: 26px 28px 28px;
    gap: 18px;
  }

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

  .hero-collage-art {
    min-height: 520px;
  }

  .hero-collage-image {
    right: -30px;
    bottom: -54px;
    width: 84%;
  }

  .hero-cutout-document {
    left: 8%;
  }

  .proof-strip-pop {
    grid-template-columns: 1fr 1fr;
  }

  .subject-ticker > div {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .header-inner {
    width: calc(100% - 28px);
  }

  .hero-collage {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 20px;
    border-radius: 26px;
  }

  .hero-collage-meta {
    font-size: 9px;
  }

  .hero-collage-meta span:first-child {
    display: none;
  }

  .hero-collage-meta span:last-child {
    margin-left: auto;
  }

  .hero-collage .hero-copy {
    padding-top: 2px;
  }

  .hero-collage h1 {
    margin-top: 18px;
    font-size: clamp(38px, 9.2vw, 54px);
  }

  .hero-collage .title-tape-shift {
    margin-left: 18px;
  }

  .hero-collage h1 em {
    font-size: .66em;
  }

  .hero-collage .hero-lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-collage .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }

  .hero-collage .button {
    min-height: 52px;
    padding-inline: 16px;
  }

  .hero-collage-art {
    min-height: 390px;
  }

  .hero-collage-image {
    right: -46px;
    bottom: -48px;
    width: 105%;
    height: 90%;
    border-width: 7px;
    border-radius: 42% 10px 20px 20px;
  }

  .hero-cutout-document {
    top: 76px;
    left: 0;
    width: 125px;
    border-width: 5px;
  }

  .hero-cutout-slide {
    display: none;
  }

  .hero-sticker-year {
    top: 4px;
    right: 0;
  }

  .hero-sticker-format {
    bottom: 6px;
    left: 3px;
  }

  .hero-orbit-one {
    right: -20px;
    width: 260px;
  }

  .hero-orbit-two,
  .hero-spark-two {
    display: none;
  }

  .proof-strip-pop {
    width: calc(100% - 28px);
  }

  .proof-strip-pop > div {
    min-height: 112px;
    padding: 16px;
    border-radius: 19px;
  }

  .proof-strip-pop b {
    font-size: 29px;
  }

  .subject-ticker > div {
    gap: 14px;
  }

  .path-grid-editorial .path-card,
  .path-grid-editorial .path-card-primary,
  .material-card,
  .review-card,
  .request-banner {
    border-radius: 22px;
  }

  .services-list article,
  .services-list article:nth-child(even) {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .services-list article:hover {
    padding-left: 18px;
  }
}

/* Kursovik v55: centered composition, larger actions, cleaner typography */
body {
  font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
.button,
.primary-nav,
.header-cta {
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
}

.header-inner {
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  width: min(1420px, calc(100% - 40px));
  min-height: 88px;
  gap: 24px;
}

.brand-mark,
.brand-mark svg {
  width: 46px;
  height: 46px;
}

.brand-mark {
  flex-basis: 46px;
}

.brand-copy strong {
  font-size: 23px;
}

.brand-copy small {
  font-size: 10px;
}

.primary-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  padding: 5px;
  background: #edf1f5;
  border: 1px solid rgba(7, 26, 51, .06);
  border-radius: 999px;
  gap: 2px;
}

.primary-nav > a:not(.nav-mobile-cta) {
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 720;
}

.primary-nav > a:not(.nav-mobile-cta)::after {
  display: none;
}

.primary-nav > a:not(.nav-mobile-cta):hover,
.primary-nav > a:not(.nav-mobile-cta):focus-visible {
  color: var(--electric);
  background: #fff;
  box-shadow: 0 5px 16px rgba(21, 54, 99, .08);
}

.header-cta {
  justify-self: end;
  min-height: 52px;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 780;
}

.button {
  min-height: 56px;
  padding-inline: 25px;
  font-size: 15px;
  font-weight: 780;
}

.hero-collage {
  display: block;
  min-height: 720px;
  margin-top: 18px;
  padding: 34px 40px 30px;
}

.hero-collage .hero-copy {
  position: relative;
  z-index: 8;
  width: min(100%, 1060px);
  max-width: none;
  margin: 0 auto;
  padding: 34px 0 0;
  text-align: center;
}

.hero-collage .hero-eyebrow {
  justify-content: center;
  font-size: 12px;
}

.hero-collage h1 {
  width: 100%;
  max-width: 1060px;
  margin: 24px auto 0;
  font-size: clamp(58px, 5.25vw, 82px);
  line-height: .96;
}

.hero-collage .title-tape {
  margin-right: auto;
  margin-left: auto;
  padding: .06em .2em .1em;
  transform: rotate(-.7deg);
}

.hero-collage .title-tape-shift {
  margin-top: 2px;
  margin-right: auto;
  margin-left: auto;
  transform: rotate(.45deg);
}

.hero-collage h1 em {
  max-width: none;
  margin-top: 16px;
  color: var(--acid);
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-size: .5em;
  font-style: normal;
  font-weight: 720;
  line-height: 1.05;
}

.hero-collage .hero-lead {
  max-width: 760px;
  margin: 23px auto 0;
  font-size: 19px;
  line-height: 1.5;
}

.hero-collage .hero-actions {
  justify-content: center;
  margin-top: 25px;
  gap: 12px;
}

.hero-collage .button {
  min-height: 60px;
  padding-inline: 31px;
  font-size: 16px;
}

.hero-revision-link {
  margin-top: 17px;
  font-size: 14px;
}

.hero-collage-art {
  position: absolute;
  z-index: 2;
  right: -30px;
  bottom: -170px;
  width: 58%;
  height: 520px;
  min-height: 0;
  animation: none;
  pointer-events: none;
}

.hero-collage-image {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-width: 9px;
  border-radius: 52% 0 0 24px;
  transform: rotate(-1.5deg);
}

.hero-collage-image::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 87, 232, .48), transparent 36%);
  content: "";
}

.hero-paper {
  position: absolute;
  z-index: 3;
  display: block;
  width: 150px;
  height: 205px;
  background:
    linear-gradient(rgba(21, 94, 239, .2), rgba(21, 94, 239, .2)) 22px 38px / 70% 2px no-repeat,
    repeating-linear-gradient(180deg, transparent 0 17px, rgba(7, 26, 51, .12) 17px 19px) 22px 68px / calc(100% - 44px) 92px no-repeat,
    #fff;
  border: 6px solid rgba(255, 255, 255, .76);
  box-shadow: 0 18px 42px rgba(7, 26, 51, .22);
}

.hero-paper::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  background: var(--acid);
  border-radius: 50%;
  content: "";
}

.hero-paper-one {
  top: 42px;
  left: -58px;
  transform: rotate(-9deg);
}

.hero-paper-two {
  top: 5px;
  right: 80px;
  width: 125px;
  height: 175px;
  transform: rotate(7deg);
}

.hero-sticker-year {
  top: 6px;
  right: 28px;
}

.hero-sticker-route {
  top: 220px;
  right: 4px;
}

.hero-sticker-format {
  bottom: 192px;
  left: 80px;
}

.hero-orbit-one {
  top: 86px;
  right: 45px;
}

.hero-orbit-two {
  right: 185px;
  bottom: 192px;
}

.hero-spark-one {
  top: 150px;
  left: 126px;
}

.hero-spark-two {
  top: 260px;
  right: 25px;
}

.section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.section-heading h2,
.custom-form-copy h2 {
  font-size: clamp(46px, 4.5vw, 66px);
}

.section-heading > p,
.section-heading-split > p,
.process-heading p {
  font-size: 17px;
}

.about-manifest {
  gap: 58px;
}

.about-year-stamp {
  min-height: 320px;
}

.about-ledger {
  margin-top: 54px;
}

.path-grid-editorial .path-card-primary {
  min-height: 590px;
}

.path-stack .path-card {
  min-height: 288px;
}

.path-card h3 {
  font-size: 29px;
}

.material-card h2,
.material-card h3 {
  font-size: 24px;
}

.services-list h3 {
  font-size: 28px;
}

.review-card-featured {
  min-height: 590px;
}

.review-stack .review-card {
  min-height: 286px;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav > a:not(.nav-mobile-cta) {
    padding-inline: 13px;
    font-size: 14px;
  }

  .hero-collage h1 {
    font-size: 62px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 76px;
  }

  .primary-nav {
    justify-self: stretch;
    align-items: stretch;
    padding: 18px;
    background: #fff;
    border-radius: 0 0 24px 24px;
  }

  .primary-nav > a:not(.nav-mobile-cta) {
    padding: 14px 8px;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
  }

  .hero-collage {
    min-height: 690px;
  }

  .hero-collage h1 {
    font-size: 58px;
  }

  .hero-collage-art {
    right: -50px;
    bottom: -200px;
    width: 72%;
  }
}

@media (max-width: 768px) {
  .brand-mark,
  .brand-mark svg {
    width: 42px;
    height: 42px;
  }

  .brand-mark {
    flex-basis: 42px;
  }

  .brand-copy strong {
    font-size: 22px;
  }

  .hero-collage {
    min-height: 0;
    padding: 24px 14px 0;
  }

  .hero-collage .hero-copy {
    padding-top: 2px;
  }

  .hero-collage h1 {
    font-size: clamp(40px, 9.6vw, 56px);
  }

  .hero-collage .title-tape,
  .hero-collage .title-tape-shift {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-collage h1 em {
    font-size: .58em;
  }

  .hero-collage .hero-lead {
    max-width: 620px;
    font-size: 17px;
  }

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

  .hero-collage .button {
    min-height: 58px;
    font-size: 16px;
  }

  .hero-collage-art {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + 28px);
    height: 330px;
    margin: 16px -14px 0;
  }

  .hero-collage-image {
    right: -22px;
    bottom: -42px;
    width: 106%;
    height: 108%;
    border-width: 7px;
    border-radius: 48% 48% 20px 20px;
  }

  .hero-paper {
    display: none;
  }

  .hero-sticker-year {
    top: 20px;
    right: 12px;
  }

  .hero-sticker-route {
    display: none;
  }

  .hero-sticker-format {
    bottom: 10px;
    left: 15px;
  }

  .hero-orbit-one {
    top: 82px;
    right: -15px;
  }

  .hero-orbit-two,
  .hero-spark-two {
    display: none;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading h2,
  .custom-form-copy h2 {
    font-size: clamp(40px, 10vw, 54px);
  }
}

@media (max-width: 520px) {
  .hero-collage h1 {
    font-size: 38px;
  }

  .hero-collage .title-tape,
  .hero-collage .title-tape-shift {
    transform: none;
  }

  .hero-collage h1 em {
    font-size: .55em;
  }

  .hero-collage .hero-lead {
    font-size: 16px;
  }

  .hero-collage .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-collage-art {
    height: 270px;
  }

  .hero-revision-link {
    font-size: 13px;
  }

  .section-heading h2,
  .custom-form-copy h2 {
    font-size: 39px;
  }
}

@media (max-width: 390px) {
  .hero-collage h1 {
    font-size: 35px;
  }

  .hero-collage .hero-lead {
    font-size: 15px;
  }

  .hero-collage .button {
    min-height: 56px;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero-collage {
    min-height: 620px;
    padding-top: 22px;
  }

  .hero-collage .hero-copy {
    padding-top: 10px;
  }

  .hero-collage h1 {
    margin-top: 15px;
    font-size: 56px;
  }

  .hero-collage h1 em {
    margin-top: 8px;
  }

  .hero-collage .hero-lead {
    margin-top: 14px;
    font-size: 16px;
  }

  .hero-collage .hero-actions {
    margin-top: 17px;
  }

  .hero-collage .button {
    min-height: 52px;
  }

  .hero-collage-art {
    bottom: -215px;
    height: 500px;
  }
}

@media (max-width: 520px) {
  .hero-collage {
    padding: 16px 14px 18px;
    border-radius: 22px;
  }

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

  .hero-collage .title-tape {
    padding-right: .1em;
    padding-left: .1em;
  }

  .hero-collage .title-tape-shift {
    margin-left: 5px;
  }

  .hero-collage h1 em {
    margin-top: 11px;
    font-size: .65em;
  }

  .hero-collage .hero-actions {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-revision-link {
    font-size: 12px;
  }

  .hero-collage-art {
    min-height: 310px;
  }

  .hero-collage-image {
    right: -38px;
    bottom: -38px;
    width: 108%;
  }

  .hero-cutout-document {
    top: 64px;
    width: 94px;
  }

  .hero-sticker-year {
    padding: 8px 10px;
  }

  .hero-sticker-year b {
    font-size: 20px;
  }

  .hero-sticker-year small {
    display: none;
  }

  .hero-sticker-format {
    font-size: 9px;
  }

  .hero-spark-one {
    top: 118px;
    left: 82px;
    width: 24px;
    height: 24px;
  }

  .proof-strip-pop {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .proof-strip-pop > div {
    min-height: 118px;
  }

  .proof-strip-pop span {
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .hero-collage h1 {
    font-size: 33px;
  }

  .hero-collage .hero-lead {
    font-size: 15px;
  }

  .hero-collage-art {
    min-height: 280px;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero-collage {
    min-height: 620px;
    margin-top: 12px;
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .hero-collage h1 {
    margin-top: 14px;
    font-size: 49px;
  }

  .hero-collage h1 em {
    margin-top: 8px;
  }

  .hero-collage .hero-lead {
    margin-top: 15px;
    font-size: 15px;
  }

  .hero-collage .hero-actions {
    margin-top: 17px;
  }

  .hero-collage .button {
    min-height: 48px;
  }

  .hero-collage-art {
    min-height: 545px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-collage .hero-copy,
  .hero-collage-art {
    animation: none;
  }

  .hero-collage-image img {
    transition: none;
  }
}

/* Catalog, material and request surfaces */
.page-intro,
.custom-intro {
  position: relative;
  padding-top: 94px;
  padding-bottom: 72px;
}

.page-intro::before,
.custom-intro::before {
  position: absolute;
  top: 46px;
  right: 0;
  width: 120px;
  height: 1px;
  background: var(--coral);
  content: "";
}

.page-intro h1,
.custom-intro h1,
.project-content > h1 {
  font-size: clamp(45px, 5vw, 68px);
  line-height: .98;
}

.catalog-count b {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.catalog-filters {
  padding: 28px;
  background: rgba(255, 255, 255, .88);
  border-top: 4px solid var(--blue);
  border-radius: 0;
  box-shadow: 0 18px 50px rgba(25, 56, 98, .08);
}

.field input,
.field select,
.field textarea,
.contact-options span,
.check-options span {
  border-radius: 2px;
}

.project-layout {
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 74px;
}

.project-content > h1 {
  max-width: 830px;
}

.project-preview {
  height: 610px;
  border: 0;
  border-radius: 0;
  box-shadow: 0 26px 80px rgba(19, 47, 86, .13);
}

.project-preview::before {
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 45%, rgba(7, 26, 51, .7)),
    linear-gradient(90deg, transparent 70%, rgba(255, 255, 255, .16));
  background-size: auto;
}

.project-preview > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-preview-caption {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: grid;
  color: #fff;
  gap: 6px;
}

.project-preview-caption > span {
  color: #b9ceff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-preview-caption > b {
  max-width: 640px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
}

.project-preview-caption > small {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.project-order-card {
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(20, 47, 85, .12);
}

.order-price {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background: var(--blue);
}

.order-price::after {
  position: absolute;
  top: -50px;
  right: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  content: "";
}

.custom-intro {
  grid-template-columns: minmax(0, 1fr) 370px;
}

.custom-guide {
  position: relative;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 51, .74), rgba(7, 26, 51, .94)),
    url('/static/brand/kursovik-presentation.webp') center / cover;
}

.custom-guide ol {
  position: relative;
  z-index: 2;
  margin-top: 86px;
}

.custom-form-layout {
  grid-template-columns: minmax(0, .58fr) minmax(560px, 1fr);
  gap: 90px;
}

.custom-form-layout > .request-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.form-chapter {
  display: grid;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  gap: 20px;
}

.form-chapter + .form-chapter {
  margin-top: 6px;
}

.form-chapter:nth-of-type(2) {
  border-top-color: var(--blue);
}

.form-chapter:nth-of-type(3) {
  border-top-color: var(--mint);
}

.form-chapter-heading {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  margin-bottom: 4px;
  gap: 12px;
}

.form-chapter-heading span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.form-chapter-heading h3 {
  font-size: 20px;
}

.custom-form-layout > .request-form > .consent-row,
.custom-form-layout > .request-form > .button,
.custom-form-layout > .request-form > .form-footnote {
  margin-right: 32px;
  margin-left: 32px;
}

.custom-form-layout > .request-form > .consent-row {
  margin-top: 20px;
}

.custom-form-layout > .request-form > .form-footnote {
  margin-bottom: 12px;
}

@media (max-width: 1180px) {
  .project-layout {
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 44px;
  }

  .custom-form-layout {
    gap: 56px;
  }
}

@media (max-width: 980px) {
  .project-layout,
  .custom-form-layout {
    grid-template-columns: 1fr;
  }

  .custom-intro {
    grid-template-columns: 1fr 310px;
  }
}

@media (max-width: 768px) {
  .page-intro,
  .custom-intro {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .page-intro::before,
  .custom-intro::before {
    top: 32px;
    width: 70px;
  }

  .project-preview {
    height: 470px;
  }

  .custom-guide {
    min-height: 360px;
  }

  .custom-guide ol {
    margin-top: 50px;
  }
}

@media (max-width: 520px) {
  .project-preview {
    height: 390px;
  }

  .project-preview-caption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .project-preview-caption > b {
    font-size: 22px;
  }

  .form-chapter {
    padding: 23px 20px;
  }

  .custom-form-layout > .request-form > .consent-row,
  .custom-form-layout > .request-form > .button,
  .custom-form-layout > .request-form > .form-footnote {
    margin-right: 20px;
    margin-left: 20px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Kursovik editorial identity v52 */
:root {
  --ink: #071a33;
  --ink-soft: #344861;
  --muted: #718096;
  --line: #dde4ed;
  --line-strong: #c7d1df;
  --paper-blue: #f1f5fa;
  --paper-ice: #e8eef7;
  --blue: #124fd4;
  --blue-deep: #0839a5;
  --blue-soft: #dce7ff;
  --mint: #64d8b5;
  --coral: #ff5a47;
  --content: 1280px;
  --radius: 3px;
}

body {
  background:
    radial-gradient(circle at 78% 4%, rgba(18, 79, 212, .08), transparent 25rem),
    linear-gradient(180deg, #f7f9fc 0, #fff 21%, #fff 78%, #f1f5fa 100%);
}

.site-header {
  border-bottom-color: rgba(7, 26, 51, .1);
  background: rgba(250, 252, 255, .9);
  backdrop-filter: blur(20px) saturate(1.2);
}

.header-inner {
  min-height: 76px;
}

.brand {
  gap: 11px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark svg {
  width: 42px;
  height: 42px;
  overflow: visible;
}

.brand-sheet {
  fill: #fff;
  stroke: currentColor;
  stroke-width: 1.6;
}

.brand-fold,
.brand-route {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.6;
}

.brand-route {
  stroke: var(--coral);
}

.brand-copy strong {
  font-size: 21px;
  font-weight: 830;
  letter-spacing: 0;
}

.brand-copy small {
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.primary-nav {
  gap: 0;
}

.primary-nav > a:not(.nav-mobile-cta) {
  position: relative;
  border-radius: 0;
  font-size: 13px;
}

.primary-nav > a:not(.nav-mobile-cta)::after {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.primary-nav > a:not(.nav-mobile-cta):hover,
.primary-nav > a:not(.nav-mobile-cta):focus-visible {
  background: transparent;
}

.primary-nav > a:not(.nav-mobile-cta):hover::after,
.primary-nav > a:not(.nav-mobile-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.nav-mobile-cta {
  min-height: 44px;
  border-radius: 2px;
}

.button {
  border-radius: 2px;
}

.hero-editorial {
  position: relative;
  grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
  width: min(1360px, calc(100% - 48px));
  min-height: calc(100svh - 76px);
  padding: 48px 0 54px;
  gap: 48px;
}

.hero-editorial::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: calc(45% - 1px);
  width: 1px;
  background: linear-gradient(transparent, var(--line-strong) 18%, var(--line-strong) 82%, transparent);
  content: "";
  opacity: .58;
  pointer-events: none;
}

.hero-editorial .hero-copy {
  width: 100%;
  min-width: 0;
  padding-left: clamp(0px, calc((100vw - 1360px) / 2), 40px);
}

.hero-editorial h1 {
  width: 100%;
  max-width: 670px;
  margin-top: 25px;
  font-size: clamp(48px, 4.35vw, 68px);
  font-weight: 810;
  line-height: .98;
}

.hero-editorial h1 span,
.hero-editorial h1 em {
  display: block;
}

.hero-editorial h1 em {
  max-width: 620px;
  margin-top: 13px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .78em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.02;
}

.hero-editorial .hero-lead {
  width: 100%;
  max-width: 610px;
  margin-top: 27px;
  font-size: 18px;
}

.hero-editorial .hero-actions {
  margin-top: 27px;
}

.hero-editorial .hero-routes {
  max-width: 650px;
  margin-top: 34px;
}

.hero-editorial .hero-visual {
  align-self: stretch;
  min-height: 650px;
}

.hero-editorial .hero-image-shell {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: 0 30px 100px rgba(18, 48, 92, .18);
  clip-path: polygon(5% 0, 100% 0, 100% 94%, 92% 100%, 0 100%, 0 6%);
}

.hero-editorial .hero-image-shell::before {
  border-color: rgba(255, 255, 255, .72);
  border-radius: 0;
}

.hero-editorial .hero-image-shell img {
  object-position: 61% center;
}

.hero-editorial .hero-image-shade {
  background:
    linear-gradient(90deg, rgba(241, 246, 253, .42), transparent 32%),
    linear-gradient(165deg, rgba(255, 255, 255, .12), transparent 52%, rgba(7, 26, 51, .14));
}

.hero-figure-index {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 25px;
  display: grid;
  justify-items: end;
  color: #fff;
  text-shadow: 0 2px 18px rgba(7, 26, 51, .35);
}

.hero-figure-index span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-figure-index b {
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.hero-route-line {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: -25px;
  width: 96px;
  height: 96px;
  border-bottom: 1px solid rgba(18, 79, 212, .45);
  border-left: 1px solid rgba(18, 79, 212, .45);
  pointer-events: none;
}

.hero-route-line::after {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}

.hero-route-line i {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.hero-route-line i:nth-child(1) { left: -3px; top: -3px; }
.hero-route-line i:nth-child(2) { left: -3px; top: 30%; }
.hero-route-line i:nth-child(3) { left: 40%; bottom: -3px; }
.hero-route-line i:nth-child(4) { right: -3px; bottom: -3px; }

.hero-editorial .hero-float,
.hero-editorial .hero-year {
  border-radius: 0;
  box-shadow: 0 18px 50px rgba(7, 26, 51, .12);
}

.hero-editorial .hero-float-top {
  top: 60px;
  left: -22px;
}

.hero-editorial .hero-float-bottom {
  right: auto;
  bottom: 56px;
  left: 48px;
}

.hero-editorial .hero-year {
  top: -18px;
  right: 30px;
  color: var(--ink);
}

.proof-strip {
  position: relative;
  width: min(var(--content), calc(100% - 48px));
  background: rgba(255, 255, 255, .62);
}

.proof-strip::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 48px;
  height: 4px;
  background: var(--coral);
  content: "";
}

.proof-strip b {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

.section {
  padding-top: 126px;
  padding-bottom: 126px;
}

.section-heading h2,
.custom-form-copy h2 {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 790;
  line-height: 1.02;
}

.about-manifest {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: end;
  gap: 70px;
}

.about-year-stamp {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 380px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
}

.about-year-stamp::after {
  position: absolute;
  right: -60px;
  bottom: 55px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  content: "";
}

.about-year-stamp span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-year-stamp b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 100px;
  font-weight: 400;
  line-height: .7;
}

.about-manifest .section-heading {
  max-width: 880px;
}

.about-manifest .section-heading > p {
  max-width: 750px;
}

.about-ledger {
  margin-top: 82px;
}

.path-section {
  background:
    linear-gradient(90deg, rgba(18, 79, 212, .035) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(18, 79, 212, .035) 1px, transparent 1px) 0 0 / 64px 64px,
    #eef3f9;
}

.path-grid-editorial {
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .7fr);
  gap: 14px;
}

.path-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-width: 0;
  gap: 14px;
}

.path-grid-editorial .path-card {
  min-height: 0;
  border-radius: 0;
}

.path-grid-editorial .path-card-primary {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 28px 70px rgba(38, 64, 100, .13);
}

.path-grid-editorial .path-card-primary::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0, rgba(255, 255, 255, .98) 41%, rgba(255, 255, 255, .45) 66%, transparent 100%);
  content: "";
  pointer-events: none;
}

.path-grid-editorial .path-card-primary > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 72%;
  height: 100%;
  object-fit: cover;
}

.path-grid-editorial .path-card-primary > *:not(img) {
  position: relative;
  z-index: 2;
  max-width: 46%;
}

.path-grid-editorial .path-card-primary .path-number {
  color: #fff;
  background: var(--blue);
}

.path-grid-editorial .path-card-primary p {
  color: var(--ink-soft);
}

.path-grid-editorial .path-card-primary > a {
  width: 46%;
  color: var(--blue);
  border-top-color: var(--line);
}

.path-stack .path-card {
  min-height: 328px;
  background: rgba(255, 255, 255, .84);
}

.path-card-accent {
  color: #fff;
  background: var(--ink) !important;
  border-color: var(--ink) !important;
}

.path-card-accent p {
  color: rgba(255, 255, 255, .65);
}

.path-card-accent > a {
  color: #fff;
  border-top-color: rgba(255, 255, 255, .2);
}

.material-grid,
.catalog-grid {
  gap: 18px;
}

.material-card {
  min-height: 570px;
  padding: 0 22px 24px;
  overflow: hidden;
  border-radius: 0;
}

.material-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1.28;
  margin: 0 -22px 22px;
  overflow: hidden;
  background: var(--paper-blue);
}

.material-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 26, 51, .2));
  content: "";
}

.material-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2, .7, .2, 1);
}

.material-card:hover .material-card-media img {
  transform: scale(1.035);
}

.material-card-media > span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.material-card > div:nth-child(3) {
  margin-top: 34px;
}

.material-card h2,
.material-card h3 {
  font-size: 21px;
}

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

.services-list article,
.services-list article:nth-child(even) {
  grid-template-columns: 56px minmax(240px, .75fr) minmax(260px, 1fr);
  min-height: 128px;
  padding: 30px 0;
  border-right: 0;
  border-left: 0;
  gap: 22px;
  transition: color 180ms ease, padding-left 180ms ease;
}

.services-list article:hover {
  padding-left: 10px;
  color: var(--blue);
}

.services-list article > span {
  grid-row: auto;
}

.services-list h3 {
  font-size: 25px;
}

.services-list p {
  max-width: 470px;
  font-size: 15px;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 100px;
  background:
    radial-gradient(circle at 12% 20%, rgba(18, 79, 212, .34), transparent 30rem),
    #071a33;
}

.process-heading {
  position: sticky;
  top: 126px;
}

.process-heading h2 {
  margin-top: 14px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.03;
}

.process-heading p {
  max-width: 380px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .62);
}

.process-line {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.process-line li,
.process-line li:nth-child(3n),
.process-line li:nth-child(3n + 2),
.process-line li:nth-child(3n + 3) {
  grid-template-columns: 58px 1fr;
  min-height: 150px;
  padding: 30px 0;
  border-right: 0;
}

.process-line h3 {
  font-size: 25px;
}

.reviews-grid {
  grid-template-columns: 1.18fr .82fr;
  gap: 18px;
}

.review-stack {
  display: grid;
  gap: 18px;
}

.review-card {
  min-height: 0;
  border-radius: 0;
}

.review-card-featured {
  min-height: 650px;
  padding: 46px;
  background:
    linear-gradient(rgba(18, 79, 212, .76), rgba(18, 79, 212, .94)),
    url('/static/brand/kursovik-presentation.webp') center / cover;
}

.review-card-featured::before {
  display: none;
}

.review-index {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-card-featured blockquote {
  margin-top: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.5;
}

.review-stack .review-card {
  min-height: 316px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 100px;
}

.faq-layout .section-heading {
  position: sticky;
  top: 120px;
}

.faq-list {
  margin-top: 0;
}

.request-banner {
  position: relative;
  grid-template-columns: minmax(0, 1.2fr) auto;
  padding: 72px 70px 72px 280px;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at 16% 50%, rgba(18, 79, 212, .72), transparent 17rem),
    #071a33;
}

.request-banner-art {
  position: absolute;
  top: 50%;
  left: 50px;
  width: 165px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, .28);
  transform: translateY(-50%) rotate(-6deg);
}

.request-banner-art::after {
  position: absolute;
  inset: 16px -18px -18px 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  content: "";
}

.request-banner-art span {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
}

.request-banner-art i {
  position: absolute;
  right: 18px;
  left: 18px;
  height: 1px;
  background: rgba(255, 255, 255, .34);
}

.request-banner-art i:nth-child(2) { bottom: 70px; }
.request-banner-art i:nth-child(3) { bottom: 50px; }
.request-banner-art i:nth-child(4) { bottom: 30px; width: 55%; }

@media (max-width: 1180px) {
  .hero-editorial {
    grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
    width: min(100% - 40px, 1360px);
    gap: 36px;
  }

  .hero-editorial h1 {
    font-size: 53px;
  }

  .hero-editorial .hero-visual {
    min-height: 610px;
  }

  .path-grid-editorial .path-card-primary > *:not(img),
  .path-grid-editorial .path-card-primary > a {
    max-width: 54%;
    width: 54%;
  }

  .process-section,
  .faq-layout {
    gap: 60px;
  }

  .request-banner {
    padding-left: 240px;
  }
}

@media (max-width: 980px) {
  .brand-copy small {
    display: block;
  }

  .primary-nav {
    border-radius: 0;
  }

  .hero-editorial {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 52px;
  }

  .hero-editorial::before {
    display: none;
  }

  .hero-editorial .hero-copy {
    max-width: 760px;
    padding-left: 0;
  }

  .hero-editorial h1 {
    font-size: 60px;
  }

  .hero-editorial .hero-visual {
    width: 100%;
    max-width: none;
    min-height: 570px;
  }

  .about-manifest {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 45px;
  }

  .about-year-stamp {
    min-height: 330px;
  }

  .about-year-stamp b {
    font-size: 78px;
  }

  .path-grid-editorial {
    grid-template-columns: 1fr;
  }

  .path-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .process-section {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .process-heading,
  .faq-layout .section-heading {
    position: static;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .request-banner {
    padding-left: 230px;
  }
}

@media (max-width: 768px) {
  .brand-mark,
  .brand-mark svg {
    width: 38px;
    height: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-editorial {
    width: calc(100% - 32px);
    padding-top: 42px;
    gap: 34px;
  }

  .hero-editorial h1 {
    max-width: 100%;
    font-size: clamp(40px, 9vw, 54px);
  }

  .hero-editorial .hero-lead,
  .hero-editorial .hero-actions,
  .hero-editorial .hero-routes {
    max-width: 100%;
  }

  .hero-editorial h1 em {
    margin-top: 10px;
    font-size: .8em;
  }

  .hero-editorial .hero-lead {
    margin-top: 21px;
    font-size: 16px;
  }

  .hero-editorial .hero-visual {
    min-height: 450px;
  }

  .hero-editorial .hero-float-bottom,
  .hero-route-line {
    display: none;
  }

  .hero-editorial .hero-float-top {
    top: auto;
    bottom: 20px;
    left: 18px;
  }

  .hero-editorial .hero-year {
    top: 15px;
    right: 14px;
  }

  .about-manifest {
    grid-template-columns: 1fr;
  }

  .about-year-stamp {
    grid-template-columns: auto 1fr;
    align-items: end;
    min-height: 190px;
  }

  .about-year-stamp b {
    justify-self: end;
    font-size: 72px;
  }

  .path-grid-editorial .path-card-primary {
    min-height: 600px;
  }

  .path-grid-editorial .path-card-primary > img {
    top: 0;
    width: 100%;
    height: 58%;
  }

  .path-grid-editorial .path-card-primary::after {
    background: linear-gradient(0deg, #fff 0, #fff 50%, rgba(255, 255, 255, .2) 73%, transparent 100%);
  }

  .path-grid-editorial .path-card-primary > *:not(img),
  .path-grid-editorial .path-card-primary > a {
    max-width: none;
    width: 100%;
  }

  .path-grid-editorial .path-card-primary > div {
    margin-top: auto;
  }

  .path-stack {
    grid-template-columns: 1fr;
  }

  .services-list article,
  .services-list article:nth-child(even) {
    grid-template-columns: 42px 1fr;
    gap: 9px 14px;
  }

  .services-list article > span {
    grid-row: 1 / span 2;
  }

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

  .review-card-featured {
    min-height: 560px;
    padding: 34px;
  }

  .request-banner {
    grid-template-columns: 1fr;
    padding: 240px 32px 38px;
  }

  .request-banner-art {
    top: 34px;
    left: 50%;
    width: 130px;
    height: 170px;
    transform: translateX(-50%) rotate(-6deg);
  }
}

@media (max-width: 520px) {
  .hero-editorial {
    width: calc(100% - 28px);
    padding-top: 30px;
  }

  .hero-editorial h1 {
    font-size: 40px;
  }

  .hero-editorial .hero-actions {
    display: grid;
  }

  .hero-editorial .hero-visual {
    min-height: 360px;
  }

  .hero-editorial .hero-image-shell {
    clip-path: polygon(7% 0, 100% 0, 100% 92%, 89% 100%, 0 100%, 0 8%);
  }

  .hero-figure-index {
    display: none;
  }

  .hero-editorial .hero-float-top {
    max-width: 220px;
  }

  .hero-editorial .hero-routes {
    margin-top: 24px;
  }

  .proof-strip b {
    font-size: 11px;
  }

  .about-year-stamp {
    min-height: 170px;
  }

  .path-grid-editorial .path-card-primary {
    min-height: 550px;
  }

  .material-card {
    min-height: 530px;
  }

  .review-card-featured {
    min-height: 540px;
    padding: 28px;
  }

  .review-card-featured blockquote {
    font-size: 21px;
  }
}

@media (max-width: 390px) {
  .hero-editorial {
    width: calc(100% - 24px);
  }

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

  .hero-editorial .hero-visual {
    min-height: 330px;
  }

  .path-grid-editorial .path-card-primary {
    min-height: 520px;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero-editorial {
    min-height: 670px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-editorial h1 {
    margin-top: 17px;
    font-size: 49px;
  }

  .hero-editorial h1 em {
    margin-top: 8px;
  }

  .hero-editorial .hero-lead {
    margin-top: 17px;
    font-size: 16px;
  }

  .hero-editorial .hero-actions {
    margin-top: 20px;
  }

  .hero-editorial .hero-routes {
    margin-top: 22px;
  }

  .hero-editorial .hero-visual {
    min-height: 610px;
  }
}

/* v54 final cascade: shared surfaces follow the pop-editorial homepage */
.header-cta,
.nav-mobile-cta {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  border-radius: 999px;
  box-shadow: none;
}

.header-cta:hover,
.header-cta:focus-visible,
.nav-mobile-cta:hover,
.nav-mobile-cta:focus-visible {
  color: #fff;
  background: var(--electric);
  border-color: var(--electric);
}

.about-year-stamp {
  color: var(--ink);
  background: var(--acid);
  border-radius: 30px;
}

.about-year-stamp::after {
  border-color: rgba(7, 26, 51, .18);
}

.path-section {
  background:
    linear-gradient(90deg, rgba(23, 87, 232, .04) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(rgba(23, 87, 232, .04) 1px, transparent 1px) 0 0 / 52px 52px,
    #edf1f5;
}

.path-grid-editorial .path-card,
.path-grid-editorial .path-card-primary {
  border-radius: 28px;
}

.path-stack .path-card:first-child {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.path-stack .path-card:first-child p {
  color: rgba(7, 26, 51, .68);
}

.path-stack .path-card:first-child .path-number {
  color: #fff;
  background: var(--electric);
}

.material-card {
  border-color: rgba(7, 26, 51, .09);
  border-radius: 26px;
  box-shadow: 0 16px 42px rgba(21, 54, 99, .08);
}

.services-list {
  gap: 10px;
}

.services-list article,
.services-list article:nth-child(even) {
  padding: 26px 28px;
  background: #fff;
  border: 1px solid rgba(7, 26, 51, .08);
  border-radius: 22px;
}

.services-list article:nth-child(2),
.services-list article:nth-child(5) {
  background: #f0ffd0;
  border-color: #ddf5a4;
}

.services-list article:hover {
  padding-left: 38px;
  box-shadow: 0 14px 36px rgba(21, 54, 99, .08);
}

.process-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(200, 255, 61, .19), transparent 24rem),
    var(--ink);
}

.process-line li > span {
  color: var(--acid);
}

.review-card {
  border-radius: 26px;
}

.review-card-featured {
  background:
    linear-gradient(rgba(23, 87, 232, .72), rgba(11, 62, 183, .94)),
    url('/static/brand/kursovik-presentation.webp') center / cover;
}

.review-stack .review-card:first-child {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.review-stack .review-card:first-child figcaption span {
  color: rgba(7, 26, 51, .58);
}

.request-banner {
  background:
    radial-gradient(circle at 16% 50%, rgba(200, 255, 61, .18), transparent 18rem),
    var(--electric);
  border-radius: 32px;
}

.request-banner .button-white {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  border-radius: 999px;
}

.request-banner .button-ghost {
  border-radius: 999px;
}

@media (max-width: 768px) {
  .path-grid-editorial .path-card,
  .path-grid-editorial .path-card-primary,
  .material-card,
  .review-card,
  .request-banner {
    border-radius: 22px;
  }

  .services-list article,
  .services-list article:nth-child(even) {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .services-list article:hover {
    padding-left: 18px;
  }
}

/* v55 final cascade */
.section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.proof-strip-pop b {
  color: var(--electric);
  font-size: 36px;
  line-height: 1;
}

.proof-strip-pop > div:nth-child(2) b,
.proof-strip-pop > div:nth-child(4) b {
  color: inherit;
}

.proof-strip-pop span {
  max-width: 190px;
  font-size: 13px;
  line-height: 1.3;
}

.about-year-stamp {
  min-height: 320px;
}

.about-ledger {
  margin-top: 54px;
}

.path-grid-editorial .path-card-primary {
  min-height: 590px;
}

.path-stack .path-card {
  min-height: 288px;
}

.path-card h3 {
  font-size: 29px;
}

.material-card h2,
.material-card h3 {
  font-size: 24px;
}

.services-list h3 {
  font-size: 28px;
}

.review-card-featured {
  min-height: 590px;
}

.review-stack .review-card {
  min-height: 286px;
}

@media (min-width: 769px) {
  .hero-collage-art {
    bottom: -240px;
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .proof-strip-pop b {
    font-size: 31px;
  }

  .proof-strip-pop span {
    font-size: 12px;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero-collage-art {
    bottom: -280px;
  }
}

.hero-collage .hero-eyebrow,
.hero-collage .hero-actions,
.hero-collage .hero-revision-link {
  margin-right: auto;
  margin-left: auto;
}

.hero-collage .hero-actions,
.hero-collage .hero-revision-link {
  width: fit-content;
}

@media (max-width: 768px) {
  .hero-collage .hero-actions {
    width: 100%;
  }
}

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

.hero-collage .button-secondary:hover,
.hero-collage .button-secondary:focus-visible {
  color: var(--ink);
  background: #eaf1ff;
  border-color: #eaf1ff;
}

.hero-collage .hero-revision-link {
  min-height: 40px;
  align-items: center;
  padding: 9px 17px;
  color: #fff;
  background: rgba(7, 26, 51, .34);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-collage .hero-revision-link:hover,
.hero-collage .hero-revision-link:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.hero-collage-image::before {
  background: linear-gradient(180deg, var(--electric) 0%, rgba(23, 87, 232, .9) 24%, rgba(23, 87, 232, .18) 58%, transparent 78%);
}

@media (max-width: 980px) {
  .header-inner {
    position: relative;
  }

  .site-header.is-menu-open .primary-nav {
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(7, 26, 51, .09);
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(7, 26, 51, .18);
    gap: 2px;
  }

  .site-header.is-menu-open .primary-nav > a:not(.nav-mobile-cta) {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 13px;
    font-size: 17px;
    text-align: left;
  }

  .site-header.is-menu-open .primary-nav > a:not(.nav-mobile-cta)::after {
    display: block;
    position: static;
    width: auto;
    height: auto;
    background: none;
    content: "→";
    transform: none;
  }

  .site-header.is-menu-open .nav-mobile-cta {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
  }
}

/* v56 final cascade lock */
.page-intro.catalog-intro .catalog-intro-copy > p {
  color: rgba(255, 255, 255, .78);
}

@media (min-width: 901px) {
  .catalog-filter-panel:not([open]) > .catalog-filters {
    display: grid;
  }
}

.catalog-filters {
  position: static;
  padding: 26px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-top: 7px solid var(--acid);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 26, 51, .16);
}

.material-card {
  min-height: 650px;
  padding: 0;
  border-radius: 8px;
}

.material-card > .material-card-body {
  margin-top: 0;
}

.material-card-media {
  aspect-ratio: 1.34;
  margin: 0;
}

.material-card:nth-child(3):last-child {
  min-height: 460px;
}

.project-layout {
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 46px;
}

.project-preview {
  height: 650px;
  margin-top: 18px;
  border-radius: 8px;
}

.project-preview::before {
  background:
    linear-gradient(180deg, transparent 38%, rgba(7, 26, 51, .82)),
    linear-gradient(90deg, transparent 62%, rgba(23, 87, 232, .18));
}

.project-preview-caption {
  right: 38px;
  bottom: 38px;
  left: 38px;
}

.project-preview-caption > span {
  color: var(--acid);
}

.project-preview-caption > b {
  max-width: 700px;
  font-family: inherit;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.14;
}

.project-order-card {
  overflow: hidden;
  border: 1px solid rgba(7, 26, 51, .14);
  border-top: 7px solid var(--acid);
  border-radius: 8px;
}

.custom-intro {
  margin-top: 30px;
  padding: 54px 58px;
  color: #fff;
  background: var(--electric);
  border: 0;
  border-radius: 8px;
}

.custom-intro h1 {
  color: #fff;
  font-size: 61px;
}

.custom-intro > div:first-child > p {
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 1120px) {
  .material-card:nth-child(3):last-child {
    min-height: 650px;
  }

  .project-layout {
    grid-template-columns: minmax(0, 1fr) 370px;
  }
}

@media (max-width: 900px) {
  .catalog-filter-panel:not([open]) > .catalog-filters {
    display: none;
  }

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

@media (max-width: 768px) {
  .catalog-intro {
    padding-top: 30px;
  }

  .catalog-intro h1 {
    font-size: 43px;
  }

  .catalog-intro .catalog-intro-copy > p {
    margin-top: 17px;
    font-size: 15px;
  }

  .material-card,
  .material-card:nth-child(3):last-child {
    min-height: 0;
  }

  .material-card-media,
  .material-card:nth-child(3):last-child .material-card-media {
    aspect-ratio: 1.45;
    margin: 0;
  }

  .project-layout {
    gap: 18px;
  }

  .project-preview {
    height: 470px;
  }

  .project-preview-caption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .project-preview-caption > b {
    font-size: 24px;
  }

  .custom-intro {
    width: calc(100% - 28px);
    margin-top: 14px;
    padding: 34px 24px 28px;
  }

  .custom-intro h1 {
    font-size: 43px;
  }

  .custom-guide {
    display: none;
  }
}

@media (max-width: 430px) {
  .catalog-intro h1,
  .custom-intro h1 {
    font-size: 37px;
  }

  .project-preview {
    height: 410px;
  }

  .project-preview-caption > b {
    font-size: 21px;
  }
}

/* Kursovik homepage professional polish, v57 */
.proof-strip-professional {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content), calc(100% - 48px));
  margin-top: 20px;
  background: #fff;
  border: 1px solid rgba(7, 26, 51, .12);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(25, 56, 98, .07);
  gap: 0;
}

.proof-strip-professional > div,
.proof-strip-professional > div:nth-child(2),
.proof-strip-professional > div:nth-child(4) {
  position: relative;
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 20px 24px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  gap: 4px;
}

.proof-strip-professional > div:last-child {
  border-right: 0;
}

.proof-strip-professional > div:nth-child(2)::after {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 4px;
  background: var(--acid);
  content: "";
}

.proof-strip-professional > div > span {
  color: var(--electric);
  font-size: 10px;
  font-weight: 900;
}

.proof-strip-professional > div > b,
.proof-strip-professional > div:nth-child(2) > b,
.proof-strip-professional > div:nth-child(4) > b {
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.15;
  text-transform: none;
}

.proof-strip-professional > div > small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.about-section-polished {
  padding-top: 108px;
  padding-bottom: 96px;
}

.about-section-polished .about-manifest {
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 72px;
}

.about-section-polished .about-year-stamp {
  min-height: 350px;
  color: #fff;
  background: var(--electric);
  border-radius: 8px;
  box-shadow: 0 26px 65px rgba(23, 87, 232, .2);
}

.about-section-polished .about-year-stamp::before {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 54px;
  height: 5px;
  background: var(--acid);
  content: "";
}

.about-section-polished .about-year-stamp::after {
  border-color: rgba(255, 255, 255, .22);
}

.about-section-polished .about-year-stamp span,
.about-section-polished .about-year-stamp b {
  color: #fff;
}

.about-section-polished .section-heading h2 {
  max-width: 920px;
  color: var(--ink);
  font-size: 60px;
  line-height: .99;
}

.about-section-polished .about-ledger {
  margin-top: 64px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.about-section-polished .about-ledger article,
.about-section-polished .about-ledger article + article {
  min-height: 228px;
  padding: 30px 34px 32px 0;
  background: transparent;
}

.about-section-polished .about-ledger article + article {
  padding-left: 34px;
}

.about-section-polished .about-ledger h3 {
  color: var(--ink);
  font-size: 24px;
}

.path-section-polished {
  padding-top: 100px;
  padding-bottom: 100px;
  background:
    linear-gradient(90deg, rgba(23, 87, 232, .035) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(23, 87, 232, .035) 1px, transparent 1px) 0 0 / 64px 64px,
    #edf2f8;
}

.path-section-polished .section-heading h2 {
  max-width: 780px;
}

.path-section-polished .path-card,
.path-section-polished .path-card-primary {
  border-radius: 8px;
}

.path-section-polished .path-stack .path-card:first-child {
  color: var(--ink);
  background: #e2ebff;
  border-color: #cad9f8;
}

.path-section-polished .path-stack .path-card:first-child p {
  color: var(--ink-soft);
}

.path-section-polished .path-stack .path-card:first-child .path-number {
  color: var(--ink);
  background: var(--acid);
}

.path-section-polished .path-card-accent {
  background: var(--ink) !important;
}

.catalog-preview-polished {
  padding-top: 104px;
  padding-bottom: 104px;
}

.catalog-preview-polished .section-heading h2 {
  max-width: 820px;
}

.material-grid-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  gap: 16px;
}

.home-material-card {
  display: flex;
  min-width: 0;
  min-height: 610px;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 26, 51, .12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(21, 54, 99, .08);
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1), box-shadow 320ms ease, border-color 320ms ease;
}

.home-material-card:hover {
  border-color: rgba(23, 87, 232, .32);
  box-shadow: 0 30px 70px rgba(21, 54, 99, .15);
  transform: translateY(-5px);
}

.home-material-media {
  position: relative;
  display: block;
  aspect-ratio: 1.15;
  overflow: hidden;
  background: #eef3fa;
}

.home-material-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 26, 51, .3));
  content: "";
}

.home-material-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.home-material-card:hover .home-material-media img {
  transform: scale(1.035);
}

.home-material-media > span,
.home-material-media > i {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
}

.home-material-media > span {
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--acid);
  font-size: 12px;
  font-weight: 900;
}

.home-material-media > i {
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--electric);
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease;
}

.home-material-media:hover > i,
.home-material-media:focus-visible > i {
  color: var(--ink);
  background: var(--acid);
}

.home-material-body {
  display: flex;
  height: 100%;
  padding: 24px;
  flex-direction: column;
}

.home-material-meta,
.home-material-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.home-material-meta span,
.home-material-meta small {
  font-size: 10px;
  font-weight: 850;
}

.home-material-meta span {
  color: var(--electric);
  text-transform: uppercase;
}

.home-material-meta small {
  color: var(--muted);
}

.home-material-copy {
  margin-top: 34px;
}

.home-material-copy > small {
  color: var(--electric);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.home-material-copy h3 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 850;
  line-height: 1.08;
}

.home-material-copy p {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.home-material-footer {
  min-height: 60px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.home-material-footer b {
  font-size: 27px;
  font-weight: 900;
}

.home-material-footer a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: #fff;
  background: var(--electric);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  gap: 8px;
}

.services-section-polished {
  padding-top: 100px;
  padding-bottom: 100px;
}

.services-section-polished .services-list {
  gap: 8px;
}

.services-section-polished .services-list article,
.services-section-polished .services-list article:nth-child(even) {
  padding: 28px 30px;
  background: #fff;
  border: 1px solid rgba(7, 26, 51, .1);
  border-radius: 8px;
}

.services-section-polished .services-list article:nth-child(2),
.services-section-polished .services-list article:nth-child(5) {
  background: #edf3ff;
  border-color: #d8e4fa;
}

.services-section-polished .services-list article:hover {
  padding-left: 38px;
  border-color: rgba(23, 87, 232, .3);
  box-shadow: 0 18px 46px rgba(21, 54, 99, .08);
}

.process-section-polished {
  padding-top: 104px;
  padding-bottom: 104px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 64px 64px,
    var(--ink);
}

.process-section-polished .process-heading h2 {
  color: #fff;
}

.process-section-polished .process-heading > a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  margin-top: 28px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  gap: 9px;
}

.process-section-polished .process-line li {
  min-height: 142px;
}

.process-section-polished .process-line li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
}

.reviews-section-polished {
  width: 100%;
  max-width: none;
  padding: 104px max(24px, calc((100% - var(--content)) / 2));
  background: #f3f6fa;
  border-top: 0 !important;
}

.reviews-section-polished .reviews-note {
  color: var(--electric);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.reviews-section-polished .review-card {
  border-radius: 8px;
}

.reviews-section-polished .review-card-featured {
  min-height: 620px;
  background:
    linear-gradient(180deg, rgba(23, 87, 232, .56), rgba(7, 26, 51, .95)),
    url('/static/catalog/digital-education.webp') center / cover;
}

.reviews-section-polished .review-card-featured blockquote {
  font-family: inherit;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.48;
}

.reviews-section-polished .review-stack {
  gap: 12px;
}

.reviews-section-polished .review-stack .review-card,
.reviews-section-polished .review-stack .review-card:first-child {
  min-height: 304px;
  color: var(--ink);
  background: #fff;
  border-color: rgba(7, 26, 51, .11);
}

.reviews-section-polished .review-stack .review-card:first-child {
  border-top: 5px solid var(--acid);
}

.reviews-section-polished .review-stack .review-card blockquote {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.reviews-section-polished .review-index {
  color: var(--electric);
}

.reviews-section-polished .review-card-featured .review-index {
  color: var(--acid);
}

.faq-section-polished {
  padding-top: 104px;
  padding-bottom: 104px;
}

.faq-section-polished .faq-list details {
  background: #fff;
}

.faq-section-polished .faq-list summary {
  min-height: 78px;
  align-items: center;
}

.request-banner-polished {
  margin-top: 18px;
  margin-bottom: 18px;
  padding-top: 82px;
  padding-bottom: 82px;
  background:
    linear-gradient(120deg, rgba(7, 26, 51, .22), transparent 58%),
    var(--electric);
  border-radius: 8px;
}

.request-banner-polished h2 {
  max-width: 760px;
  font-size: 46px;
  line-height: 1.04;
}

.request-banner-polished .button-white {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

@media (max-width: 1080px) {
  .about-section-polished .about-manifest {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 46px;
  }

  .about-section-polished .section-heading h2 {
    font-size: 52px;
  }

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

  .home-material-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    display: grid;
    min-height: 440px;
    grid-template-columns: 1fr 1fr;
  }

  .home-material-card:last-child:nth-child(odd) .home-material-media {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 768px) {
  .proof-strip-professional {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 28px);
    margin-top: 14px;
  }

  .proof-strip-professional > div,
  .proof-strip-professional > div:nth-child(2),
  .proof-strip-professional > div:nth-child(4) {
    min-height: 104px;
    padding: 17px;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip-professional > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip-professional > div:nth-child(3),
  .proof-strip-professional > div:nth-child(4) {
    border-bottom: 0;
  }

  .proof-strip-professional > div:nth-child(2)::after {
    right: 17px;
    left: 17px;
  }

  .about-section-polished,
  .catalog-preview-polished,
  .services-section-polished,
  .faq-section-polished {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .about-section-polished .about-manifest {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-section-polished .about-year-stamp {
    min-height: 176px;
  }

  .about-section-polished .section-heading h2 {
    font-size: 42px;
  }

  .about-section-polished .about-ledger {
    margin-top: 42px;
  }

  .about-section-polished .about-ledger article,
  .about-section-polished .about-ledger article + article {
    min-height: 0;
    padding: 26px 0;
  }

  .path-section-polished,
  .process-section-polished,
  .reviews-section-polished {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .path-section-polished .path-card,
  .path-section-polished .path-card-primary {
    border-radius: 8px;
  }

  .material-grid-home {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .home-material-card,
  .home-material-card:last-child:nth-child(odd) {
    display: flex;
    min-height: 0;
    grid-column: auto;
  }

  .home-material-card:last-child:nth-child(odd) .home-material-media,
  .home-material-media {
    height: auto;
    aspect-ratio: 1.35;
  }

  .home-material-card:hover {
    transform: none;
  }

  .services-section-polished .services-list article,
  .services-section-polished .services-list article:nth-child(even) {
    padding: 23px 20px;
    border-radius: 8px;
  }

  .services-section-polished .services-list article:hover {
    padding-left: 20px;
  }

  .process-section-polished .process-heading > a {
    width: 100%;
    justify-content: center;
  }

  .reviews-section-polished .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-section-polished .review-card,
  .reviews-section-polished .review-card-featured {
    border-radius: 8px;
  }

  .reviews-section-polished .review-card-featured {
    min-height: 560px;
  }

  .request-banner-polished {
    width: calc(100% - 28px);
    padding-top: 226px;
    padding-bottom: 36px;
    border-radius: 8px;
  }

  .request-banner-polished h2 {
    font-size: 37px;
  }
}

@media (max-width: 430px) {
  .proof-strip-professional > div > b,
  .proof-strip-professional > div:nth-child(2) > b,
  .proof-strip-professional > div:nth-child(4) > b {
    font-size: 16px;
  }

  .proof-strip-professional > div > small {
    font-size: 10px;
  }

  .about-section-polished .section-heading h2,
  .request-banner-polished h2 {
    font-size: 35px;
  }

  .home-material-body {
    padding: 21px;
  }

  .home-material-copy {
    margin-top: 26px;
  }

  .home-material-copy h3 {
    font-size: 24px;
  }

  .home-material-footer b {
    font-size: 25px;
  }

  .reviews-section-polished .review-card-featured {
    min-height: 540px;
    padding: 26px;
  }

  .reviews-section-polished .review-card-featured blockquote {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-material-card,
  .home-material-media img,
  .home-material-media > i {
    transition: none;
  }
}

@media (max-width: 370px) {
  .hero-collage h1 {
    font-size: 31px;
  }

  .hero-collage .title-tape-shift {
    margin-left: auto;
  }
}

@media (max-width: 520px) {
  .hero-collage .hero-revision-link {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 13px;
  }
}

/* Kursovik art direction and motion polish, v59 */
:root {
  --font-sans: "Onest", "Segoe UI", Arial, sans-serif;
  --blue-glow: rgba(23, 87, 232, .2);
  --coral-soft: rgba(255, 90, 71, .12);
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

body {
  background:
    radial-gradient(circle at 9% 18%, rgba(255, 90, 71, .045), transparent 25rem),
    radial-gradient(circle at 84% 4%, rgba(23, 87, 232, .09), transparent 31rem),
    linear-gradient(180deg, #f7f9fc 0, #fff 18%, #fff 79%, #eef3f9 100%);
}

.brand-copy strong,
.hero-collage h1,
.section-heading h2,
.process-heading h2,
.request-banner h2,
.custom-form-copy h2 {
  font-family: var(--font-sans);
  font-variation-settings: "wght" 820;
}

.site-header {
  box-shadow: 0 10px 36px rgba(7, 26, 51, .035);
}

.site-header.is-menu-open .primary-nav {
  background: #fff;
}

.primary-nav {
  border: 1px solid rgba(7, 26, 51, .08);
  background: rgba(234, 239, 246, .74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.primary-nav > a:not(.nav-mobile-cta) {
  min-height: 42px;
}

.header-cta {
  box-shadow: 0 14px 30px rgba(200, 255, 61, .14);
}

.hero-collage {
  box-shadow: 0 36px 90px rgba(14, 56, 142, .17);
}

.hero-collage h1 {
  font-weight: 840;
}

.hero-collage .hero-lead {
  color: rgba(255, 255, 255, .84);
}

.hero-collage .hero-revision-link {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.proof-strip-professional {
  position: relative;
  z-index: 5;
  margin-top: 22px;
  box-shadow: 0 22px 58px rgba(25, 56, 98, .09);
}

.proof-strip-professional > div {
  transition: background 220ms ease, transform 220ms ease;
}

.proof-strip-professional > div:hover {
  z-index: 1;
  background: #f5f8fd;
  transform: translateY(-3px);
}

.subject-ticker {
  box-shadow: 0 12px 30px rgba(7, 26, 51, .12);
}

.home-section {
  position: relative;
  isolation: isolate;
}

.home-section::before {
  position: absolute;
  z-index: -1;
  top: 34px;
  right: 0;
  color: rgba(7, 26, 51, .045);
  content: attr(data-section);
  font-size: 112px;
  font-variation-settings: "wght" 760;
  line-height: 1;
  pointer-events: none;
}

.home-section > * {
  position: relative;
  z-index: 1;
}

.home-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.home-section .eyebrow::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.about-section-polished .about-year-stamp {
  box-shadow: 0 32px 72px rgba(23, 87, 232, .24);
}

.about-section-polished .about-year-stamp b {
  font-family: var(--font-sans);
  font-variation-settings: "wght" 280;
}

.about-section-polished .about-ledger article {
  position: relative;
  overflow: hidden;
  transition: color 220ms ease, transform 260ms cubic-bezier(.2, .7, .2, 1);
}

.about-section-polished .about-ledger article::before {
  position: absolute;
  top: 0;
  right: 34px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric), var(--coral), transparent 72%);
  content: "";
  opacity: 0;
  transform: scaleX(.2);
  transform-origin: left;
  transition: opacity 220ms ease, transform 320ms ease;
}

.about-section-polished .about-ledger article:hover {
  color: var(--electric);
  transform: translateY(-4px);
}

.about-section-polished .about-ledger article:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.path-section-polished {
  overflow: hidden;
}

.path-section-polished::after {
  position: absolute;
  z-index: 0;
  right: -180px;
  bottom: -250px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(23, 87, 232, .11);
  border-radius: 50%;
  box-shadow: 0 0 0 76px rgba(23, 87, 232, .025), 0 0 0 152px rgba(23, 87, 232, .018);
  content: "";
  pointer-events: none;
}

.path-section-polished .path-card {
  box-shadow: 0 18px 50px rgba(25, 56, 98, .075);
  transition: border-color 260ms ease, box-shadow 320ms ease, transform 320ms cubic-bezier(.2, .7, .2, 1);
}

.path-section-polished .path-card:hover {
  border-color: rgba(23, 87, 232, .25);
  box-shadow: 0 30px 76px rgba(25, 56, 98, .14);
  transform: translateY(-6px);
}

.path-section-polished .path-card-accent {
  border-top: 5px solid var(--coral) !important;
}

.catalog-preview-polished {
  padding-bottom: 140px;
}

.home-material-card {
  position: relative;
}

.home-material-card::before {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--electric), var(--coral), var(--acid));
  content: "";
  opacity: 0;
  transform: scaleX(.25);
  transform-origin: left;
  transition: opacity 220ms ease, transform 420ms cubic-bezier(.2, .7, .2, 1);
}

.home-material-card:hover::before,
.home-material-card:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.home-material-card:nth-child(2) {
  transform: translateY(38px);
}

.home-material-card:nth-child(2):hover {
  transform: translateY(31px);
}

.home-material-meta span,
.home-material-copy > small,
.review-index,
.reviews-note,
.eyebrow {
  font-variation-settings: "wght" 760;
}

.services-section-polished .services-list {
  position: relative;
  border-top: 1px solid var(--line-strong);
}

.services-section-polished .services-list article,
.services-section-polished .services-list article:nth-child(even) {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.services-section-polished .services-list article::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--electric);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 300ms cubic-bezier(.2, .7, .2, 1);
}

.services-section-polished .services-list article:nth-child(3n)::before {
  background: var(--coral);
}

.services-section-polished .services-list article:hover::before {
  transform: scaleY(1);
}

.services-section-polished .services-list article:hover {
  padding-left: 46px;
  background: #f5f8fd;
  box-shadow: none;
}

.process-section-polished {
  overflow: hidden;
}

.process-section-polished::before {
  z-index: 0;
  color: rgba(255, 255, 255, .045);
}

.process-section-polished::after {
  position: absolute;
  z-index: 0;
  top: -150px;
  right: -180px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 50%;
  box-shadow: 0 0 0 86px rgba(255, 255, 255, .018), 0 0 0 172px rgba(255, 255, 255, .012);
  content: "";
  pointer-events: none;
}

.process-section-polished .process-line {
  position: relative;
}

.process-section-polished .process-line::before {
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 18px;
  width: 1px;
  background: linear-gradient(var(--acid), rgba(255, 255, 255, .18) 28%, rgba(255, 255, 255, .18) 72%, var(--coral));
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s .22s cubic-bezier(.2, .7, .2, 1);
}

.process-section-polished.is-visible .process-line::before {
  transform: scaleY(1);
}

.process-section-polished .process-line li {
  position: relative;
  z-index: 1;
  transition: background 220ms ease, padding-left 260ms ease;
}

.process-section-polished .process-line li:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .055), transparent);
}

.process-section-polished .process-line li > span {
  box-shadow: 0 0 0 8px var(--ink);
}

.reviews-section-polished {
  overflow: hidden;
}

.reviews-section-polished .review-card-featured {
  position: relative;
  overflow: hidden;
}

.reviews-section-polished .review-card-featured::before {
  position: absolute;
  top: -32px;
  right: 24px;
  display: block;
  color: rgba(255, 255, 255, .14);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 210px;
  line-height: 1;
}

.reviews-section-polished .review-card-featured blockquote {
  position: relative;
  z-index: 1;
  font-weight: 560;
}

.reviews-section-polished .review-stack .review-card {
  transition: border-color 260ms ease, box-shadow 300ms ease, transform 300ms cubic-bezier(.2, .7, .2, 1);
}

.reviews-section-polished .review-stack .review-card:last-child {
  margin-left: 34px;
}

.reviews-section-polished .review-stack .review-card:hover {
  border-color: rgba(23, 87, 232, .24);
  box-shadow: 0 24px 60px rgba(25, 56, 98, .11);
  transform: translateX(-5px);
}

.faq-section-polished .faq-list {
  counter-reset: faq;
}

.faq-section-polished .faq-list details {
  counter-increment: faq;
}

.faq-section-polished .faq-list summary {
  padding-left: 54px;
  transition: color 180ms ease, padding-left 220ms ease;
}

.faq-section-polished .faq-list summary::before {
  position: absolute;
  top: 50%;
  left: 0;
  color: var(--electric);
  content: "0" counter(faq);
  font-size: 11px;
  font-variation-settings: "wght" 820;
  transform: translateY(-50%);
}

.faq-section-polished .faq-list details[open] summary,
.faq-section-polished .faq-list summary:hover {
  color: var(--electric);
  padding-left: 60px;
}

.request-banner-polished {
  background:
    linear-gradient(115deg, rgba(7, 26, 51, .48), transparent 52%),
    radial-gradient(circle at 87% 18%, rgba(200, 255, 61, .2), transparent 20rem),
    var(--electric);
  box-shadow: 0 34px 88px rgba(23, 87, 232, .25);
}

.request-banner-polished::before {
  z-index: 0;
  top: 26px;
  right: 34px;
  color: rgba(255, 255, 255, .1);
  font-size: 94px;
}

.request-banner-polished .request-banner-art {
  box-shadow: 20px 24px 0 rgba(7, 26, 51, .12);
}

[data-reveal] {
  transition: opacity 820ms cubic-bezier(.2, .7, .2, 1), transform 820ms cubic-bezier(.2, .7, .2, 1);
}

@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
  .hero-collage .hero-eyebrow {
    animation: kursovik-fade-up 620ms 80ms both cubic-bezier(.2, .7, .2, 1);
  }

  .hero-collage .title-tape:first-child {
    animation: kursovik-tape-one 760ms 180ms both cubic-bezier(.16, .8, .2, 1);
  }

  .hero-collage .title-tape-shift {
    animation: kursovik-tape-two 760ms 300ms both cubic-bezier(.16, .8, .2, 1);
  }

  .hero-collage h1 em {
    animation: kursovik-fade-up 650ms 430ms both cubic-bezier(.2, .7, .2, 1);
  }

  .hero-collage .hero-lead {
    animation: kursovik-fade-up 650ms 530ms both cubic-bezier(.2, .7, .2, 1);
  }

  .hero-collage .hero-actions {
    animation: kursovik-fade-up 650ms 620ms both cubic-bezier(.2, .7, .2, 1);
  }

  .hero-collage .hero-revision-link {
    animation: kursovik-fade-up 650ms 720ms both cubic-bezier(.2, .7, .2, 1);
  }

  .hero-collage-art {
    animation: kursovik-art-drift 11s 1s ease-in-out infinite;
  }

  .hero-collage::after {
    animation: kursovik-orbit-breathe 12s ease-in-out infinite;
  }

  .hero-orbit-one {
    animation: kursovik-spin 18s linear infinite;
  }

  .hero-orbit-two {
    animation: kursovik-spin 24s linear infinite reverse;
  }

  .request-banner-art {
    animation: kursovik-document-float 7s ease-in-out infinite;
  }
}

@keyframes kursovik-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes kursovik-tape-one {
  from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateY(18px) rotate(-.7deg); }
  to { opacity: 1; clip-path: inset(0); transform: translateY(0) rotate(-.7deg); }
}

@keyframes kursovik-tape-two {
  from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateY(18px) rotate(.45deg); }
  to { opacity: 1; clip-path: inset(0); transform: translateY(0) rotate(.45deg); }
}

@keyframes kursovik-art-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-8px, -7px, 0); }
}

@keyframes kursovik-orbit-breathe {
  0%, 100% { opacity: .76; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.035); }
}

@keyframes kursovik-spin {
  to { transform: rotate(360deg); }
}

@keyframes kursovik-document-float {
  0%, 100% { transform: translateY(-50%) rotate(-6deg); }
  50% { transform: translateY(calc(-50% - 8px)) rotate(-4deg); }
}

@media (max-width: 1080px) {
  .home-material-card:nth-child(2) {
    transform: none;
  }

  .home-material-card:nth-child(2):hover {
    transform: translateY(-5px);
  }

  .reviews-section-polished .review-stack .review-card:last-child {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .home-section::before {
    display: none;
  }

  .about-section-polished,
  .path-section-polished,
  .catalog-preview-polished,
  .services-section-polished,
  .process-section-polished,
  .reviews-section-polished,
  .faq-section-polished {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .about-section-polished .about-year-stamp {
    min-height: 150px;
  }

  .about-section-polished .about-ledger article:hover,
  .path-section-polished .path-card:hover {
    transform: none;
  }

  .path-grid-editorial .path-card-primary .path-number {
    width: 40px;
    max-width: 40px;
    height: 40px;
  }

  .catalog-preview-polished {
    padding-bottom: 72px;
  }

  .material-grid-home {
    display: flex;
    width: calc(100% + 14px);
    max-width: none;
    margin-right: -14px;
    padding: 2px 14px 18px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .material-grid-home::-webkit-scrollbar,
  .reviews-section-polished .review-stack::-webkit-scrollbar {
    display: none;
  }

  .home-material-card,
  .home-material-card:last-child:nth-child(odd) {
    flex: 0 0 clamp(310px, 72vw, 520px);
    scroll-snap-align: start;
  }

  .services-section-polished .services-list article,
  .services-section-polished .services-list article:nth-child(even) {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
    padding: 22px 0;
    column-gap: 12px;
  }

  .services-section-polished .services-list article p {
    grid-column: 2;
  }

  .services-section-polished .services-list article:hover {
    padding-left: 0;
  }

  .process-section-polished .process-line li {
    min-height: 118px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .process-section-polished {
    grid-template-rows: auto auto;
    row-gap: 54px;
  }

  .process-section-polished .process-heading {
    grid-row: 1;
    position: static;
  }

  .process-section-polished .process-line {
    grid-row: 2;
  }

  .process-section-polished .process-line li:hover {
    padding-left: 0;
  }

  .request-banner-polished {
    padding-top: 190px;
  }
}

@media (max-width: 520px) {
  .section-heading h2,
  .process-heading h2,
  .request-banner-polished h2 {
    font-size: 36px;
  }

  .home-material-card,
  .home-material-card:last-child:nth-child(odd) {
    flex-basis: min(86vw, 350px);
  }

  .home-material-media,
  .home-material-card:last-child:nth-child(odd) .home-material-media {
    aspect-ratio: 1.42;
  }

  .reviews-section-polished .review-card-featured {
    min-height: 510px;
  }

  .reviews-section-polished .review-stack {
    display: flex;
    width: calc(100% + 14px);
    margin-right: -14px;
    padding: 0 14px 14px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .reviews-section-polished .review-stack .review-card,
  .reviews-section-polished .review-stack .review-card:first-child {
    flex: 0 0 min(84vw, 340px);
    min-height: 410px;
    scroll-snap-align: start;
  }

  .faq-section-polished .faq-list summary {
    padding-left: 42px;
    font-size: 18px;
  }

  .faq-section-polished .faq-list details[open] summary,
  .faq-section-polished .faq-list summary:hover {
    padding-left: 46px;
  }

  .request-banner-polished {
    padding-top: 174px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-collage-art,
  .hero-collage::after,
  .hero-orbit-one,
  .hero-orbit-two,
  .request-banner-art {
    animation: none;
  }
}

/* Kursovik v74: natural hero typography */
.hero-collage .hero-title-line {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-collage .hero-title-line-second {
  margin-top: .04em;
}

.hero-collage .hero-title-focus {
  position: relative;
  display: inline-block;
  color: var(--ink);
  isolation: isolate;
}

.hero-collage .hero-title-focus::after {
  position: absolute;
  z-index: -1;
  right: -.02em;
  bottom: -.035em;
  left: .02em;
  height: .075em;
  min-height: 4px;
  background: var(--electric);
  border-radius: 999px;
  content: "";
  transform: rotate(-1.2deg);
  transform-origin: left center;
}

.hero-collage h1 em {
  color: var(--ink);
}

.hero-collage h1 em > span {
  color: var(--electric);
}

@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
  .hero-collage .hero-title-line:first-child {
    animation: kursovik-title-line-in 700ms 170ms both cubic-bezier(.16, .8, .2, 1);
  }

  .hero-collage .hero-title-line-second {
    animation: kursovik-title-line-in 700ms 270ms both cubic-bezier(.16, .8, .2, 1);
  }

  .hero-collage .hero-title-focus::after {
    animation: kursovik-title-rule-in 620ms 760ms both cubic-bezier(.2, .7, .2, 1);
  }
}

@keyframes kursovik-title-line-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes kursovik-title-rule-in {
  from { opacity: 0; transform: scaleX(0) rotate(-1.2deg); }
  to { opacity: 1; transform: scaleX(1) rotate(-1.2deg); }
}

@media (max-width: 520px) {
  .hero-collage .hero-title-line {
    width: auto;
  }

  .hero-collage .hero-title-focus::after {
    min-height: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-collage .hero-title-line,
  .hero-collage .hero-title-focus::after {
    animation: none;
  }
}

/* Kursovik product proof and request flow, v60 */
.catalog-confidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--content), calc(100% - 48px));
  margin: 18px auto 0;
  background: #fff;
  border: 1px solid rgba(7, 26, 51, .11);
  box-shadow: 0 20px 54px rgba(25, 56, 98, .07);
}

.catalog-confidence > div {
  position: relative;
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 22px 26px 22px 68px;
  border-right: 1px solid var(--line);
  gap: 3px;
}

.catalog-confidence > div:last-child {
  border-right: 0;
}

.catalog-confidence span {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--electric);
  font-size: 10px;
  font-variation-settings: "wght" 820;
}

.catalog-confidence b {
  font-size: 17px;
  line-height: 1.25;
}

.catalog-confidence small {
  color: var(--muted);
  font-size: 12px;
}

.material-blueprint {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  min-height: 540px;
  margin-top: 32px;
  padding: 46px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 48px 48px,
    radial-gradient(circle at 82% 22%, rgba(23, 87, 232, .42), transparent 23rem),
    var(--ink);
  border-radius: 8px;
  gap: 30px;
}

.material-blueprint::after {
  position: absolute;
  right: -180px;
  bottom: -270px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(255, 255, 255, .02), 0 0 0 136px rgba(255, 255, 255, .014);
  content: "";
  pointer-events: none;
}

.material-blueprint-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.material-blueprint-copy .eyebrow {
  color: var(--acid);
}

.material-blueprint-copy h2 {
  margin-top: 18px;
  font-size: 36px;
  font-variation-settings: "wght" 780;
  line-height: 1.04;
}

.material-blueprint-copy > p {
  margin-top: 20px;
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  line-height: 1.7;
}

.material-blueprint-legend {
  display: grid;
  margin-top: 32px;
  gap: 11px;
}

.material-blueprint-legend span {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  gap: 10px;
}

.material-blueprint-legend i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 255, 61, .1);
}

.material-blueprint-pages {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  min-width: 0;
  min-height: 440px;
}

.blueprint-page {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 355px;
  padding: 26px 22px;
  flex-direction: column;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .58);
  box-shadow: 0 26px 54px rgba(0, 0, 0, .24);
}

.blueprint-page::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 26px;
  height: 26px;
  background: var(--acid);
  border-radius: 50%;
  content: "";
}

.blueprint-page > span {
  color: var(--electric);
  font-size: 9px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.blueprint-page > b {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.1;
}

.blueprint-page > small {
  margin-top: auto;
  padding-right: 34px;
  color: var(--muted);
  font-size: 9px;
}

.blueprint-page ol {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: blueprint;
  gap: 12px;
}

.blueprint-page ol li {
  display: grid;
  grid-template-columns: 20px 1fr;
  color: var(--ink-soft);
  font-size: 10px;
  counter-increment: blueprint;
  gap: 8px;
}

.blueprint-page ol li::before {
  color: var(--electric);
  content: "0" counter(blueprint);
  font-size: 8px;
  font-variation-settings: "wght" 820;
}

.blueprint-page-main {
  z-index: 3;
  grid-column: 1 / 4;
  transform: rotate(-3deg) translateY(18px);
}

.blueprint-page-sources {
  z-index: 2;
  grid-column: 3 / 6;
  transform: rotate(2.5deg) translateY(-18px);
}

.blueprint-page-slides {
  z-index: 4;
  grid-column: 4 / 7;
  min-height: 270px;
  transform: rotate(-1deg) translateY(70px);
}

.blueprint-lines {
  display: grid;
  margin-top: 34px;
  gap: 13px;
}

.blueprint-lines i {
  height: 2px;
  background: rgba(23, 87, 232, .16);
}

.blueprint-lines i:nth-child(2) { width: 82%; }
.blueprint-lines i:nth-child(3) { width: 94%; }
.blueprint-lines i:nth-child(4) { width: 67%; }
.blueprint-lines i:nth-child(5) { width: 76%; }

.blueprint-slide {
  position: relative;
  min-height: 120px;
  margin-top: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--electric), #8cb6ff);
}

.blueprint-slide::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  content: "";
}

.blueprint-slide i {
  position: absolute;
  bottom: 18px;
  left: 18px;
  width: 52%;
  height: 2px;
  background: rgba(255, 255, 255, .72);
}

.blueprint-slide i:nth-child(2) { bottom: 32px; width: 34%; }
.blueprint-slide i:nth-child(3) { bottom: 46px; width: 44%; }

.file-field {
  display: grid;
  padding: 18px;
  background: #f5f8fd;
  border: 1px dashed rgba(23, 87, 232, .3);
  border-radius: 8px;
  gap: 14px;
  transition: background 180ms ease, border-color 180ms ease;
}

.file-field:hover,
.file-field:focus-within {
  background: #edf3ff;
  border-color: var(--electric);
}

.file-field > span {
  display: grid;
  gap: 3px;
}

.file-field b {
  font-size: 13px;
}

.file-field small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.file-field input[type="file"] {
  width: 100%;
  color: var(--ink-soft);
  font-size: 11px;
}

.file-field input[type="file"]::file-selector-button {
  min-height: 40px;
  margin-right: 12px;
  padding: 0 15px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-variation-settings: "wght" 760;
  cursor: pointer;
}

.success-message {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.confirmation-card {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

@media (prefers-reduced-motion: no-preference) and (min-width: 901px) {
  .material-blueprint:hover .blueprint-page-main {
    transform: rotate(-4deg) translate(-8px, 12px);
  }

  .material-blueprint:hover .blueprint-page-sources {
    transform: rotate(3.5deg) translate(3px, -24px);
  }

  .material-blueprint:hover .blueprint-page-slides {
    transform: rotate(-1.5deg) translate(9px, 64px);
  }

  .blueprint-page {
    transition: transform 520ms cubic-bezier(.2, .7, .2, 1);
  }
}

@media (max-width: 900px) {
  .catalog-confidence {
    width: calc(100% - 28px);
  }

  .material-blueprint {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px;
  }

  .material-blueprint-copy {
    max-width: 620px;
  }

  .material-blueprint-pages {
    min-height: 410px;
  }
}

@media (max-width: 520px) {
  .catalog-confidence {
    display: flex;
    padding-right: 14px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .catalog-confidence::-webkit-scrollbar {
    display: none;
  }

  .catalog-confidence > div {
    min-height: 104px;
    flex: 0 0 82%;
    border-right: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .material-blueprint {
    margin-top: 20px;
    padding: 28px 22px 22px;
  }

  .material-blueprint-copy h2 {
    font-size: 31px;
  }

  .material-blueprint-pages {
    display: flex;
    width: calc(100% + 22px);
    min-height: 0;
    margin-right: -22px;
    padding: 8px 22px 22px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .material-blueprint-pages::-webkit-scrollbar {
    display: none;
  }

  .blueprint-page,
  .blueprint-page-main,
  .blueprint-page-sources,
  .blueprint-page-slides {
    min-height: 350px;
    flex: 0 0 82%;
    scroll-snap-align: start;
    transform: none;
  }

  .blueprint-page-slides {
    min-height: 300px;
  }

  .file-field {
    padding: 16px;
  }

  .file-field input[type="file"]::file-selector-button {
    display: block;
    width: 100%;
    margin: 0 0 10px;
  }

  .project-details-grid > section,
  .project-details-grid > section + section {
    padding: 26px 22px;
  }

  .project-details-grid h2 {
    font-size: 29px;
  }
}

/* Kursovik editorial art direction, v62 */
.home-section::before {
  display: none;
}

.hero-collage,
.request-banner-polished,
.path-section-polished .path-card,
.home-material-card,
.review-card {
  border-radius: 8px;
}

.hero-collage .button,
.request-banner-polished .button,
.process-heading > a {
  min-height: 58px;
  padding-inline: 30px;
  border-radius: 6px;
}

.hero-collage .hero-revision-link {
  border-radius: 4px;
}

.proof-strip-professional {
  border-radius: 4px;
}

.services-section-polished {
  padding-top: 112px;
  padding-bottom: 112px;
  background:
    linear-gradient(90deg, rgba(23, 87, 232, .035) 1px, transparent 1px) 0 0 / 64px 64px,
    var(--paper);
}

.services-composition {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  margin-top: 64px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(21, 54, 99, .09);
}

.services-visual {
  position: relative;
  min-width: 0;
  min-height: 730px;
  margin: 0;
  overflow: hidden;
  background: var(--electric);
}

.services-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 51, .02) 34%, rgba(7, 26, 51, .86) 100%),
    linear-gradient(90deg, rgba(23, 87, 232, .34), transparent 62%);
  content: "";
  pointer-events: none;
}

.services-visual::after {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: -82px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, .05), 0 0 0 96px rgba(255, 255, 255, .025);
  content: "";
}

.services-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.03);
  transform: scale(1.015);
  transition: transform 900ms cubic-bezier(.2, .7, .2, 1);
}

.services-visual-code {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 28px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--acid);
  font-size: 11px;
  font-variation-settings: "wght" 820;
}

.services-visual figcaption {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 42px;
  left: 38px;
  display: grid;
  color: #fff;
  gap: 12px;
}

.services-visual figcaption small {
  color: var(--acid);
  font-size: 11px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.services-visual figcaption b {
  max-width: 520px;
  font-size: 34px;
  font-variation-settings: "wght" 760;
  line-height: 1.08;
}

.services-visual figcaption span {
  max-width: 430px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.6;
}

.services-section-polished .services-list {
  display: grid;
  align-content: stretch;
  border: 0;
  gap: 0;
}

.services-section-polished .services-list article,
.services-section-polished .services-list article:nth-child(even) {
  display: grid;
  grid-template-columns: 50px minmax(170px, .72fr) minmax(0, 1fr);
  min-height: 121px;
  align-items: center;
  padding: 24px 28px;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  gap: 12px;
  transition: color 240ms ease, background 240ms ease, padding 260ms cubic-bezier(.2, .7, .2, 1);
}

.services-section-polished .services-list article:last-child {
  border-bottom: 0;
}

.services-section-polished .services-list article:nth-child(3) {
  color: #fff;
  background: var(--electric);
}

.services-section-polished .services-list article:nth-child(3) > span,
.services-section-polished .services-list article:nth-child(3) p {
  color: rgba(255, 255, 255, .74);
}

.services-section-polished .services-list article:nth-child(6) {
  color: #fff;
  background: var(--ink);
}

.services-section-polished .services-list article:nth-child(6) > span,
.services-section-polished .services-list article:nth-child(6) p {
  color: rgba(255, 255, 255, .68);
}

.services-section-polished .services-list article::before {
  display: none;
}

.services-section-polished .services-list article > span {
  align-self: start;
  padding-top: 5px;
  color: var(--electric);
  font-size: 10px;
  font-variation-settings: "wght" 820;
}

.services-section-polished .services-list h3 {
  font-size: 23px;
  line-height: 1.12;
}

.services-section-polished .services-list p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.faq-section-polished .faq-list details[open] {
  background: linear-gradient(90deg, rgba(23, 87, 232, .055), transparent 78%);
}

@media (prefers-reduced-motion: no-preference) and (min-width: 901px) {
  .services-composition:hover .services-visual img {
    transform: scale(1.045);
  }

  .services-section-polished .services-list article:hover {
    padding-right: 22px;
    padding-left: 34px;
    background: #eef4ff;
  }

  .services-section-polished .services-list article:nth-child(3):hover {
    background: #0d4bd8;
  }

  .services-section-polished .services-list article:nth-child(6):hover {
    background: #0b2342;
  }
}

@media (min-width: 901px) {
  .site-header .primary-nav {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    gap: 28px;
  }

  .site-header .primary-nav > a:not(.nav-mobile-cta) {
    min-height: 46px;
    padding: 0;
    font-size: 13px;
  }

  .site-header .header-cta {
    min-width: 184px;
    min-height: 52px;
    border-radius: 6px;
  }
}

@media (max-width: 1080px) {
  .services-composition {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  }

  .services-section-polished .services-list article,
  .services-section-polished .services-list article:nth-child(even) {
    grid-template-columns: 38px minmax(150px, .76fr) minmax(0, 1fr);
    padding-inline: 22px;
  }

  .services-section-polished .services-list h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero-collage .button,
  .request-banner-polished .button {
    min-height: 56px;
  }

  .services-section-polished {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .services-composition {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .services-visual {
    min-height: 390px;
  }

  .services-visual figcaption {
    right: 26px;
    bottom: 28px;
    left: 26px;
  }

  .services-visual figcaption b {
    max-width: 580px;
    font-size: 29px;
  }

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

  .services-section-polished .services-list article,
  .services-section-polished .services-list article:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 205px;
    align-content: start;
    padding: 24px;
    border-right: 1px solid var(--line);
    gap: 14px;
  }

  .services-section-polished .services-list article:nth-child(even) {
    border-right: 0;
  }

  .services-section-polished .services-list article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 430px) {
  .services-visual {
    min-height: 330px;
  }

  .services-visual::after {
    top: 22px;
    right: -120px;
  }

  .services-visual figcaption b {
    font-size: 25px;
  }

  .services-visual figcaption span {
    font-size: 12px;
  }

  .services-section-polished .services-list article,
  .services-section-polished .services-list article:nth-child(even) {
    min-height: 188px;
    padding: 20px 18px;
  }

  .services-section-polished .services-list h3 {
    font-size: 18px;
  }

  .services-section-polished .services-list p {
    font-size: 12px;
  }
}

/* Kursovik composition refinement, v63 */
@media (min-width: 901px) {
  .site-header .primary-nav > a:not(.nav-mobile-cta) {
    font-size: 14px;
  }

  .site-header .header-cta {
    font-size: 15px;
  }
}

.reviews-section-polished .reviews-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 30px 78px rgba(25, 56, 98, .09);
  gap: 0;
}

.reviews-section-polished .review-card-featured {
  min-height: 650px;
  border: 0;
  border-radius: 0;
}

.reviews-section-polished .review-stack {
  position: relative;
  display: grid;
  background: #fff;
  border-left: 1px solid var(--line-strong);
  gap: 0;
}

.reviews-section-polished .review-stack::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--acid);
  content: "";
}

.reviews-section-polished .review-stack .review-card,
.reviews-section-polished .review-stack .review-card:first-child,
.reviews-section-polished .review-stack .review-card:last-child {
  min-height: 325px;
  margin: 0;
  padding: 42px 38px 34px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transition: background 240ms ease, padding-left 280ms cubic-bezier(.2, .7, .2, 1);
}

.reviews-section-polished .review-stack .review-card:last-child {
  border-bottom: 0;
}

.reviews-section-polished .review-stack .review-card:hover {
  padding-left: 44px;
  background: linear-gradient(90deg, rgba(23, 87, 232, .055), transparent 82%);
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.reviews-section-polished .review-stack .review-card blockquote {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.67;
}

.request-banner-polished {
  grid-template-columns: 150px minmax(0, 1fr) 270px;
  min-height: 500px;
  align-items: center;
  padding: 70px 74px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 56px 56px,
    radial-gradient(circle at 78% 24%, rgba(23, 87, 232, .82), transparent 29rem),
    linear-gradient(128deg, #071a33 0%, #0a2d62 58%, #155eef 100%);
  gap: 44px;
}

.request-banner-polished::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--acid) 0 18%, rgba(200, 255, 61, .18) 18% 100%);
  content: "";
}

.request-banner-polished .request-banner-art {
  position: relative;
  z-index: 1;
  top: auto;
  left: auto;
  width: 138px;
  height: 184px;
  align-self: center;
  transform: rotate(-5deg);
}

.request-banner-polished > div:not(.request-banner-art),
.request-banner-polished .request-banner-actions {
  position: relative;
  z-index: 1;
}

.request-banner-polished h2 {
  max-width: 690px;
  font-size: clamp(42px, 4vw, 56px);
}

.request-banner-polished p {
  max-width: 680px;
}

.request-banner-polished .request-banner-actions {
  display: grid;
  width: 100%;
  align-content: center;
  gap: 10px;
}

.request-banner-polished .request-banner-actions .button {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1080px) and (min-width: 769px) {
  .reviews-section-polished .reviews-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  }

  .request-banner-polished {
    grid-template-columns: 110px minmax(0, 1fr) 220px;
    min-height: 450px;
    padding: 58px 46px;
    gap: 30px;
  }

  .request-banner-polished .request-banner-art {
    width: 108px;
    height: 152px;
  }
}

@media (max-width: 768px) {
  .reviews-section-polished .reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 14px;
  }

  .reviews-section-polished .review-card-featured {
    min-height: 520px;
    border: 1px solid rgba(7, 26, 51, .12);
    border-radius: 8px;
  }

  .reviews-section-polished .review-stack {
    display: flex;
    width: calc(100% + 14px);
    margin-right: -14px;
    padding: 0 14px 14px 0;
    overflow-x: auto;
    background: transparent;
    border: 0;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    gap: 12px;
  }

  .reviews-section-polished .review-stack::before {
    display: none;
  }

  .reviews-section-polished .review-stack .review-card,
  .reviews-section-polished .review-stack .review-card:first-child,
  .reviews-section-polished .review-stack .review-card:last-child {
    min-height: 390px;
    flex: 0 0 min(84vw, 340px);
    padding: 30px 26px;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    scroll-snap-align: start;
  }

  .reviews-section-polished .review-stack .review-card:first-child {
    border-top: 5px solid var(--acid);
  }

  .request-banner-polished {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 42px 30px 32px;
    gap: 30px;
  }

  .request-banner-polished .request-banner-art {
    width: 94px;
    height: 124px;
    margin-left: 8px;
    transform: rotate(-4deg);
  }

  .request-banner-polished h2 {
    font-size: clamp(35px, 8vw, 46px);
  }

  .request-banner-polished .request-banner-actions {
    gap: 9px;
  }
}

@media (max-width: 430px) {
  .reviews-section-polished .review-card-featured {
    min-height: 500px;
  }

  .request-banner-polished {
    padding: 36px 24px 26px;
    gap: 25px;
  }

  .request-banner-polished .request-banner-art {
    width: 78px;
    height: 104px;
  }

  .request-banner-polished .request-banner-art span {
    font-size: 40px;
  }

  .request-banner-polished h2 {
    font-size: 34px;
  }
}

/* Kursovik key-visual hero, v64 */
.hero-collage {
  min-height: 780px;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 48%, rgba(23, 87, 232, .2), transparent 27rem),
    radial-gradient(circle at 56% 96%, rgba(255, 255, 255, .92), transparent 31rem),
    linear-gradient(135deg, #f7faff 0%, #eaf2ff 54%, #dce9ff 100%);
  border: 1px solid rgba(23, 87, 232, .12);
  box-shadow: 0 38px 100px rgba(21, 54, 99, .14);
}

.hero-collage::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(23, 87, 232, .055) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(23, 87, 232, .055) 1px, transparent 1px) 0 0 / 48px 48px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .72) 58%, transparent 100%);
}

.hero-collage::after {
  z-index: 0;
  top: auto;
  right: 32px;
  bottom: -.2em;
  width: auto;
  height: auto;
  color: rgba(23, 87, 232, .065);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  content: "ТЕМА ЕСТЬ";
  font-size: clamp(110px, 13vw, 205px);
  font-variation-settings: "wght" 850;
  line-height: .8;
  animation: none;
}

.hero-collage .hero-copy {
  width: min(100%, 1110px);
  padding-top: 38px;
}

.hero-collage .hero-eyebrow {
  color: var(--electric);
}

.hero-collage .status-dot {
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(23, 87, 232, .08);
}

.hero-collage h1 {
  max-width: 1080px;
  margin-top: 22px;
  color: var(--ink);
}

.hero-collage .title-tape {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(23, 87, 232, .12);
  box-shadow: 10px 11px 0 rgba(23, 87, 232, .09);
}

.hero-collage h1 em {
  color: var(--electric);
  font-family: var(--font-sans);
  font-variation-settings: "wght" 790;
}

.hero-collage .hero-lead {
  max-width: 720px;
  color: var(--ink-soft);
}

.hero-collage .button-primary {
  color: #fff;
  background: var(--electric);
  border-color: var(--electric);
  box-shadow: 0 18px 42px rgba(23, 87, 232, .2);
}

.hero-collage .button-primary:hover,
.hero-collage .button-primary:focus-visible {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.hero-collage .button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border-color: rgba(7, 26, 51, .14);
  box-shadow: 0 14px 34px rgba(25, 56, 98, .08);
}

.hero-collage .button-secondary:hover,
.hero-collage .button-secondary:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.hero-collage .hero-revision-link {
  color: var(--ink);
  background: rgba(255, 255, 255, .64);
  border-color: rgba(23, 87, 232, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .74);
}

.hero-collage .hero-revision-link:hover,
.hero-collage .hero-revision-link:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.hero-collage-art {
  z-index: 2;
  right: -86px;
  bottom: -142px;
  width: 78%;
  height: 650px;
}

.hero-collage-image,
.hero-collage-image.hero-key-visual {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.hero-collage-image::before,
.hero-collage-image::after {
  display: none;
}

.hero-collage-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 36px 38px rgba(7, 26, 51, .2));
  transform: none;
}

.hero-collage:hover .hero-collage-image img {
  transform: translate3d(-5px, -5px, 0) scale(1.012);
}

.hero-paper,
.hero-orbit {
  display: none;
}

.hero-sticker-year {
  top: 118px;
  right: 132px;
  color: var(--electric);
  background: #fff;
  border-color: rgba(23, 87, 232, .14);
  box-shadow: 0 16px 40px rgba(7, 26, 51, .12);
}

.hero-sticker-route {
  top: auto;
  right: 84px;
  bottom: 138px;
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 16px 34px rgba(7, 26, 51, .13);
}

.hero-sticker-format {
  bottom: 166px;
  left: 172px;
}

.hero-spark-one {
  top: 234px;
  left: 160px;
}

.hero-spark-two {
  display: none;
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero-collage {
    min-height: 650px;
  }

  .hero-collage .hero-copy {
    padding-top: 4px;
  }

  .hero-collage-art {
    right: -80px;
    bottom: -188px;
    width: 70%;
    height: 560px;
  }

  .hero-sticker-year {
    top: 92px;
  }

  .hero-sticker-route {
    bottom: 176px;
  }
}

@media (max-width: 980px) and (min-width: 769px) {
  .hero-collage-art {
    right: -112px;
    bottom: -152px;
    width: 88%;
    height: 600px;
  }
}

@media (max-width: 768px) {
  .hero-collage {
    background:
      radial-gradient(circle at 68% 70%, rgba(23, 87, 232, .17), transparent 20rem),
      linear-gradient(145deg, #f8fbff 0%, #e6efff 100%);
  }

  .hero-collage::after {
    display: none;
  }

  .hero-collage .hero-copy {
    padding-top: 10px;
  }

  .hero-collage .title-tape {
    box-shadow: 5px 6px 0 rgba(23, 87, 232, .09);
  }

  .hero-collage-art {
    right: auto;
    bottom: auto;
    width: calc(100% + 28px);
    height: 340px;
    margin-top: 12px;
  }

  .hero-collage-image,
  .hero-collage-image.hero-key-visual {
    right: -22px;
    bottom: -26px;
    width: 112%;
    height: 112%;
  }

  .hero-sticker-year,
  .hero-sticker-route,
  .hero-spark-one {
    display: none;
  }

  .hero-sticker-format {
    right: auto;
    bottom: 13px;
    left: 15px;
  }
}

@media (max-width: 520px) {
  .hero-collage {
    border-radius: 8px;
  }

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

  .hero-collage .hero-lead {
    color: var(--ink-soft);
  }

  .hero-collage-art {
    min-height: 0;
    height: 280px;
    margin-top: 8px;
  }

  .hero-collage-image,
  .hero-collage-image.hero-key-visual {
    right: -34px;
    bottom: -20px;
    width: 118%;
    height: 118%;
  }
}

@media (max-width: 390px) {
  .hero-collage h1 {
    font-size: 33px;
  }

  .hero-collage-art {
    height: 255px;
  }
}

/* Kursovik continuous editorial narrative, v65 */
.proof-route {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 270px 82px minmax(0, 1fr);
  grid-template-rows: repeat(3, minmax(82px, 1fr));
  width: min(1460px, calc(100% - 48px));
  margin-top: -40px;
  padding: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(7, 26, 51, .2), inset 0 1px 0 #fff;
  backdrop-filter: blur(18px);
  column-gap: 0;
  row-gap: 8px;
}

.proof-route .proof-route-intro,
.proof-route .proof-route-intro:nth-child(2),
.proof-route .proof-route-intro:nth-child(4) {
  position: relative;
  display: flex;
  min-height: 278px;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 26px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(23, 87, 232, .34), transparent 10rem),
    var(--ink);
  border: 0;
  flex-direction: column;
  border-radius: 10px;
  grid-column: 1;
  grid-row: 1 / -1;
  gap: 7px;
}

.proof-route .proof-route-intro::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 48px;
  height: 4px;
  background: var(--acid);
  content: "";
}

.proof-route .proof-route-intro > span {
  color: var(--acid);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-route .proof-route-intro > b {
  max-width: 150px;
  color: #fff;
  font-size: 23px;
  font-weight: 850;
  line-height: 1.05;
}

.proof-route > a {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 82px;
  align-items: center;
  padding: 13px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(7, 26, 51, .08);
  border-radius: 10px;
  grid-column: 3;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 14px;
  transition: color 220ms ease, background 260ms ease, border-color 260ms ease, box-shadow 280ms ease, transform 280ms cubic-bezier(.2, .7, .2, 1);
}

.proof-route > a::after {
  position: absolute;
  right: 18px;
  bottom: 7px;
  left: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--electric), var(--acid));
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1);
}

.proof-route > a:hover,
.proof-route > a:focus-visible {
  color: var(--electric);
  background: #fff;
  border-color: rgba(23, 87, 232, .28);
  box-shadow: 0 18px 36px rgba(23, 87, 232, .12);
  transform: translateX(4px);
}

.proof-route > a:hover::after,
.proof-route > a:focus-visible::after {
  transform: scaleX(1);
}

.proof-route > a > span:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  align-self: center;
  padding: 0;
  color: #fff;
  background: var(--electric);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(23, 87, 232, .2);
  font-size: 13px;
  font-weight: 900;
}

.proof-route > a:nth-of-type(2) > span:first-child {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 8px 20px rgba(200, 255, 61, .22);
}

.proof-route > a:nth-of-type(3) > span:first-child {
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(7, 26, 51, .2);
}

.proof-route > a > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.proof-route > a b {
  color: var(--ink);
  font-size: 19px;
  font-weight: 820;
  line-height: 1.12;
  text-transform: none;
}

.proof-route > a small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.proof-route > a > i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--electric);
  color: #fff;
  background: var(--electric);
  border: 0;
  border-radius: 50%;
  font-size: 14px;
  font-style: normal;
}

.proof-route > a:nth-of-type(1) {
  grid-row: 1;
}

.proof-route > a:nth-of-type(2) {
  grid-row: 2;
}

.proof-route > a:nth-of-type(3) {
  grid-row: 3;
}

.proof-route-junction {
  position: relative;
  display: block;
  min-width: 0;
  grid-column: 2;
  grid-row: 1 / -1;
}

.proof-route-junction::before {
  position: absolute;
  top: 50%;
  right: 50%;
  left: 0;
  height: 2px;
  background: var(--electric);
  content: "";
  transform: translateY(-50%);
}

.proof-route-junction::after {
  position: absolute;
  top: 16.666%;
  bottom: 16.666%;
  left: 50%;
  width: 2px;
  background: linear-gradient(var(--electric), var(--acid) 50%, var(--ink));
  content: "";
  transform: translateX(-50%);
}

.proof-route-junction > i {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 50%;
  height: 2px;
  background: var(--electric);
  transform: translateY(-50%);
}

.proof-route-junction > i:nth-child(1) {
  top: 16.666%;
}

.proof-route-junction > i:nth-child(2) {
  top: 50%;
  background: var(--acid);
}

.proof-route-junction > i:nth-child(3) {
  top: 83.333%;
  background: var(--ink);
}

.proof-route-junction > b {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--acid);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(23, 87, 232, .22), 0 7px 18px rgba(7, 26, 51, .18);
  transform: translate(-50%, -50%);
}

.subject-ticker {
  height: 68px;
  margin-top: 24px;
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 46px rgba(7, 26, 51, .14);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.subject-ticker > .subject-ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  height: 100%;
  align-items: center;
  padding: 0;
  animation: kursovik-ticker 34s linear infinite;
}

.subject-ticker-group {
  display: flex;
  height: 100%;
  align-items: center;
  padding-left: 38px;
  flex-shrink: 0;
  gap: 28px;
}

.subject-ticker-group span {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.subject-ticker-group i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--acid);
  border-radius: 50%;
}

@keyframes kursovik-ticker {
  to { transform: translateX(-50%); }
}

.about-section-polished {
  padding-top: 96px;
  background:
    radial-gradient(circle at 12% 78%, rgba(255, 111, 86, .055), transparent 24rem),
    #fff;
}

.catalog-preview-polished {
  width: 100%;
  max-width: none;
  padding: 116px max(24px, calc((100% - var(--content)) / 2)) 132px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0 / 64px 64px,
    var(--electric);
}

.catalog-preview-polished::before {
  position: absolute;
  z-index: 0;
  right: -34px;
  bottom: -34px;
  color: rgba(255, 255, 255, .075);
  content: "КАТАЛОГ";
  font-size: clamp(120px, 17vw, 260px);
  font-variation-settings: "wght" 860;
  line-height: .75;
  pointer-events: none;
}

.catalog-preview-polished .eyebrow {
  color: var(--acid);
}

.catalog-preview-polished .section-heading h2 {
  max-width: 820px;
  color: #fff;
}

.catalog-heading-actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 24px;
}

.catalog-live {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  color: #fff;
  background: rgba(7, 26, 51, .24);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
}

.catalog-live i {
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(200, 255, 61, .1);
}

.catalog-preview-polished .text-link {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .42);
}

.material-grid-home {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 760px;
  margin-top: 60px;
  gap: 18px;
}

.home-material-card,
.home-material-card:nth-child(2) {
  min-height: 0;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 28px 72px rgba(7, 26, 51, .21);
  transform: none;
}

.home-material-card:hover,
.home-material-card:nth-child(2):hover {
  border-color: transparent;
  box-shadow: 0 38px 90px rgba(7, 26, 51, .29);
  transform: translateY(-5px);
}

.home-material-card::before {
  background: linear-gradient(90deg, var(--acid), var(--coral));
}

.home-material-card-featured {
  grid-row: 1 / -1;
}

.home-material-card-featured .home-material-media {
  min-height: 430px;
  aspect-ratio: auto;
}

.home-material-card-featured .home-material-body {
  padding: 30px 34px 34px;
}

.home-material-card-featured .home-material-copy {
  max-width: 660px;
  margin-top: 28px;
}

.home-material-card-featured .home-material-copy h3 {
  max-width: 590px;
  font-size: 35px;
}

.home-material-card-featured .home-material-copy p {
  max-width: 620px;
  font-size: 14px;
}

.home-material-card-compact {
  display: grid;
  grid-template-columns: minmax(150px, .43fr) minmax(0, .57fr);
}

.home-material-card-compact:nth-child(2) {
  margin-left: 26px;
}

.home-material-card-compact:nth-child(3) {
  margin-right: 42px;
}

.home-material-card-compact:nth-child(3)::before {
  background: linear-gradient(90deg, var(--coral), var(--acid));
}

.home-material-card-compact .home-material-media {
  height: 100%;
  aspect-ratio: auto;
}

.home-material-card-compact .home-material-media > span {
  width: 38px;
  height: 38px;
}

.home-material-card-compact .home-material-media > i {
  width: 38px;
  height: 38px;
}

.home-material-card-compact .home-material-body {
  padding: 23px 24px 22px;
}

.home-material-card-compact .home-material-copy {
  margin-top: 20px;
}

.home-material-card-compact .home-material-copy h3 {
  margin-top: 7px;
  font-size: 23px;
}

.home-material-card-compact .home-material-copy p {
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-material-card-compact .home-material-footer {
  min-height: 50px;
  padding-top: 12px;
}

.home-material-card-compact .home-material-footer b {
  font-size: 22px;
}

.home-material-card-compact .home-material-footer a {
  width: 42px;
  min-height: 42px;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  color: transparent;
  border-radius: 50%;
  font-size: 0;
}

.home-material-card-compact .home-material-footer a span {
  color: #fff;
  font-size: 14px;
}

@media (max-width: 1080px) and (min-width: 769px) {
  .proof-route {
    grid-template-columns: 220px 62px minmax(0, 1fr);
    grid-template-rows: repeat(3, minmax(76px, 1fr));
    width: calc(100% - 32px);
  }

  .proof-route .proof-route-intro,
  .proof-route .proof-route-intro:nth-child(2),
  .proof-route .proof-route-intro:nth-child(4),
  .proof-route > a {
    min-height: 76px;
    padding-inline: 16px;
  }

  .proof-route .proof-route-intro {
    min-height: 260px;
  }

  .proof-route > a {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .proof-route > a > i {
    display: none;
  }

  .material-grid-home {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .home-material-card-featured {
    display: grid;
    min-height: 470px;
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: 1.05fr .95fr;
  }

  .home-material-card-featured .home-material-media {
    min-height: 470px;
  }

  .home-material-card-compact {
    display: flex;
    min-height: 560px;
    margin: 0 !important;
    flex-direction: column;
  }

  .home-material-card-compact .home-material-media {
    height: auto;
    aspect-ratio: 1.35;
  }
}

@media (max-width: 768px) {
  .proof-route {
    grid-template-columns: 1fr;
    grid-template-rows: auto repeat(3, auto);
    width: calc(100% - 20px);
    margin-top: -14px;
    padding: 7px;
    border-radius: 14px;
    gap: 7px;
    backdrop-filter: blur(10px);
  }

  .proof-route .proof-route-intro,
  .proof-route .proof-route-intro:nth-child(2),
  .proof-route .proof-route-intro:nth-child(4),
  .proof-route > a {
    min-height: 82px;
  }

  .proof-route .proof-route-intro {
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    flex-direction: row;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .proof-route .proof-route-intro > b {
    max-width: none;
    font-size: 20px;
  }

  .proof-route .proof-route-intro::after {
    right: 16px;
    bottom: 10px;
    width: 34px;
  }

  .proof-route > a {
    padding: 15px;
    border: 1px solid rgba(7, 26, 51, .08);
    border-radius: 9px;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-column: 1;
    grid-row: auto;
    gap: 10px;
  }

  .proof-route > a:nth-of-type(1),
  .proof-route > a:nth-of-type(2),
  .proof-route > a:nth-of-type(3) {
    grid-row: auto;
  }

  .proof-route > a:last-child {
    grid-column: 1;
    min-height: 84px;
    border: 1px solid rgba(7, 26, 51, .08);
  }

  .proof-route-junction {
    display: none;
  }

  .proof-route > a > i {
    display: none;
  }

  .proof-route > a b {
    font-size: 16px;
  }

  .proof-route > a small {
    font-size: 10px;
  }

  .proof-route > a > span:first-child {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .subject-ticker {
    height: 52px;
    margin-top: 16px;
  }

  .subject-ticker-group {
    padding-left: 24px;
    gap: 18px;
  }

  .subject-ticker-group span {
    font-size: 12px;
  }

  .subject-ticker-group i {
    width: 5px;
    height: 5px;
    flex-basis: 5px;
  }

  .about-section-polished {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about-section-polished .about-ledger article,
  .about-section-polished .about-ledger article + article {
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .catalog-preview-polished {
    padding: 68px 14px 74px;
  }

  .catalog-preview-polished::before {
    right: -12px;
    bottom: 4px;
    font-size: 82px;
  }

  .catalog-preview-polished .section-heading {
    display: grid;
    grid-template-columns: 1fr;
    padding-inline: 0;
    gap: 22px;
  }

  .catalog-preview-polished .section-heading h2 {
    color: #fff;
  }

  .catalog-heading-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
  }

  .catalog-live {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 9px;
  }

  .catalog-preview-polished .text-link {
    min-height: 30px;
    align-items: center;
  }

  .material-grid-home {
    display: flex;
    min-height: 0;
    margin-top: 38px;
  }

  .home-material-card,
  .home-material-card-featured,
  .home-material-card-compact,
  .home-material-card:last-child:nth-child(odd) {
    display: flex;
    min-height: 520px;
    margin: 0 !important;
    flex-direction: column;
  }

  .home-material-card-featured .home-material-media,
  .home-material-card-compact .home-material-media,
  .home-material-card:last-child:nth-child(odd) .home-material-media {
    min-height: 0;
    height: auto;
    aspect-ratio: 1.38;
  }

  .home-material-card-featured .home-material-body,
  .home-material-card-compact .home-material-body {
    padding: 23px;
  }

  .home-material-card-featured .home-material-copy,
  .home-material-card-compact .home-material-copy {
    margin-top: 22px;
  }

  .home-material-card-featured .home-material-copy h3,
  .home-material-card-compact .home-material-copy h3 {
    font-size: 24px;
  }

  .home-material-card-compact .home-material-copy p {
    display: block;
    overflow: visible;
  }

  .home-material-card-compact .home-material-footer a {
    width: auto;
    min-height: 42px;
    padding: 0 15px;
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
  }

  .services-section-polished,
  .process-section-polished,
  .reviews-section-polished,
  .faq-section-polished {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .process-section-polished .process-line li {
    min-height: 104px;
  }

  .reviews-section-polished .review-card-featured {
    min-height: 470px;
  }
}

@media (max-width: 430px) {
  .proof-route {
    margin-top: -8px;
  }

  .proof-route .proof-route-intro,
  .proof-route .proof-route-intro:nth-child(2),
  .proof-route .proof-route-intro:nth-child(4),
  .proof-route > a {
    min-height: 80px;
  }

  .proof-route .proof-route-intro {
    min-height: 72px;
  }

  .proof-route > a:last-child {
    min-height: 76px;
  }

  .catalog-preview-polished {
    padding-top: 60px;
  }

  .catalog-preview-polished .section-heading h2 {
    font-size: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .subject-ticker > .subject-ticker-track {
    animation: none;
  }
}

/* Kursovik v69: confident editorial navigation */
.site-header {
  --header-surface: rgba(255, 255, 255, .975);
  border-bottom: 1px solid rgba(7, 26, 51, .09);
  background: var(--header-surface);
  box-shadow: 0 12px 34px rgba(7, 26, 51, .045);
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-header::before {
  display: none;
}

.site-header .header-inner {
  grid-template-columns: minmax(270px, 1fr) auto minmax(200px, 1fr);
  width: min(1480px, calc(100% - 40px));
  min-height: 88px;
  gap: 34px;
}

.site-header .brand {
  width: max-content;
  gap: 13px;
}

.site-header .brand-mark,
.site-header .brand-mark svg {
  width: 50px;
  height: 50px;
}

.site-header .brand-mark {
  flex-basis: 50px;
  padding: 3px;
  background: #f5f8ff;
  border: 1px solid rgba(23, 87, 232, .12);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 #fff, 0 8px 20px rgba(23, 87, 232, .07);
}

.site-header .brand-sheet {
  fill: #fff;
  stroke-width: 1.75;
}

.site-header .brand-fold,
.site-header .brand-route {
  stroke-width: 1.75;
}

.site-header .brand-copy {
  gap: 3px;
}

.site-header .brand-copy strong {
  color: var(--ink);
  font-size: 26px;
  font-weight: 840;
  line-height: 1;
}

.site-header .brand-copy small {
  color: #718099;
  font-size: 10.5px;
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: .02em;
}

@media (min-width: 1101px) {
  .site-header .primary-nav {
    display: flex;
    justify-self: center;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    gap: clamp(24px, 2vw, 36px);
  }

  .site-header .primary-nav > a:not(.nav-mobile-cta) {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    padding: 0;
    color: #182b47;
    border-radius: 0;
    font-size: 16px;
    font-weight: 680;
    line-height: 1;
    white-space: nowrap;
    transition: color 180ms ease;
  }

  .site-header .primary-nav > a:not(.nav-mobile-cta)::after {
    right: 0;
    bottom: 7px;
    left: 0;
    height: 2px;
    background: var(--electric);
    border-radius: 999px;
  }

  .site-header .primary-nav > a:not(.nav-mobile-cta):hover,
  .site-header .primary-nav > a:not(.nav-mobile-cta):focus-visible {
    color: var(--electric);
    background: transparent;
    box-shadow: none;
  }

  .site-header .nav-catalog-link {
    gap: 9px;
  }
}

.site-header .nav-catalog-symbol {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--acid);
  border: 1px solid rgba(7, 26, 51, .22);
  border-radius: 4px;
  box-shadow: -4px 3px 0 #dce7ff;
  transform: rotate(9deg);
}

.site-header .nav-catalog-symbol::after {
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(7, 26, 51, .22);
  border-radius: 2px;
  content: "";
}

.site-header .header-cta,
.site-header .nav-mobile-cta {
  min-height: 56px;
  padding: 0 30px;
  color: #fff;
  background: var(--electric);
  border: 1px solid var(--electric);
  border-radius: 999px;
  box-shadow: 0 15px 34px rgba(23, 87, 232, .2);
  font-size: 16px;
  font-weight: 810;
  white-space: nowrap;
}

.site-header .header-cta {
  justify-self: end;
  min-width: 194px;
}

.site-header .header-cta:hover,
.site-header .header-cta:focus-visible,
.site-header .nav-mobile-cta:hover,
.site-header .nav-mobile-cta:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 16px 34px rgba(7, 26, 51, .2);
  transform: translateY(-1px);
}

@media (max-width: 1260px) and (min-width: 1101px) {
  .site-header .header-inner {
    grid-template-columns: auto 1fr auto;
    width: min(100% - 40px, 1420px);
    gap: 24px;
  }

  .site-header .primary-nav {
    gap: 20px;
  }

  .site-header .primary-nav > a:not(.nav-mobile-cta) {
    font-size: 14.5px;
  }

  .site-header .header-cta {
    min-width: 176px;
    padding-inline: 23px;
    font-size: 14.5px;
  }
}

@media (max-width: 1100px) {
  .site-header .header-inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 32px);
    min-height: 76px;
    gap: 16px;
  }

  .site-header .brand {
    grid-column: 1;
  }

  .site-header .brand-copy small {
    display: block;
  }

  .site-header .mobile-menu-toggle {
    display: grid;
    grid-column: 2;
    width: 46px;
    height: 46px;
    padding: 0;
    place-content: center;
    background: var(--electric);
    border: 1px solid var(--electric);
    border-radius: 13px;
    box-shadow: 0 10px 24px rgba(23, 87, 232, .18);
    cursor: pointer;
    gap: 5px;
  }

  .site-header .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
  }

  .site-header .mobile-menu-toggle:hover,
  .site-header .mobile-menu-toggle:focus-visible {
    background: var(--ink);
    border-color: var(--ink);
  }

  .site-header .primary-nav {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    display: grid;
    align-items: stretch;
    padding: 10px;
    background: rgba(255, 255, 255, .985);
    border: 1px solid rgba(7, 26, 51, .1);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(7, 26, 51, .2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(.985);
    transform-origin: top;
    gap: 2px;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .primary-nav {
    background: rgba(255, 255, 255, .985);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-header .primary-nav > a:not(.nav-mobile-cta) {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    color: var(--ink);
    border-radius: 11px;
    font-size: 16px;
    font-weight: 720;
    text-align: left;
  }

  .site-header .nav-catalog-link {
    gap: 10px;
  }

  .site-header .nav-catalog-symbol {
    margin-right: auto;
    margin-left: 8px;
  }

  .site-header .primary-nav > a:not(.nav-mobile-cta)::after {
    display: block;
    position: static;
    width: auto;
    height: auto;
    background: none;
    content: "\2192";
    transform: none;
  }

  .site-header .primary-nav > a:not(.nav-mobile-cta):hover,
  .site-header .primary-nav > a:not(.nav-mobile-cta):focus-visible {
    color: var(--electric);
    background: #eef4ff;
    box-shadow: none;
  }

  .site-header .nav-mobile-cta,
  .site-header.is-menu-open .nav-mobile-cta {
    display: flex;
    min-height: 56px;
    margin-top: 6px;
    border-radius: 999px;
    font-size: 16px;
  }

  .site-header .header-cta {
    display: none;
  }
}

@media (max-width: 430px) {
  .site-header .header-inner {
    width: calc(100% - 24px);
    min-height: 70px;
  }

  .site-header .brand {
    gap: 9px;
  }

  .site-header .brand-mark,
  .site-header .brand-mark svg {
    width: 42px;
    height: 42px;
  }

  .site-header .brand-mark {
    flex-basis: 42px;
    padding: 2px;
  }

  .site-header .brand-copy strong {
    font-size: 22px;
  }

  .site-header .brand-copy small {
    display: none;
  }

  .site-header .mobile-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-header .primary-nav {
    top: calc(100% + 7px);
  }
}

/* Kursovik v70: ergonomic first-screen narrative */
@media (min-width: 1081px) {
  .hero-collage {
    min-height: 650px;
  }

  .hero-collage .hero-copy {
    padding-top: 24px;
  }

  .hero-collage h1 {
    margin-top: 18px;
  }

  .hero-collage-art {
    right: -58px;
    bottom: -260px;
    width: 70%;
    height: 575px;
  }

  .hero-sticker-year {
    top: 96px;
    right: 118px;
  }

  .hero-sticker-route {
    right: 72px;
    bottom: 112px;
  }

  .hero-sticker-format {
    bottom: 138px;
  }

  .proof-route {
    grid-template-columns: 248px repeat(3, minmax(0, 1fr));
    grid-template-rows: minmax(152px, 1fr);
    width: min(1460px, calc(100% - 48px));
    min-height: 168px;
    margin-top: -44px;
    padding: 8px;
    overflow: hidden;
    border-radius: 18px;
    column-gap: 8px;
    row-gap: 0;
  }

  .proof-route .proof-route-intro,
  .proof-route .proof-route-intro:nth-child(2),
  .proof-route .proof-route-intro:nth-child(4) {
    min-height: 152px;
    padding: 24px 25px;
    border-radius: 12px;
    grid-column: 1;
    grid-row: 1;
  }

  .proof-route .proof-route-intro > b {
    max-width: 170px;
    font-size: 25px;
  }

  .proof-route > a {
    z-index: 2;
    min-height: 152px;
    align-content: start;
    align-items: start;
    padding: 48px 54px 20px 20px;
    border-radius: 12px;
    grid-row: 1 !important;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .proof-route > a:nth-of-type(1) {
    grid-column: 2;
  }

  .proof-route > a:nth-of-type(2) {
    grid-column: 3;
  }

  .proof-route > a:nth-of-type(3) {
    grid-column: 4;
  }

  .proof-route > a::after {
    right: 18px;
    bottom: 9px;
    left: 20px;
  }

  .proof-route > a:hover,
  .proof-route > a:focus-visible {
    transform: translateY(-4px);
  }

  .proof-route > a > span:first-child {
    width: 40px;
    height: 40px;
  }

  .proof-route > a > span:nth-child(2) {
    position: relative;
    z-index: 4;
    gap: 7px;
  }

  .proof-route > a b {
    font-size: 18px;
  }

  .proof-route > a > i {
    position: absolute;
    z-index: 5;
    right: 16px;
    bottom: 17px;
    width: 34px;
    height: 34px;
  }

  .proof-route-junction {
    position: absolute;
    z-index: 3;
    top: 8px;
    right: auto;
    left: 256px;
    display: block;
    width: calc(100% - 264px);
    height: 42px;
    grid-column: auto;
    grid-row: auto;
    pointer-events: none;
  }

  .proof-route-junction::before {
    top: 18px;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--electric), rgba(23, 87, 232, .32));
    transform: none;
  }

  .proof-route-junction::after {
    display: none;
  }

  .proof-route-junction > i {
    top: 18px;
    right: auto;
    width: 2px;
    height: 26px;
    transform: none;
  }

  .proof-route-junction > i:nth-child(1) {
    top: 18px;
    left: 16.666%;
  }

  .proof-route-junction > i:nth-child(2) {
    top: 18px;
    left: 50%;
  }

  .proof-route-junction > i:nth-child(3) {
    top: 18px;
    left: 83.333%;
  }

  .proof-route-junction > b {
    top: 18px;
    left: 0;
    width: 13px;
    height: 13px;
  }

  .subject-ticker {
    height: 56px;
    margin-top: 16px;
  }

  .about-section-polished {
    padding-top: 88px;
  }
}

@media (min-width: 1081px) and (max-height: 820px) {
  .hero-collage {
    min-height: 520px;
    margin-top: 12px;
  }

  .hero-collage .hero-copy {
    padding-top: 0;
  }

  .hero-collage h1 {
    margin-top: 13px;
    font-size: 49px;
  }

  .hero-collage h1 em {
    margin-top: 7px;
  }

  .hero-collage .hero-lead {
    margin-top: 13px;
  }

  .hero-collage .hero-actions {
    margin-top: 18px;
  }

  .hero-collage .hero-revision-link {
    margin-top: 10px;
  }

  .hero-collage-art {
    right: -46px;
    bottom: -220px;
    width: 66%;
    height: 470px;
  }

  .hero-sticker-year {
    top: 72px;
  }

  .hero-sticker-route,
  .hero-sticker-format {
    display: none;
  }

  .proof-route {
    margin-top: -38px;
  }
}

@media (min-width: 1081px) {
  .proof-route::before {
    position: absolute;
    z-index: 3;
    top: 26px;
    right: auto;
    left: 256px;
    display: block;
    width: calc(100% - 264px);
    height: 2px;
    background: linear-gradient(90deg, var(--electric), #a9c3f5 58%, rgba(23, 87, 232, .34));
    content: "";
  }

  .proof-route::after {
    position: absolute;
    z-index: 5;
    top: 20px;
    left: 250px;
    width: 13px;
    height: 13px;
    background: var(--acid);
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(23, 87, 232, .22);
    content: "";
  }

  .proof-route-junction {
    display: none;
  }

  .proof-route > a::before {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 50%;
    width: 2px;
    height: 27px;
    background: var(--electric);
    content: "";
  }

  .proof-route > a:nth-of-type(2)::before {
    background: var(--acid);
  }

  .proof-route > a:nth-of-type(3)::before {
    background: var(--ink);
  }

  .proof-route > a > span:first-child {
    position: relative;
    z-index: 4;
  }
}

/* Kursovik v72: editorial density and brand provenance */
.about-section-polished {
  padding-top: 86px;
  padding-bottom: 82px;
}

.about-section-polished .about-manifest {
  grid-template-columns: 236px minmax(0, 1fr);
  align-items: stretch;
  gap: 54px;
}

.about-section-polished .about-year-stamp.about-origin-card {
  position: relative;
  display: flex;
  min-height: 292px;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(145deg, #0b2446 0%, #071a33 72%);
  border: 1px solid rgba(7, 26, 51, .12);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(7, 26, 51, .16);
  flex-direction: column;
}

.about-section-polished .about-year-stamp.about-origin-card::before {
  top: 0;
  right: auto;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--acid) 0 34%, var(--electric) 34% 100%);
}

.about-section-polished .about-year-stamp.about-origin-card::after {
  top: -72px;
  right: -82px;
  bottom: auto;
  left: auto;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, .025), 0 0 0 76px rgba(255, 255, 255, .014);
  transform: none;
}

.about-origin-card > * {
  position: relative;
  z-index: 1;
}

.about-section-polished .about-origin-kicker,
.about-section-polished .about-origin-code {
  color: var(--acid);
  font-size: 10px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.about-section-polished .about-origin-card b {
  margin-top: 26px;
  color: #fff;
  font-size: 62px;
  font-variation-settings: "wght" 760;
  line-height: .88;
}

.about-section-polished .about-origin-card p {
  max-width: 170px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  line-height: 1.5;
}

.about-section-polished .about-origin-code {
  position: absolute;
  right: 26px;
  bottom: 27px;
  color: rgba(255, 255, 255, .46);
}

.about-section-polished .section-heading h2 {
  max-width: 880px;
  font-size: clamp(47px, 4.3vw, 60px);
}

.about-section-polished .about-ledger {
  margin-top: 46px;
}

.about-section-polished .about-ledger article,
.about-section-polished .about-ledger article + article {
  min-height: 186px;
  padding-top: 26px;
  padding-bottom: 27px;
}

.catalog-preview-polished {
  padding-top: 90px;
  padding-bottom: 98px;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, .13), transparent 28rem),
    linear-gradient(90deg, rgba(255, 255, 255, .052) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(255, 255, 255, .052) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(135deg, #1d62ef 0%, #1556df 54%, #1047c8 100%);
}

.catalog-preview-polished .section-heading h2 {
  max-width: 900px;
  font-size: clamp(47px, 4.7vw, 64px);
  line-height: .98;
}

.material-grid-home {
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, .82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 620px;
  margin-top: 42px;
  gap: 14px;
}

.home-material-card,
.home-material-card:nth-child(2) {
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(5, 27, 74, .18);
}

.home-material-card-featured .home-material-media {
  min-height: 332px;
}

.home-material-card-featured .home-material-body {
  padding: 24px 28px 26px;
}

.home-material-card-featured .home-material-copy {
  margin-top: 16px;
}

.home-material-card-featured .home-material-copy h3 {
  font-size: 31px;
  line-height: 1.02;
}

.home-material-card-featured .home-material-copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-material-card-compact {
  grid-template-columns: minmax(145px, .45fr) minmax(0, .55fr);
}

.home-material-card-compact:nth-child(2) {
  margin-left: 16px;
}

.home-material-card-compact:nth-child(3) {
  margin-right: 24px;
}

.home-material-card-compact .home-material-body {
  padding: 18px 20px 17px;
}

.home-material-card-compact .home-material-copy {
  margin-top: 12px;
}

.home-material-card-compact .home-material-copy h3 {
  font-size: 21px;
  line-height: 1.05;
}

.home-material-card-compact .home-material-copy p {
  margin-top: 7px;
  font-size: 11px;
}

.home-material-card-compact .home-material-footer {
  min-height: 42px;
  padding-top: 9px;
}

.services-section-polished {
  padding-top: 90px;
  padding-bottom: 92px;
}

.services-composition {
  margin-top: 48px;
}

.services-visual {
  min-height: 648px;
}

.services-section-polished .services-list article,
.services-section-polished .services-list article:nth-child(even) {
  min-height: 108px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.process-section-polished,
.reviews-section-polished,
.faq-section-polished {
  padding-top: 90px;
  padding-bottom: 90px;
}

.reviews-section-polished .reviews-grid {
  margin-top: 48px;
}

.reviews-section-polished .review-card-featured {
  min-height: 560px;
}

.reviews-section-polished .review-stack .review-card,
.reviews-section-polished .review-stack .review-card:first-child,
.reviews-section-polished .review-stack .review-card:last-child {
  min-height: 280px;
  padding: 34px 36px 30px;
}

.reviews-section-polished .review-stack .review-card blockquote {
  font-size: 14px;
}

.request-banner-polished {
  min-height: 440px;
  padding-top: 58px;
  padding-bottom: 58px;
}

@media (max-width: 1080px) and (min-width: 769px) {
  .about-section-polished .about-manifest {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 38px;
  }

  .about-section-polished .about-year-stamp.about-origin-card {
    min-height: 266px;
  }

  .material-grid-home {
    min-height: 0;
  }

  .home-material-card-featured {
    min-height: 410px;
  }

  .home-material-card-featured .home-material-media {
    min-height: 410px;
  }

  .home-material-card-compact {
    min-height: 410px;
  }
}

@media (max-width: 768px) {
  .about-section-polished {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about-section-polished .about-manifest {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-section-polished .about-year-stamp.about-origin-card {
    display: grid;
    min-height: 158px;
    padding: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(120px, .75fr);
    grid-template-rows: auto 1fr;
    gap: 10px 20px;
  }

  .about-section-polished .about-origin-card b {
    align-self: end;
    margin-top: 12px;
    font-size: 52px;
  }

  .about-section-polished .about-origin-card p {
    max-width: 160px;
    align-self: end;
    margin: 0;
    font-size: 11px;
    grid-column: 2;
    grid-row: 1 / -1;
  }

  .about-section-polished .about-origin-code {
    display: none;
  }

  .about-section-polished .section-heading h2 {
    font-size: clamp(37px, 10vw, 45px);
    line-height: .98;
  }

  .about-section-polished .about-ledger {
    margin-top: 34px;
  }

  .about-section-polished .about-ledger article,
  .about-section-polished .about-ledger article + article {
    min-height: 0;
    padding: 22px 0;
  }

  .catalog-preview-polished {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .catalog-preview-polished .section-heading h2 {
    font-size: clamp(34px, 9.4vw, 42px);
  }

  .material-grid-home {
    margin-top: 30px;
    gap: 12px;
  }

  .home-material-card,
  .home-material-card-featured,
  .home-material-card-compact,
  .home-material-card:last-child:nth-child(odd) {
    min-height: 438px;
    flex-basis: min(84vw, 330px);
  }

  .home-material-card-featured .home-material-media,
  .home-material-card-compact .home-material-media,
  .home-material-card:last-child:nth-child(odd) .home-material-media {
    aspect-ratio: 1.48;
  }

  .home-material-card-featured .home-material-body,
  .home-material-card-compact .home-material-body {
    padding: 18px;
  }

  .home-material-card-featured .home-material-copy,
  .home-material-card-compact .home-material-copy {
    margin-top: 14px;
  }

  .home-material-card-featured .home-material-copy h3,
  .home-material-card-compact .home-material-copy h3 {
    font-size: 21px;
  }

  .home-material-card-featured .home-material-copy p,
  .home-material-card-compact .home-material-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .services-section-polished,
  .process-section-polished,
  .reviews-section-polished,
  .faq-section-polished {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .services-composition {
    margin-top: 32px;
  }

  .services-visual {
    min-height: 310px;
  }

  .services-section-polished .services-list article,
  .services-section-polished .services-list article:nth-child(even) {
    min-height: 168px;
    padding: 20px 18px;
  }

  .process-section-polished .process-line li {
    min-height: 94px;
  }

  .reviews-section-polished .reviews-grid {
    margin-top: 34px;
  }

  .reviews-section-polished .review-card-featured {
    min-height: 450px;
  }

  .reviews-section-polished .review-stack .review-card,
  .reviews-section-polished .review-stack .review-card:first-child,
  .reviews-section-polished .review-stack .review-card:last-child {
    min-height: 350px;
  }

  .request-banner-polished {
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 28px;
  }
}

@media (max-width: 430px) {
  .about-section-polished .about-year-stamp.about-origin-card {
    min-height: 146px;
    grid-template-columns: minmax(0, 1fr) 128px;
  }

  .services-visual figcaption b {
    font-size: 23px;
  }

  .services-section-polished .services-list article,
  .services-section-polished .services-list article:nth-child(even) {
    min-height: 156px;
    padding: 18px 16px;
  }

  .reviews-section-polished .review-card-featured {
    min-height: 430px;
  }
}

/* Kursovik v73: internal product flow and compact conversion surfaces */
.catalog-intro {
  padding: 48px 56px 46px;
}

.catalog-intro h1 {
  margin-top: 18px;
  font-size: clamp(54px, 4.7vw, 64px);
}

.catalog-intro .catalog-intro-copy > p {
  margin-top: 19px;
}

.catalog-count {
  min-height: 178px;
  padding: 21px;
}

.catalog-count b {
  font-size: 70px;
}

.catalog-confidence {
  margin-top: 14px;
}

.catalog-confidence > div {
  min-height: 98px;
}

.catalog-layout {
  padding-top: 32px;
}

.material-card {
  min-height: 620px;
}

.material-card > div.material-card-body:nth-child(2) {
  margin-top: 0;
}

.material-card:nth-child(3):last-child {
  min-height: 540px;
}

.material-card:nth-child(3):last-child .material-card-body {
  min-height: 540px;
  overflow: visible;
}

.material-card:nth-child(3):last-child .material-card-bottom {
  margin-top: auto;
}

.project-heading-block {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--electric);
}

.project-heading-block::before {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(255, 255, 255, .025), 0 0 0 104px rgba(255, 255, 255, .016);
  content: "";
  pointer-events: none;
}

.project-heading-block > * {
  position: relative;
  z-index: 1;
}

.project-specs div {
  min-height: 82px;
}

.project-order-card {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.project-order-card .field:focus-within,
.form-chapter .field:focus-within {
  color: var(--electric);
}

.custom-intro {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 56px 56px,
    radial-gradient(circle at 74% 26%, rgba(255, 255, 255, .1), transparent 25rem),
    var(--electric);
}

.custom-scenario-row {
  display: flex;
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 8px;
}

.custom-scenario-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, .8);
  background: rgba(7, 26, 51, .2);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: 11px;
  font-variation-settings: "wght" 720;
}

.custom-intro-actions {
  margin-top: 22px;
}

.custom-form-copy h2 {
  max-width: 480px;
  font-size: clamp(45px, 4.3vw, 58px);
  line-height: .98;
}

.form-chapter {
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.form-chapter:focus-within {
  border-color: rgba(23, 87, 232, .38);
  box-shadow: 0 18px 46px rgba(25, 56, 98, .075);
}

@media (max-width: 900px) {
  .catalog-intro {
    padding: 38px 34px 34px;
  }

  .catalog-intro h1 {
    font-size: clamp(45px, 7vw, 58px);
  }

  .material-card,
  .material-card:nth-child(3):last-child {
    min-height: 0;
  }

  .material-card:nth-child(3):last-child .material-card-body {
    min-height: 0;
  }

  .project-mobile-cta {
    position: sticky;
    z-index: 20;
    top: calc(var(--header-height) + 8px);
    bottom: auto;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 18px 48px rgba(7, 26, 51, .24);
  }

  .material-blueprint {
    padding-top: 30px;
    padding-bottom: 26px;
  }

  .custom-form-layout {
    gap: 34px;
  }
}

@media (max-width: 768px) {
  .catalog-intro {
    padding: 30px 24px 24px;
    gap: 24px;
  }

  .catalog-intro h1 {
    margin-top: 16px;
    font-size: clamp(37px, 10vw, 44px);
    line-height: .98;
  }

  .catalog-intro .catalog-intro-copy > p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.55;
  }

  .catalog-count {
    display: grid;
    min-height: 108px;
    align-items: end;
    padding: 16px 18px;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    gap: 5px 14px;
  }

  .catalog-count small {
    margin: 0;
    grid-column: 1 / -1;
  }

  .catalog-count b {
    align-self: end;
    font-size: 50px;
  }

  .catalog-count span {
    align-self: end;
    margin: 0 0 5px;
  }

  .catalog-confidence {
    margin-top: 10px;
  }

  .catalog-confidence > div {
    min-height: 92px;
  }

  .catalog-layout {
    padding-top: 16px;
  }

  .catalog-grid {
    margin-top: 12px;
  }

  .material-card-body,
  .material-card:nth-child(3):last-child .material-card-body {
    padding: 18px;
  }

  .material-card-copy {
    margin-top: 18px;
  }

  .material-card h2,
  .material-card:nth-child(3):last-child h2 {
    font-size: 23px;
  }

  .material-card p {
    margin-top: 10px;
  }

  .material-card .material-options {
    margin-top: 16px;
  }

  .material-card-bottom {
    min-height: 54px;
    margin-top: 18px;
    padding-top: 14px;
  }

  .project-heading-block {
    padding: 26px 22px 28px;
  }

  .project-heading-block h1 {
    margin-top: 23px;
    font-size: clamp(36px, 10.2vw, 43px);
  }

  .project-heading-block .project-lead {
    margin-top: 17px;
  }

  .project-mobile-cta {
    min-height: 74px;
    margin-top: 12px;
    padding: 13px 17px;
    border-radius: 8px;
  }

  .project-specs {
    margin-top: 12px;
  }

  .project-preview {
    height: 390px;
    margin-top: 12px;
  }

  .material-blueprint {
    margin-top: 16px;
    padding: 25px 20px 20px;
  }

  .material-blueprint-copy h2 {
    margin-top: 14px;
    font-size: 29px;
  }

  .material-blueprint-copy > p {
    margin-top: 15px;
    font-size: 13px;
  }

  .material-blueprint-legend {
    margin-top: 22px;
  }

  .material-blueprint-pages {
    margin-top: 4px;
  }

  .blueprint-page,
  .blueprint-page-main,
  .blueprint-page-sources,
  .blueprint-page-slides {
    min-height: 310px;
    flex-basis: 79%;
    padding: 22px 18px;
  }

  .blueprint-page-slides {
    min-height: 270px;
  }

  .project-details-grid {
    margin-top: 14px;
  }

  .project-details-grid > section,
  .project-details-grid > section + section {
    padding: 24px 20px;
  }

  .custom-intro {
    padding: 30px 24px 24px;
    gap: 22px;
  }

  .custom-intro h1 {
    font-size: clamp(36px, 10vw, 43px);
  }

  .custom-intro > div:first-child > p {
    margin-top: 18px;
    font-size: 15px;
  }

  .custom-scenario-row {
    margin-top: 18px;
  }

  .custom-intro-actions {
    margin-top: 18px;
  }

  .custom-form-layout {
    padding-top: 52px;
    padding-bottom: 62px;
    gap: 26px;
  }

  .custom-form-copy h2 {
    font-size: clamp(36px, 9.7vw, 43px);
  }

  .custom-form-copy > p {
    margin-top: 18px;
  }

  .privacy-note {
    margin-top: 24px;
  }

  .form-chapter {
    padding: 22px 20px;
    gap: 17px;
  }

  .form-chapter + .form-chapter {
    margin-top: 8px;
  }
}

@media (max-width: 430px) {
  .catalog-intro {
    padding-right: 22px;
    padding-left: 22px;
  }

  .catalog-confidence > div {
    flex-basis: 86%;
  }

  .project-preview {
    height: 372px;
  }

  .project-mobile-cta em {
    max-width: 116px;
    text-align: right;
  }

  .custom-scenario-row span {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 10px;
  }
}

/* v74 cascade guard: the subtitle uses one accent, not a full color block. */
.hero-collage h1 em {
  color: var(--ink);
}

.hero-collage h1 em > span {
  color: var(--electric);
}

/* v75: replace the synthetic square grid with an editorial light field. */
.hero-collage::before {
  background:
    linear-gradient(112deg, transparent 0 18%, rgba(255, 255, 255, .5) 18.1% 29%, transparent 29.2%),
    linear-gradient(76deg, transparent 0 69%, rgba(23, 87, 232, .065) 69.1% 69.25%, transparent 69.35%),
    linear-gradient(164deg, transparent 0 80%, rgba(7, 26, 51, .04) 80.1% 80.22%, transparent 80.32%);
  opacity: .72;
  mask-image: none;
}

@media (max-width: 768px) {
  .hero-collage::before {
    background: linear-gradient(126deg, transparent 0 66%, rgba(23, 87, 232, .055) 66.1% 66.25%, transparent 66.35%);
    opacity: .52;
  }
}

/* Kursovik v76: an editorial route replaces decorative wallpaper. */
.hero-route-field {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.hero-route-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-route-canvas path {
  vector-effect: non-scaling-stroke;
}

.hero-route-glow {
  fill: none;
  stroke: rgba(23, 87, 232, .085);
  stroke-width: 18;
}

.hero-route-line {
  fill: none;
  stroke: rgba(23, 87, 232, .52);
  stroke-width: 2.2;
  stroke-linecap: round;
}

@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
  .hero-route-line {
    stroke-dasharray: 1650;
    animation: kursovik-route-draw 1400ms 420ms both cubic-bezier(.2, .7, .2, 1);
  }
}

@keyframes kursovik-route-draw {
  from { stroke-dashoffset: 1650; }
  to { stroke-dashoffset: 0; }
}

@media (max-width: 768px) {
  .hero-route-glow {
    stroke: rgba(23, 87, 232, .055);
    stroke-width: 12;
  }

  .hero-route-line {
    stroke: rgba(23, 87, 232, .25);
    stroke-width: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-route-line {
    animation: none;
  }
}

/* Kursovik v77: clear hero field and equal scenario choices. */
.proof-route::before,
.proof-route::after,
.proof-route > a::before,
.proof-route > a::after {
  display: none !important;
}

.proof-route-junction {
  display: none !important;
}

@media (min-width: 769px) {
  .proof-route {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 62px minmax(132px, 1fr);
    min-height: 210px;
    margin-top: -34px;
    padding: 8px;
    overflow: hidden;
    border-radius: 18px;
    column-gap: 8px;
    row-gap: 8px;
  }

  .proof-route .proof-route-intro,
  .proof-route .proof-route-intro:nth-child(2),
  .proof-route .proof-route-intro:nth-child(4) {
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: var(--ink);
    border-radius: 10px;
    flex-direction: row;
    grid-column: 1 / -1;
    grid-row: 1;
    gap: 18px;
  }

  .proof-route .proof-route-intro::after {
    display: none;
  }

  .proof-route .proof-route-intro > b {
    order: -1;
    max-width: none;
    font-size: 23px;
    line-height: 1;
  }

  .proof-route .proof-route-intro > span {
    color: rgba(255, 255, 255, .66);
    font-size: 10px;
  }

  .proof-route > a {
    min-height: 132px;
    align-content: center;
    align-items: center;
    padding: 22px;
    border-radius: 10px;
    grid-row: 2 !important;
    grid-template-columns: 40px minmax(0, 1fr) 36px;
    gap: 14px;
  }

  .proof-route > a:nth-of-type(1) {
    grid-column: 1;
  }

  .proof-route > a:nth-of-type(2) {
    grid-column: 2;
  }

  .proof-route > a:nth-of-type(3) {
    grid-column: 3;
  }

  .proof-route > a > i {
    position: static;
    width: 36px;
    height: 36px;
  }

  .proof-route > a:hover,
  .proof-route > a:focus-visible {
    transform: translateY(-3px);
  }
}

@media (max-width: 768px) {
  .proof-route {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    margin-top: -12px;
    padding: 7px;
    border-radius: 14px;
    gap: 7px;
  }

  .proof-route .proof-route-intro,
  .proof-route .proof-route-intro:nth-child(2),
  .proof-route .proof-route-intro:nth-child(4) {
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 17px;
    background: var(--ink);
    border-radius: 9px;
    flex-direction: row;
    grid-column: 1;
    grid-row: auto;
    gap: 12px;
  }

  .proof-route .proof-route-intro::after {
    display: none;
  }

  .proof-route .proof-route-intro > b {
    order: -1;
    max-width: none;
    font-size: 19px;
  }

  .proof-route .proof-route-intro > span {
    max-width: 120px;
    color: rgba(255, 255, 255, .62);
    font-size: 8px;
    text-align: right;
  }

  .proof-route > a,
  .proof-route > a:last-child,
  .proof-route > a:nth-of-type(1),
  .proof-route > a:nth-of-type(2),
  .proof-route > a:nth-of-type(3) {
    min-height: 84px;
    align-items: center;
    padding: 14px 15px;
    border-radius: 9px;
    grid-column: 1;
    grid-row: auto !important;
    grid-template-columns: 34px minmax(0, 1fr) 32px;
    gap: 10px;
  }

  .proof-route > a > i {
    position: static;
    display: grid;
    width: 32px;
    height: 32px;
  }
}

/* Kursovik v79: exact sizing for the three conversion scenarios. */
@media (min-width: 769px) {
  .proof-route > a {
    width: 100%;
    height: 132px;
    min-height: 132px;
    max-height: 132px;
    box-sizing: border-box;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .proof-route > a > span:first-child,
  .proof-route > a > i {
    width: 40px;
    height: 40px;
  }

  .proof-route > a > span:nth-child(2) {
    align-self: center;
    grid-template-rows: 24px 18px;
    gap: 5px;
  }

  .proof-route > a b {
    display: flex;
    min-height: 24px;
    align-items: center;
    white-space: nowrap;
  }

  .proof-route > a small {
    display: block;
    min-height: 18px;
  }
}

@media (max-width: 768px) {
  .proof-route > a,
  .proof-route > a:last-child,
  .proof-route > a:nth-of-type(1),
  .proof-route > a:nth-of-type(2),
  .proof-route > a:nth-of-type(3) {
    width: 100%;
    height: 84px;
    min-height: 84px;
    max-height: 84px;
    box-sizing: border-box;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .proof-route > a > span:first-child,
  .proof-route > a > i {
    width: 34px;
    height: 34px;
  }

  .proof-route > a > span:nth-child(2) {
    align-self: center;
    grid-template-rows: auto auto;
    gap: 4px;
  }
}

/* Kursovik v80: the route start and all scenarios share one module size. */
@media (min-width: 769px) {
  .proof-route {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 132px;
    min-height: 148px;
    margin-top: -34px;
    padding: 8px;
    gap: 8px;
  }

  .proof-route .proof-route-intro,
  .proof-route .proof-route-intro:nth-child(2),
  .proof-route .proof-route-intro:nth-child(4) {
    width: 100%;
    height: 132px;
    min-height: 132px;
    max-height: 132px;
    align-items: flex-start;
    justify-content: center;
    padding: 22px;
    box-sizing: border-box;
    border-radius: 10px;
    flex-direction: column;
    grid-column: 1;
    grid-row: 1;
    gap: 8px;
  }

  .proof-route .proof-route-intro > b {
    order: -1;
    font-size: 22px;
    line-height: 1.05;
  }

  .proof-route .proof-route-intro > span {
    max-width: 190px;
    color: rgba(255, 255, 255, .62);
    font-size: 9px;
    line-height: 1.3;
  }

  .proof-route > a,
  .proof-route > a:nth-of-type(1),
  .proof-route > a:nth-of-type(2),
  .proof-route > a:nth-of-type(3) {
    grid-row: 1 !important;
  }

  .proof-route > a:nth-of-type(1) {
    grid-column: 2;
  }

  .proof-route > a:nth-of-type(2) {
    grid-column: 3;
  }

  .proof-route > a:nth-of-type(3) {
    grid-column: 4;
  }
}

@media (max-width: 768px) {
  .proof-route {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 84px);
  }

  .proof-route .proof-route-intro,
  .proof-route .proof-route-intro:nth-child(2),
  .proof-route .proof-route-intro:nth-child(4) {
    width: 100%;
    height: 84px;
    min-height: 84px;
    max-height: 84px;
    align-items: flex-start;
    justify-content: center;
    padding: 14px 15px;
    box-sizing: border-box;
    border-radius: 9px;
    flex-direction: column;
    grid-column: 1;
    grid-row: auto;
    gap: 5px;
  }

  .proof-route .proof-route-intro > b {
    order: -1;
    font-size: 18px;
    line-height: 1;
  }

  .proof-route .proof-route-intro > span {
    max-width: none;
    font-size: 8px;
    line-height: 1.2;
    text-align: left;
  }
}

@media (min-width: 769px) and (max-width: 1400px) {
  .proof-route > a {
    padding: 18px;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 12px;
  }

  .proof-route > a > span:first-child,
  .proof-route > a > i {
    width: 36px;
    height: 36px;
  }

  .proof-route > a b {
    font-size: 16px;
  }

  .proof-route > a small {
    font-size: 11px;
  }

  .proof-route .proof-route-intro,
  .proof-route .proof-route-intro:nth-child(2),
  .proof-route .proof-route-intro:nth-child(4) {
    padding: 18px;
  }

  .proof-route .proof-route-intro > b {
    font-size: 20px;
  }
}

/* Kursovik v82: align the scenario rail exactly with the hero edges. */
.proof-route {
  width: min(1420px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .proof-route {
    width: calc(100% - 20px);
  }
}

/* Kursovik v83: the route prompt is informational, not interactive. */
.proof-route .proof-route-intro,
.proof-route .proof-route-intro:hover {
  color: #fff;
  background: var(--ink);
  transform: none;
  transition: none;
  cursor: default;
}

.proof-route .proof-route-intro:hover > b {
  color: #fff;
}

.proof-route .proof-route-intro:hover > span {
  color: rgba(255, 255, 255, .62);
}

/* Kursovik v84: mathematically seamless subject marquee. */
.subject-ticker > .subject-ticker-track {
  width: max-content;
  min-width: 0;
  justify-content: flex-start;
  padding: 0;
  gap: 0;
  will-change: transform;
  animation: kursovik-ticker 34s linear infinite;
}

.subject-ticker-group {
  --ticker-item-gap: 28px;
  width: max-content;
  min-width: max-content;
  padding-right: calc(var(--ticker-item-gap) / 2);
  padding-left: calc(var(--ticker-item-gap) / 2);
  box-sizing: border-box;
  justify-content: flex-start;
  gap: var(--ticker-item-gap);
}

@keyframes kursovik-ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-33.333333%, 0, 0); }
}

@media (max-width: 768px) {
  .subject-ticker-group {
    --ticker-item-gap: 18px;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .subject-ticker > .subject-ticker-track {
    transform: none;
    animation: none;
    will-change: auto;
  }
}

/* Kursovik v86: authored brand story instead of a generic about-card grid. */
.about-story {
  width: min(1320px, calc(100% - 48px));
  padding-top: 104px;
  padding-bottom: 104px;
}

.about-story-head {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 2.28fr);
  align-items: stretch;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.about-story-origin {
  position: relative;
  display: flex;
  min-height: 392px;
  justify-content: center;
  padding: 42px 38px 38px 0;
  overflow: hidden;
  border-right: 1px solid var(--line-strong);
  flex-direction: column;
}

.about-story-origin::before {
  position: absolute;
  top: 0;
  right: 38px;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--acid) 0 28%, var(--electric) 28% 100%);
  content: "";
}

.about-story-origin::after {
  position: absolute;
  right: -86px;
  bottom: -116px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(23, 87, 232, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(23, 87, 232, .035), 0 0 0 96px rgba(23, 87, 232, .018);
  content: "";
}

.about-story-origin > * {
  position: relative;
  z-index: 1;
}

.about-story-origin > span {
  color: var(--electric);
  font-size: 12px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.about-story-origin strong {
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(76px, 8vw, 116px);
  font-variation-settings: "wght" 790;
  line-height: .78;
}

.about-story-origin p {
  max-width: 245px;
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.about-story-origin i {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 13px;
  height: 13px;
  background: var(--acid);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(23, 87, 232, .18);
}

.about-story-copy {
  display: flex;
  min-width: 0;
  justify-content: center;
  padding: 42px 0 38px 64px;
  flex-direction: column;
}

.about-story-copy h2 {
  max-width: 920px;
  margin-top: 20px;
  font-size: clamp(48px, 5.15vw, 72px);
  font-variation-settings: "wght" 790;
  line-height: .96;
  text-wrap: balance;
}

.about-story-copy h2 em {
  color: var(--electric);
  font-style: normal;
}

.about-story-intro {
  display: grid;
  margin-top: 32px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
}

.about-story-intro > p {
  max-width: 690px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.about-story-directions {
  display: flex;
  align-items: center;
  padding-bottom: 4px;
  gap: 18px;
}

.about-story-directions span {
  position: relative;
  color: var(--ink);
  font-size: 11px;
  font-variation-settings: "wght" 760;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-story-directions span + span::before {
  position: absolute;
  top: 50%;
  left: -11px;
  width: 4px;
  height: 4px;
  background: var(--acid);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.about-story-route {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-story-route::before {
  position: absolute;
  top: 46px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.about-story-route li {
  position: relative;
  display: grid;
  min-height: 242px;
  padding: 30px 34px 32px 0;
  grid-template-columns: 50px minmax(0, 1fr);
  align-content: start;
  gap: 20px;
}

.about-story-route li + li {
  padding-left: 34px;
  border-left: 1px solid var(--line-strong);
}

.about-story-route li:last-child {
  padding-right: 0;
}

.about-story-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--electric);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(23, 87, 232, .18);
  font-size: 11px;
  font-variation-settings: "wght" 820;
}

.about-story-route li:nth-child(2) .about-story-number {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 8px 20px rgba(183, 255, 42, .22);
}

.about-story-route li:nth-child(3) .about-story-number {
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(7, 26, 51, .16);
}

.about-story-route small {
  display: block;
  color: var(--electric);
  font-size: 10px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.about-story-route h3 {
  margin-top: 36px;
  color: var(--ink);
  font-size: 23px;
  font-variation-settings: "wght" 760;
  line-height: 1.08;
}

.about-story-route p {
  max-width: 310px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .about-story-head {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .about-story-origin {
    min-height: 350px;
    padding-right: 28px;
  }

  .about-story-origin strong {
    font-size: 76px;
  }

  .about-story-copy {
    padding-left: 42px;
  }

  .about-story-copy h2 {
    font-size: clamp(43px, 5.5vw, 58px);
  }

  .about-story-intro {
    display: block;
  }

  .about-story-directions {
    margin-top: 22px;
  }

  .about-story-route li,
  .about-story-route li + li {
    padding-right: 22px;
    padding-left: 22px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .about-story-route li:first-child {
    padding-left: 0;
  }

  .about-story-number {
    width: 42px;
  }
}

@media (max-width: 768px) {
  .about-story {
    width: min(100% - 28px, 560px);
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .about-story-head {
    display: flex;
    border-bottom: 0;
    flex-direction: column;
  }

  .about-story-origin {
    display: grid;
    min-height: 0;
    padding: 24px 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px 18px;
  }

  .about-story-origin::before {
    right: 0;
  }

  .about-story-origin::after,
  .about-story-origin i {
    display: none;
  }

  .about-story-origin > span {
    grid-column: 1;
  }

  .about-story-origin strong {
    margin-top: 8px;
    font-size: 64px;
    grid-column: 1;
  }

  .about-story-origin p {
    max-width: 170px;
    margin: 0;
    font-size: 11px;
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .about-story-copy {
    padding: 34px 0 0;
  }

  .about-story-copy h2 {
    margin-top: 16px;
    font-size: clamp(38px, 10.6vw, 48px);
    line-height: .98;
  }

  .about-story-copy h2 br {
    display: none;
  }

  .about-story-intro {
    margin-top: 24px;
  }

  .about-story-intro > p {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-story-directions {
    margin-top: 20px;
    gap: 17px;
  }

  .about-story-directions span {
    font-size: 9px;
  }

  .about-story-route {
    margin-top: 38px;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    grid-template-columns: 1fr;
  }

  .about-story-route::before {
    top: 30px;
    right: auto;
    bottom: 30px;
    left: 21px;
    width: 1px;
    height: auto;
  }

  .about-story-route li,
  .about-story-route li + li,
  .about-story-route li:first-child {
    min-height: 0;
    padding: 22px 0;
    border-left: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
  }

  .about-story-route li + li {
    border-top: 1px solid var(--line);
  }

  .about-story-route small {
    font-size: 9px;
  }

  .about-story-route h3 {
    margin-top: 8px;
    font-size: 20px;
  }

  .about-story-route p {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 390px) {
  .about-story-origin {
    grid-template-columns: minmax(0, 1fr) 142px;
  }

  .about-story-origin strong {
    font-size: 58px;
  }

  .about-story-copy h2 {
    font-size: 37px;
  }

  .about-story-directions {
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 7px;
  }
}

/* Kursovik v87: human editorial image and a cleaner three-part promise. */
.about-story-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 236px;
  grid-template-rows: auto auto 1fr;
  align-content: center;
  column-gap: 38px;
}

.about-story-copy > .eyebrow,
.about-story-copy > h2,
.about-story-copy > .about-story-intro {
  grid-column: 1;
}

.about-story-copy > .eyebrow {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.about-story-copy > .eyebrow::before {
  width: 50px;
  height: 3px;
  border-radius: 3px;
}

@media (min-width: 769px) {
  .about-story-origin > span,
  .about-story-copy > .eyebrow {
    transform: translateY(9px);
  }
}

.about-story-team {
  position: relative;
  min-width: 0;
  height: 318px;
  margin: 0;
  overflow: hidden;
  background: #eaf1fb;
  border: 1px solid rgba(23, 87, 232, .16);
  border-radius: 20px;
  box-shadow: 0 22px 46px rgba(7, 26, 51, .14);
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
}

.about-story-team::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(7, 26, 51, .72) 100%);
  content: "";
  pointer-events: none;
}

.about-story-team img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 42%;
  transition: transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.about-story-team:hover img {
  transform: scale(1.025);
}

.about-story-team figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 9px;
}

.about-story-team figcaption span {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(183, 255, 42, .15);
}

.about-story-team figcaption b {
  font-size: 11px;
  font-variation-settings: "wght" 760;
}

.about-story-copy h2 {
  max-width: 710px;
  font-size: clamp(47px, 4.45vw, 64px);
}

.about-story-intro {
  display: block;
  margin-top: 27px;
}

.about-story-intro > p {
  max-width: 690px;
}

.about-story-route {
  --about-marker-width: 50px;
  margin-top: 22px;
  padding: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f8fd 0%, #edf3fc 100%);
  border: 1px solid #d8e3f1;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(7, 26, 51, .08);
  gap: 0;
}

.about-story-route::before {
  display: none;
}

.about-story-route li,
.about-story-route li + li,
.about-story-route li:first-child {
  position: relative;
  display: flex;
  min-height: 220px;
  padding: 28px 30px 30px;
  background: rgba(255, 255, 255, .7);
  border: 0;
  border-radius: 0;
  flex-direction: column;
  gap: 0;
}

.about-story-route li:first-child {
  border-radius: 13px 0 0 13px;
}

.about-story-route li:last-child {
  border-radius: 0 13px 13px 0;
}

.about-story-route li + li {
  border-left: 1px solid var(--line-strong);
}

.about-story-route li::before {
  position: absolute;
  top: 0;
  left: 30px;
  width: var(--about-marker-width);
  height: 4px;
  background: var(--electric);
  border-radius: 0 0 4px 4px;
  content: "";
}

.about-story-route li:nth-child(2)::before {
  background: var(--acid);
}

.about-story-route li:nth-child(3)::before {
  background: var(--ink);
}

.about-story-stage {
  display: grid;
  min-height: 32px;
  align-items: center;
  grid-template-columns: var(--about-marker-width) minmax(0, 1fr);
  gap: 14px;
}

.about-story-stage .about-story-number {
  width: var(--about-marker-width);
}

.about-story-route small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-story-route h3 {
  margin-top: 34px;
  font-size: 23px;
}

.about-story-route p {
  margin-top: 11px;
}

@media (max-width: 1180px) {
  .about-story-copy {
    grid-template-columns: minmax(0, 1fr) 205px;
    column-gap: 28px;
  }

  .about-story-team {
    height: 290px;
  }

  .about-story-copy h2 {
    font-size: clamp(43px, 4.6vw, 56px);
  }
}

@media (max-width: 768px) {
  .about-story-copy {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-content: start;
    padding-top: 34px;
    column-gap: 0;
  }

  .about-story-copy > .eyebrow,
  .about-story-copy > h2,
  .about-story-copy > .about-story-intro,
  .about-story-team {
    grid-column: 1;
    grid-row: auto;
  }

  .about-story-team {
    height: 220px;
    margin-top: 26px;
    border-radius: 16px;
  }

  .about-story-team img {
    object-position: 50% 35%;
  }

  .about-story-intro {
    margin-top: 24px;
  }

  .about-story-route {
    margin-top: 34px;
    padding: 7px;
    border-radius: 17px;
  }

  .about-story-route li,
  .about-story-route li + li,
  .about-story-route li:first-child {
    min-height: 0;
    padding: 22px 20px 24px;
    border-radius: 0;
  }

  .about-story-route li:first-child {
    border-radius: 11px 11px 0 0;
  }

  .about-story-route li:last-child {
    border-radius: 0 0 11px 11px;
  }

  .about-story-route li + li {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .about-story-route li::before {
    top: 0;
    left: 20px;
    width: var(--about-marker-width);
    height: 3px;
  }

  .about-story-route h3 {
    margin-top: 18px;
  }
}

@media (max-width: 390px) {
  .about-story-team {
    height: 200px;
  }

  .about-story-route li,
  .about-story-route li + li,
  .about-story-route li:first-child {
    padding-right: 17px;
    padding-left: 17px;
  }

  .about-story-route li::before {
    left: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-story-team img {
    transition: none;
  }

  .about-story-team:hover img {
    transform: none;
  }
}

/* Kursovik v88: photographic product covers and a denser catalog shelf. */
.home-material-card,
.material-card {
  --cover-accent: var(--electric);
}

.home-material-card:nth-child(4n + 2),
.material-card:nth-child(4n + 2) {
  --cover-accent: var(--coral);
}

.home-material-card:nth-child(4n + 3),
.material-card:nth-child(4n + 3) {
  --cover-accent: #91c900;
}

.home-material-card:nth-child(4n + 4),
.material-card:nth-child(4n + 4) {
  --cover-accent: var(--ink);
}

.home-material-media,
.home-material-card-featured .home-material-media,
.home-material-card-compact .home-material-media,
.material-card-media {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border: 2px solid var(--cover-accent);
  border-radius: 15px;
}

.home-material-media::before,
.material-card-media::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 46%;
  background:
    linear-gradient(135deg, rgba(23, 87, 232, .035), transparent 62%),
    #fff;
  content: "";
  pointer-events: none;
}

.home-material-media::after,
.material-card-media::after {
  position: absolute;
  z-index: 2;
  top: 42%;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(7, 26, 51, 0) 48%, rgba(7, 26, 51, .7) 100%);
  content: "";
  pointer-events: none;
}

.home-material-media img,
.home-material-card-featured .home-material-media img,
.home-material-card-compact .home-material-media img,
.material-card-media img {
  position: absolute;
  z-index: 0;
  top: 42%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 58%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.home-material-card:hover .home-material-media img,
.material-card:hover .material-card-media img {
  transform: scale(1.035);
}

.home-material-media > .catalog-cover-brand,
.material-card-media > .catalog-cover-brand {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: auto;
  bottom: auto;
  left: 17px;
  display: inline-flex;
  width: auto;
  height: 22px;
  align-items: center;
  color: var(--ink);
  font-family: inherit;
  font-size: 12px;
  font-variation-settings: "wght" 820;
  line-height: 1;
  gap: 7px;
}

.catalog-cover-brand > i {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--electric);
  background: #fff;
  border: 1px solid var(--electric);
  border-radius: 5px;
  font-size: 10px;
  font-style: normal;
  font-variation-settings: "wght" 820;
}

.home-material-media > .catalog-cover-title,
.material-card-media > .catalog-cover-title {
  position: absolute;
  z-index: 4;
  top: 52px;
  right: 16px;
  left: 17px;
  display: -webkit-box;
  max-height: 70px;
  overflow: hidden;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  font-variation-settings: "wght" 820;
  line-height: 1.03;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-material-media > .catalog-cover-title::after,
.material-card-media > .catalog-cover-title::after {
  display: inline-block;
  width: 30px;
  height: 5px;
  margin-left: 7px;
  background: var(--cover-accent);
  border-radius: 4px;
  content: "";
  vertical-align: .14em;
}

.home-material-media > .catalog-cover-subject,
.material-card-media > .catalog-cover-subject {
  position: absolute;
  z-index: 4;
  right: 58px;
  bottom: 14px;
  left: 14px;
  display: block;
  width: fit-content;
  max-width: calc(100% - 76px);
  padding: 6px 9px;
  overflow: hidden;
  color: #fff;
  background: var(--cover-accent);
  border-radius: 6px;
  font-size: 9px;
  font-style: normal;
  font-variation-settings: "wght" 800;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-material-media > .catalog-cover-index,
.material-card-media > .catalog-cover-index {
  position: absolute;
  z-index: 4;
  top: 17px;
  right: 16px;
  bottom: auto;
  left: auto;
  display: grid;
  width: 28px;
  height: 22px;
  place-items: center;
  color: var(--ink);
  background: color-mix(in srgb, var(--cover-accent) 18%, #fff);
  border-radius: 5px;
  font-family: inherit;
  font-size: 9px;
  font-variation-settings: "wght" 820;
}

.home-material-media > i {
  position: absolute;
  z-index: 5;
  right: 13px;
  bottom: 13px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: 13px;
  font-style: normal;
}

.material-card-media > small:last-child {
  position: absolute;
  z-index: 5;
  right: 13px;
  bottom: 13px;
  display: grid;
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  overflow: hidden;
  place-items: center;
  color: transparent;
  background: var(--acid);
  border: 0;
  border-radius: 50%;
  font-size: 0;
  opacity: 1;
  transform: none;
}

.material-card-media > small:last-child i {
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
}

.material-grid-home {
  display: grid;
  min-height: 0;
  margin-top: 48px;
  overflow: visible;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 18px;
}

.home-material-card,
.home-material-card:nth-child(2),
.home-material-card-featured,
.home-material-card-compact,
.home-material-card-compact:nth-child(2),
.home-material-card-compact:nth-child(3) {
  display: flex;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(7, 26, 51, .17);
  flex: none;
  flex-direction: column;
  grid-column: auto;
  grid-row: auto;
  width: auto;
  max-width: none;
}

.home-material-card::before,
.home-material-card-compact:nth-child(3)::before {
  display: none;
}

.home-material-card:hover,
.home-material-card:nth-child(2):hover {
  box-shadow: 0 25px 58px rgba(7, 26, 51, .24);
  transform: translateY(-4px);
}

.home-material-card .home-material-body,
.home-material-card-featured .home-material-body,
.home-material-card-compact .home-material-body {
  display: flex;
  min-height: 174px;
  padding: 16px 17px 17px;
  flex: 1;
  flex-direction: column;
}

.home-material-card .home-material-meta {
  gap: 10px;
}

.home-material-card .home-material-meta span,
.home-material-card .home-material-meta small {
  font-size: 9px;
}

.home-material-card .home-material-copy,
.home-material-card-featured .home-material-copy,
.home-material-card-compact .home-material-copy {
  max-width: none;
  margin-top: 15px;
}

.home-material-card .home-material-copy > small,
.home-material-card .home-material-copy > p {
  display: none;
}

.home-material-card .home-material-copy h3,
.home-material-card-featured .home-material-copy h3,
.home-material-card-compact .home-material-copy h3 {
  display: -webkit-box;
  min-height: 62px;
  margin: 0;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.15;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-material-card .home-material-footer,
.home-material-card-compact .home-material-footer {
  min-height: 42px;
  margin-top: auto;
  padding-top: 13px;
}

.home-material-card .home-material-footer b,
.home-material-card-compact .home-material-footer b {
  font-size: 20px;
}

.home-material-card .home-material-footer a,
.home-material-card-compact .home-material-footer a {
  display: inline-flex;
  width: auto;
  min-height: 0;
  justify-content: flex-start;
  padding: 0;
  overflow: visible;
  color: var(--electric);
  background: transparent;
  border-radius: 0;
  font-size: 11px;
}

.home-material-card .home-material-footer a span,
.home-material-card-compact .home-material-footer a span {
  color: currentColor;
  font-size: 12px;
}

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

.material-card,
.material-card:nth-child(3):last-child {
  display: flex;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  flex-direction: column;
  grid-column: auto;
}

.material-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.material-card .material-card-body,
.material-card:nth-child(3):last-child .material-card-body,
.material-card > div.material-card-body:nth-child(2) {
  display: flex;
  min-height: 238px;
  margin: 0;
  padding: 17px 4px 0;
  overflow: visible;
  background: transparent;
  flex: 1;
  flex-direction: column;
}

.material-card .material-card-top span,
.material-card .material-card-top small {
  font-size: 9px;
}

.material-card .material-card-copy {
  margin-top: 14px;
}

.material-card .material-card-copy > small {
  display: none;
}

.material-card h2,
.material-card:nth-child(3):last-child h2 {
  display: -webkit-box;
  min-height: 66px;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.14;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.material-card p {
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.material-card .material-options {
  display: none;
}

.material-card-bottom,
.material-card:nth-child(3):last-child .material-card-bottom {
  min-height: 45px;
  margin-top: auto;
  padding-top: 13px;
}

.material-card-bottom b {
  font-size: 21px;
}

.material-card-bottom a {
  font-size: 11px;
}

@media (max-width: 1180px) {
  .material-grid-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .material-grid-home,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-material-media > .catalog-cover-title,
  .material-card-media > .catalog-cover-title {
    font-size: clamp(18px, 3vw, 22px);
  }
}

@media (max-width: 560px) {
  .material-grid-home,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .home-material-card .home-material-body,
  .home-material-card-featured .home-material-body,
  .home-material-card-compact .home-material-body,
  .material-card .material-card-body,
  .material-card:nth-child(3):last-child .material-card-body {
    min-height: 0;
  }

  .home-material-card .home-material-copy h3,
  .home-material-card-featured .home-material-copy h3,
  .home-material-card-compact .home-material-copy h3,
  .material-card h2,
  .material-card:nth-child(3):last-child h2 {
    min-height: 0;
  }

  .home-material-media > .catalog-cover-title,
  .material-card-media > .catalog-cover-title {
    font-size: clamp(20px, 6vw, 25px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-material-media img,
  .material-card-media img {
    transition: none;
  }

  .home-material-card:hover .home-material-media img,
  .material-card:hover .material-card-media img {
    transform: none;
  }
}

/* Kursovik v93: product-led catalog and material detail polish. */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.catalog-intro-v93,
.catalog-confidence-v93,
.catalog-switchboard,
.catalog-layout-v93 {
  width: min(1380px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.catalog-intro-v93 {
  position: relative;
  min-height: 340px;
  margin-top: 24px;
  padding: 62px 70px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(118deg, rgba(7, 26, 51, .98) 0%, rgba(8, 41, 91, .96) 52%, rgba(23, 87, 232, .94) 100%);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(7, 26, 51, .22);
}

.catalog-intro-v93::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(114deg, transparent 0 57%, rgba(255, 255, 255, .11) 57.15% 57.35%, transparent 57.5%),
    linear-gradient(128deg, transparent 0 72%, rgba(185, 255, 48, .22) 72.1% 72.3%, transparent 72.45%);
  content: "";
  pointer-events: none;
}

.catalog-intro-v93::after {
  position: absolute;
  right: -8%;
  bottom: -55%;
  width: 52%;
  aspect-ratio: 1.8;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
  pointer-events: none;
}

.catalog-intro-v93 .catalog-intro-copy,
.catalog-intro-v93 .catalog-count {
  position: relative;
  z-index: 1;
}

.catalog-intro-v93 .eyebrow {
  color: var(--acid);
}

.catalog-intro-v93 h1 {
  max-width: 850px;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(48px, 5.5vw, 82px);
  font-variation-settings: "wght" 820;
  line-height: .94;
  letter-spacing: 0;
  text-wrap: balance;
}

.catalog-intro-v93 .catalog-intro-copy > p {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.55;
}

.catalog-intro-v93 .catalog-count {
  min-width: 220px;
  align-self: stretch;
  justify-content: center;
  padding-left: 44px;
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.catalog-intro-v93 .catalog-count small,
.catalog-intro-v93 .catalog-count span {
  color: rgba(255, 255, 255, .64);
}

.catalog-intro-v93 .catalog-count b {
  color: var(--acid);
  font-size: clamp(76px, 8vw, 118px);
  line-height: .85;
}

.catalog-confidence-v93 {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: -28px;
  padding: 0 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.catalog-confidence-v93 > div {
  display: grid;
  min-height: 96px;
  padding: 22px 28px;
  align-content: center;
  background: #fff;
  border: 1px solid #dce5f1;
  border-right: 0;
  box-shadow: 0 18px 42px rgba(7, 26, 51, .1);
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
}

.catalog-confidence-v93 > div:first-child {
  border-radius: 8px 0 0 8px;
}

.catalog-confidence-v93 > div:last-child {
  border-right: 1px solid #dce5f1;
  border-radius: 0 8px 8px 0;
}

.catalog-confidence-v93 span {
  display: grid;
  width: 30px;
  height: 30px;
  align-self: center;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--electric);
  background: #edf4ff;
  border-radius: 50%;
  font-size: 14px;
  font-variation-settings: "wght" 800;
}

.catalog-confidence-v93 b {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.catalog-confidence-v93 small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.35;
}

.catalog-switchboard {
  margin-top: 76px;
  padding: 34px;
  background: #fff;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 26, 51, .09);
}

.catalog-switchboard-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.catalog-switchboard-heading > div > span {
  color: var(--electric);
  font-size: 11px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.catalog-switchboard-heading h2 {
  margin-top: 7px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  font-variation-settings: "wght" 820;
  line-height: 1;
}

.catalog-switchboard-heading > a {
  color: var(--electric);
  font-size: 12px;
  font-variation-settings: "wght" 720;
}

.catalog-type-switcher {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.catalog-type-switcher > a {
  --switch-accent: var(--ink);
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  overflow: hidden;
  color: var(--ink);
  background: #f7f9fc;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  gap: 14px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.catalog-type-switcher > a::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--switch-accent);
  content: "";
  transform: scaleX(.3);
  transform-origin: left;
  transition: transform 220ms ease;
}

.catalog-type-switcher > a.catalog-kind-project {
  --switch-accent: var(--electric);
}

.catalog-type-switcher > a.catalog-kind-coursework {
  --switch-accent: var(--coral);
}

.catalog-type-switcher > a.catalog-kind-diploma {
  --switch-accent: #84b800;
}

.catalog-type-switcher > a:hover {
  border-color: color-mix(in srgb, var(--switch-accent) 55%, #dce4ef);
  transform: translateY(-2px);
}

.catalog-type-switcher > a:hover::before,
.catalog-type-switcher > a.is-active::before {
  transform: scaleX(1);
}

.catalog-type-switcher > a.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.catalog-type-switcher span {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.catalog-type-switcher small {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 9px;
  font-variation-settings: "wght" 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-type-switcher b {
  font-size: 16px;
  font-variation-settings: "wght" 800;
  line-height: 1.14;
}

.catalog-type-switcher em {
  display: grid;
  width: 38px;
  min-width: 38px;
  height: 38px;
  place-items: center;
  color: var(--switch-accent);
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--switch-accent) 24%, #dce4ef);
  border-radius: 50%;
  font-size: 13px;
  font-style: normal;
  font-variation-settings: "wght" 820;
}

.catalog-type-switcher .is-active small {
  color: rgba(255, 255, 255, .58);
}

.catalog-searchbar {
  display: grid;
  min-height: 64px;
  margin-top: 14px;
  align-items: stretch;
  background: #f7f9fc;
  border: 1px solid #d9e2ee;
  border-radius: 8px;
  grid-template-columns: minmax(280px, 1fr) 210px 190px;
}

.catalog-search-input {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
}

.catalog-search-input > i {
  position: absolute;
  left: 22px;
  width: 16px;
  height: 16px;
  border: 2px solid #7e8da4;
  border-radius: 50%;
  pointer-events: none;
}

.catalog-search-input > i::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  background: #7e8da4;
  content: "";
  transform: rotate(45deg);
}

.catalog-search-input input,
.catalog-sort-select select {
  width: 100%;
  min-width: 0;
  min-height: 62px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: 14px;
}

.catalog-search-input input {
  padding: 0 24px 0 54px;
}

.catalog-search-input input::placeholder {
  color: #8d9aaf;
}

.catalog-sort-select {
  display: flex;
  border-left: 1px solid #d9e2ee;
}

.catalog-sort-select select {
  padding: 0 42px 0 20px;
  cursor: pointer;
}

.catalog-searchbar button {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  margin: 6px;
  padding: 0 18px;
  color: #fff;
  background: var(--electric);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-variation-settings: "wght" 780;
  gap: 12px;
  transition: background 180ms ease, transform 180ms ease;
}

.catalog-searchbar button:hover {
  background: #0d48cd;
  transform: translateX(1px);
}

.catalog-searchbar button i {
  font-size: 16px;
  font-style: normal;
}

.catalog-subject-filter {
  display: grid;
  margin-top: 24px;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
}

.catalog-subject-filter > span {
  padding-top: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  font-variation-settings: "wght" 760;
  line-height: 1.25;
  text-transform: uppercase;
}

.catalog-subject-filter > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-subject-filter a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  color: #29405f;
  background: #fff;
  border: 1px solid #d8e1ec;
  border-radius: 17px;
  font-size: 11px;
  font-variation-settings: "wght" 680;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.catalog-subject-filter a:hover,
.catalog-subject-filter a.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.catalog-layout-v93 {
  display: block;
  margin-top: 56px;
  margin-bottom: 110px;
}

.catalog-layout-v93 .catalog-content {
  min-width: 0;
  width: 100%;
}

.catalog-toolbar-v93 {
  min-height: 64px;
  padding: 0 0 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7e1ed;
}

.catalog-toolbar-v93 b {
  color: var(--ink);
  font-size: 24px;
}

.catalog-toolbar-v93 span {
  color: var(--ink-soft);
}

.catalog-grid-v93 {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
}

.material-card-kind-project,
.home-material-card-kind-project,
.project-page-kind-project {
  --cover-accent: var(--electric);
}

.material-card-kind-coursework,
.home-material-card-kind-coursework,
.project-page-kind-coursework {
  --cover-accent: var(--coral);
}

.material-card-kind-diploma,
.home-material-card-kind-diploma,
.project-page-kind-diploma {
  --cover-accent: #91c900;
}

.catalog-grid-v93 .material-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(7, 26, 51, .1);
  flex-direction: column;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.catalog-grid-v93 .material-card:hover {
  box-shadow: 0 24px 58px rgba(7, 26, 51, .17);
  transform: translateY(-4px);
}

.catalog-grid-v93 .material-card-media {
  border: 0;
  border-top: 3px solid var(--cover-accent);
  border-radius: 0;
}

.catalog-grid-v93 .material-card .material-card-body {
  display: flex;
  min-height: 302px;
  padding: 18px;
  background: #fff;
  flex: 1;
  flex-direction: column;
}

.catalog-grid-v93 .material-card-top {
  min-height: 22px;
}

.catalog-grid-v93 .material-type {
  color: var(--cover-accent);
  font-size: 9px;
  font-variation-settings: "wght" 820;
}

.catalog-grid-v93 .material-pages {
  font-size: 10px;
}

.catalog-grid-v93 .material-card-copy {
  margin-top: 14px;
}

.catalog-grid-v93 .material-card h2 {
  min-height: 66px;
  font-size: 18px;
  line-height: 1.16;
  -webkit-line-clamp: 3;
}

.catalog-grid-v93 .material-card h2 a {
  color: inherit;
}

.catalog-grid-v93 .material-card p {
  min-height: 38px;
  margin-top: 9px;
  font-size: 11px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
}

.catalog-grid-v93 .material-options {
  display: flex;
  min-height: 48px;
  align-content: flex-start;
  flex-wrap: wrap;
  margin-top: 14px;
  gap: 6px;
}

.catalog-grid-v93 .material-options span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  color: #435873;
  background: #f1f5fa;
  border: 1px solid #e0e7ef;
  border-radius: 4px;
  font-size: 8px;
  font-variation-settings: "wght" 700;
  text-transform: uppercase;
}

.catalog-grid-v93 .material-card-bottom {
  display: flex;
  min-height: 58px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #e0e7f0;
  gap: 12px;
}

.catalog-grid-v93 .material-card-bottom > div {
  display: grid;
  gap: 2px;
}

.catalog-grid-v93 .material-card-bottom small {
  color: var(--ink-soft);
  font-size: 8px;
  font-variation-settings: "wght" 700;
  text-transform: uppercase;
}

.catalog-grid-v93 .material-card-bottom b {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.catalog-grid-v93 .material-card-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 8px 0 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  font-size: 10px;
  font-variation-settings: "wght" 760;
  gap: 10px;
}

.catalog-grid-v93 .material-card-action i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
}

.empty-state-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  gap: 22px;
}

.empty-state-actions > a:not(.button) {
  color: var(--electric);
  font-variation-settings: "wght" 720;
}

.home-material-card-kind-project,
.home-material-card-kind-coursework,
.home-material-card-kind-diploma {
  border-top: 3px solid var(--cover-accent);
}

.home-material-card .home-material-footer > div {
  display: grid;
  gap: 2px;
}

.home-material-card .home-material-footer > div small {
  color: var(--ink-soft);
  font-size: 8px;
  font-variation-settings: "wght" 700;
  text-transform: uppercase;
}

.home-material-card .home-material-footer > div > b,
.home-material-card-compact .home-material-footer > div > b {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-variation-settings: "wght" 850;
  line-height: 1;
  white-space: nowrap;
}

.catalog-revision-promise {
  display: grid;
  margin-top: 18px;
  padding: 22px 24px;
  align-items: center;
  color: #fff;
  background: var(--ink);
  border-left: 6px solid var(--acid);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(7, 26, 51, .18);
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 22px;
}

.catalog-revision-promise > span {
  color: var(--acid);
  font-size: 10px;
  font-variation-settings: "wght" 820;
  line-height: 1.2;
  text-transform: uppercase;
}

.catalog-revision-promise > b {
  font-size: 16px;
  font-variation-settings: "wght" 760;
  line-height: 1.35;
}

.catalog-revision-promise > small {
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-variation-settings: "wght" 650;
  white-space: nowrap;
}

.home-material-card .home-material-footer,
.home-material-card-compact .home-material-footer {
  min-height: 62px;
  margin-top: auto;
  padding: 9px 10px;
  background: #edffd0;
  border: 1px solid #cbea83;
  border-radius: 6px;
}

.home-material-card .home-material-footer > div small,
.home-material-card-compact .home-material-footer > div small {
  color: #41552b;
  font-size: 8px;
}

.home-material-card .home-material-footer > div > b,
.home-material-card-compact .home-material-footer > div > b {
  margin-top: 4px;
  font-size: 24px;
}

.catalog-grid-v93 .material-options .material-revision-included {
  color: var(--ink);
  background: #eaffbc;
  border-color: #c9eb7d;
}

.catalog-grid-v93 .material-card-bottom > div {
  min-width: 132px;
  padding: 8px 10px;
  background: #edffd0;
  border: 1px solid #cbea83;
  border-radius: 6px;
}

.catalog-grid-v93 .material-card-bottom > div small {
  color: #41552b;
}

.project-order-card .order-price > span,
.project-mobile-cta > span {
  color: var(--acid);
  font-variation-settings: "wght" 760;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .catalog-revision-promise {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .catalog-revision-promise > small {
    grid-column: 2;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .catalog-revision-promise {
    margin-top: 12px;
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .catalog-revision-promise > b {
    font-size: 15px;
  }

  .catalog-revision-promise > small {
    grid-column: auto;
  }

  .home-material-card .home-material-footer,
  .home-material-card-compact .home-material-footer {
    min-height: 66px;
  }
}

.home-material-card .home-material-footer a,
.home-material-card-compact .home-material-footer a {
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  gap: 8px;
}

.home-material-card .home-material-footer a span,
.home-material-card-compact .home-material-footer a span {
  color: var(--acid);
}

.project-page {
  --project-accent: var(--cover-accent, var(--electric));
}

.project-page .project-heading-block {
  padding-bottom: 28px;
  border-bottom: 1px solid #dbe4ef;
}

.project-page .project-title-row .material-type {
  color: var(--project-accent);
}

.project-page .project-specs {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
}

.project-page .project-preview {
  overflow: hidden;
  background: #edf3fb;
  border: 1px solid #d5e0ed;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 26, 51, .13);
}

.project-page .project-preview::before {
  border-color: var(--project-accent);
}

.project-page .material-blueprint,
.project-page .project-details-grid {
  border-radius: 8px;
}

.project-order-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d6e0ec;
  border-top: 4px solid var(--project-accent);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 26, 51, .14);
}

.project-order-benefits {
  display: grid;
  padding: 18px 24px;
  background: #f4f7fb;
  border-top: 1px solid #dfe7f0;
  border-bottom: 1px solid #dfe7f0;
  gap: 9px;
}

.project-order-benefits span {
  display: flex;
  align-items: center;
  color: #354b68;
  font-size: 11px;
  font-variation-settings: "wght" 660;
  gap: 9px;
}

.project-order-benefits i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--project-accent);
  background: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
}

.project-order-card .request-form {
  padding-top: 24px;
}

.catalog-type-switcher > a:focus-visible,
.catalog-searchbar input:focus-visible,
.catalog-searchbar select:focus-visible,
.catalog-searchbar button:focus-visible,
.catalog-subject-filter a:focus-visible,
.material-card-action:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .catalog-intro-v93,
  .catalog-confidence-v93,
  .catalog-switchboard,
  .catalog-layout-v93 {
    width: min(100% - 40px, 1100px);
  }

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

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

@media (max-width: 900px) {
  .catalog-intro-v93 {
    min-height: 0;
    padding: 48px 42px;
  }

  .catalog-intro-v93 h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  .catalog-intro-v93 .catalog-count {
    min-width: 160px;
    padding-left: 28px;
  }

  .catalog-confidence-v93 {
    padding: 0 12px;
  }

  .catalog-confidence-v93 > div {
    padding: 18px;
  }

  .catalog-switchboard {
    margin-top: 56px;
    padding: 26px;
  }

  .catalog-searchbar {
    grid-template-columns: minmax(0, 1fr) 180px;
  }

  .catalog-searchbar button {
    min-height: 52px;
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 640px) {
  .catalog-intro-v93,
  .catalog-confidence-v93,
  .catalog-switchboard,
  .catalog-layout-v93 {
    width: calc(100% - 24px);
  }

  .catalog-intro-v93 {
    display: block;
    margin-top: 12px;
    padding: 34px 24px 30px;
  }

  .catalog-intro-v93 h1 {
    margin-top: 14px;
    font-size: clamp(36px, 11.5vw, 49px);
    line-height: .98;
  }

  .catalog-intro-v93 .catalog-intro-copy > p {
    margin-top: 20px;
    font-size: 14px;
  }

  .catalog-intro-v93 .catalog-count {
    display: flex;
    min-width: 0;
    min-height: 0;
    align-items: baseline;
    justify-content: flex-start;
    margin-top: 28px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 0;
    gap: 9px;
  }

  .catalog-intro-v93 .catalog-count small {
    width: 100%;
  }

  .catalog-intro-v93 .catalog-count b {
    font-size: 54px;
  }

  .catalog-confidence-v93 {
    display: grid;
    margin-top: -10px;
    padding: 0 8px;
    grid-template-columns: 1fr;
  }

  .catalog-confidence-v93 > div,
  .catalog-confidence-v93 > div:first-child,
  .catalog-confidence-v93 > div:last-child {
    min-height: 76px;
    padding: 14px 16px;
    border: 1px solid #dce5f1;
    border-bottom: 0;
    border-radius: 0;
  }

  .catalog-confidence-v93 > div:first-child {
    border-radius: 8px 8px 0 0;
  }

  .catalog-confidence-v93 > div:last-child {
    border-bottom: 1px solid #dce5f1;
    border-radius: 0 0 8px 8px;
  }

  .catalog-switchboard {
    margin-top: 42px;
    padding: 18px;
  }

  .catalog-switchboard-heading h2 {
    font-size: 30px;
  }

  .catalog-type-switcher {
    display: flex;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .catalog-type-switcher::-webkit-scrollbar {
    display: none;
  }

  .catalog-type-switcher > a {
    width: 238px;
    min-width: 238px;
    min-height: 94px;
    padding: 16px;
    scroll-snap-align: start;
  }

  .catalog-searchbar {
    display: grid;
    min-height: 0;
    background: transparent;
    border: 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .catalog-search-input,
  .catalog-sort-select {
    min-height: 54px;
    background: #f7f9fc;
    border: 1px solid #d9e2ee;
    border-radius: 6px;
  }

  .catalog-search-input input,
  .catalog-sort-select select {
    min-height: 52px;
  }

  .catalog-sort-select {
    border-left: 1px solid #d9e2ee;
  }

  .catalog-searchbar button {
    min-height: 52px;
    margin: 0;
  }

  .catalog-subject-filter > div {
    display: flex;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .catalog-subject-filter > div::-webkit-scrollbar {
    display: none;
  }

  .catalog-subject-filter a {
    flex: 0 0 auto;
  }

  .catalog-layout-v93 {
    margin-top: 42px;
    margin-bottom: 72px;
  }

  .catalog-toolbar-v93 {
    display: grid;
    gap: 12px;
  }

  .catalog-grid-v93 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .catalog-grid-v93 .material-card .material-card-body {
    min-height: 0;
  }

  .catalog-grid-v93 .material-card h2,
  .catalog-grid-v93 .material-card p {
    min-height: 0;
  }

  .catalog-grid-v93 .material-options {
    min-height: 0;
  }

  .project-order-benefits {
    padding: 16px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-type-switcher > a,
  .catalog-searchbar button,
  .catalog-grid-v93 .material-card {
    transition: none;
  }

  .catalog-type-switcher > a:hover,
  .catalog-searchbar button:hover,
  .catalog-grid-v93 .material-card:hover {
    transform: none;
  }
}

/* v93 QA corrections: readable count, aligned confidence row, stable type accents. */
.catalog-intro-v93 .catalog-count {
  padding: 30px 34px;
  color: var(--ink);
  background: var(--acid);
  border: 0;
  border-radius: 4px;
}

.catalog-intro-v93 .catalog-count small,
.catalog-intro-v93 .catalog-count span {
  color: rgba(7, 26, 51, .68);
}

.catalog-intro-v93 .catalog-count b {
  color: var(--ink);
}

.catalog-confidence-v93 > div {
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
}

.catalog-confidence-v93 > div > span {
  grid-column: 1;
  grid-row: 1 / 3;
}

.catalog-confidence-v93 > div > b {
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
}

.catalog-confidence-v93 > div > small {
  min-width: 0;
  grid-column: 2;
  grid-row: 2;
}

.catalog-grid-v93 .material-card.material-card-kind-project,
.material-grid-home .home-material-card.home-material-card-kind-project {
  --cover-accent: var(--electric);
}

.catalog-grid-v93 .material-card.material-card-kind-coursework,
.material-grid-home .home-material-card.home-material-card-kind-coursework {
  --cover-accent: var(--coral);
}

.catalog-grid-v93 .material-card.material-card-kind-diploma,
.material-grid-home .home-material-card.home-material-card-kind-diploma {
  --cover-accent: #91c900;
}

@media (max-width: 640px) {
  .catalog-intro-v93 .catalog-count {
    padding: 18px 0 0;
    color: #fff;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-radius: 0;
  }

  .catalog-intro-v93 .catalog-count small,
  .catalog-intro-v93 .catalog-count span {
    color: rgba(255, 255, 255, .64);
  }

  .catalog-intro-v93 .catalog-count b {
    color: var(--acid);
  }
}

/* Kursovik v96: editorial catalog scene and service directory. */
.catalog-preview-v96 {
  position: relative;
  padding-top: 96px;
  padding-bottom: 108px;
  overflow: visible;
  color: var(--ink);
  background:
    linear-gradient(128deg, rgba(29, 98, 239, .065) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #f7f9fd 0%, #edf3fc 100%);
  box-shadow: 0 0 0 100vmax #f2f6fc;
  clip-path: inset(0 -100vmax);
}

.catalog-preview-v96::before {
  position: absolute;
  top: 40px;
  right: -20px;
  color: rgba(29, 98, 239, .045);
  content: "ТЕМА ЕСТЬ";
  font-size: clamp(110px, 15vw, 230px);
  font-variation-settings: "wght" 900;
  line-height: .8;
  letter-spacing: 0;
  pointer-events: none;
}

.catalog-preview-v96 .section-heading {
  position: relative;
  z-index: 1;
  align-items: end;
}

.catalog-preview-v96 .section-heading h2 {
  max-width: 870px;
  color: var(--ink);
  font-size: clamp(48px, 4.8vw, 68px);
  line-height: .96;
}

.catalog-preview-v96 .eyebrow,
.catalog-preview-v96 .text-link {
  color: var(--electric);
}

.catalog-preview-v96 .catalog-heading-actions {
  align-items: flex-end;
}

.catalog-preview-v96 .catalog-live {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 10px 28px rgba(7, 26, 51, .13);
}

.catalog-preview-v96 .catalog-explorer {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 52px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(7, 26, 51, .14);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(32, 61, 110, .12);
  grid-template-columns: minmax(235px, .27fr) minmax(0, .73fr);
  grid-template-rows: auto minmax(178px, auto);
}

.catalog-preview-v96 .catalog-explorer-head {
  display: flex;
  min-width: 0;
  padding: 30px 28px;
  align-items: flex-start;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(29, 98, 239, .22), transparent 56%),
    var(--ink);
  flex-direction: column;
  grid-column: 1;
  grid-row: 1 / 3;
}

.catalog-preview-v96 .catalog-explorer-head > div > span {
  color: var(--acid);
}

.catalog-preview-v96 .catalog-explorer-head h3 {
  max-width: 190px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: .96;
}

.catalog-preview-v96 .catalog-explorer-head > a {
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
  justify-content: space-between;
  color: rgba(255, 255, 255, .72);
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.catalog-preview-v96 .catalog-explorer-head > a b,
.catalog-preview-v96 .catalog-explorer-head > a span {
  color: #fff;
}

.catalog-preview-v96 .catalog-explorer-meta {
  display: grid;
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
  color: rgba(255, 255, 255, .68);
  border-top: 1px solid rgba(255, 255, 255, .17);
  gap: 6px;
}

.catalog-preview-v96 .catalog-explorer-meta span {
  color: var(--acid);
  font-size: 9px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.catalog-preview-v96 .catalog-explorer-meta b {
  color: #fff;
  font-size: 11px;
  line-height: 1.45;
}

/* Homepage v105: concise proof block after the catalog */
.support-proof-v105 {
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 126px);
  padding-bottom: clamp(34px, 3.5vw, 52px);
  background:
    radial-gradient(circle at 82% 18%, rgba(29, 98, 239, .09), transparent 26%),
    linear-gradient(180deg, #f5f8fd 0%, #fff 100%);
  color: #071b38;
}

.support-proof-v105::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 98, 239, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 98, 239, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 78%);
}

.support-proof-v105::after {
  position: absolute;
  top: -30%;
  right: -8%;
  width: min(45vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(29, 98, 239, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(29, 98, 239, .025), 0 0 0 140px rgba(29, 98, 239, .018);
  content: "";
  pointer-events: none;
}

.support-proof-v105 > * {
  position: relative;
  z-index: 1;
}

.support-proof-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  min-height: 510px;
  border: 1px solid #d7e1ef;
  border-radius: 30px;
  background: linear-gradient(135deg, #fff 0%, #fff 58%, #edf4ff 100%);
  box-shadow: 0 30px 70px rgba(24, 50, 90, .11);
}

.support-proof-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(38px, 5vw, 76px);
}

.support-proof-kicker {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
  gap: 16px;
}

.support-proof-copy .eyebrow {
  margin: 0;
  color: #1d62ef;
}

.support-proof-kicker > b {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: #071b38;
  border: 1px solid rgba(184, 255, 43, .8);
  border-radius: 999px;
  background: rgba(184, 255, 43, .5);
  font-size: 11px;
  font-variation-settings: "wght" 780;
  white-space: nowrap;
}

.support-proof-copy h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(46px, 5vw, 78px);
  font-variation-settings: "wght" 850;
  line-height: .98;
  letter-spacing: 0;
  color: #071b38;
}

.support-proof-copy h2 em {
  position: relative;
  color: #1d62ef;
  font-style: normal;
  background: linear-gradient(transparent 78%, rgba(184, 255, 43, .7) 0);
}

.support-proof-copy > p {
  max-width: 720px;
  margin: 30px 0 0;
  color: #475d7a;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.58;
}

.support-proof-action {
  display: flex;
  align-items: center;
  margin-top: 36px;
  gap: 22px;
}

.support-proof-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  color: #fff;
  border-radius: 12px;
  background: #1d62ef;
  box-shadow: 0 14px 34px rgba(29, 98, 239, .22);
  font-size: 15px;
  font-variation-settings: "wght" 780;
  gap: 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.support-proof-action a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(29, 98, 239, .28);
}

.support-proof-action small {
  position: relative;
  max-width: 270px;
  padding: 11px 13px 11px 38px;
  color: #6a7d98;
  border: 1px solid #dbe5f2;
  border-radius: 12px;
  background: #f7faff;
  font-size: 12px;
  line-height: 1.45;
}

.support-proof-action small::before {
  position: absolute;
  top: 50%;
  left: 13px;
  display: grid;
  width: 17px;
  height: 17px;
  color: #071b38;
  border-radius: 50%;
  background: var(--acid);
  content: "✓";
  font-size: 10px;
  font-variation-settings: "wght" 900;
  place-items: center;
  transform: translateY(-50%);
}

.support-proof-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border-radius: 0 29px 29px 0;
}

.support-proof-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #082452 0%, transparent 35%), linear-gradient(0deg, rgba(3, 18, 42, .76), transparent 45%);
  content: "";
  pointer-events: none;
}

.support-proof-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(.9) contrast(1.04);
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.support-proof-main:hover .support-proof-visual img {
  transform: scale(1.085);
}

.support-proof-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  background: rgba(4, 24, 54, .7);
  backdrop-filter: blur(10px);
  gap: 2px 10px;
}

.support-proof-visual figcaption span {
  grid-row: 1 / 3;
  align-self: center;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 6px rgba(184, 255, 43, .12);
}

.support-proof-visual figcaption b {
  display: block;
  color: #fff;
  font-size: 14px;
  font-variation-settings: "wght" 760;
}

.support-proof-visual figcaption small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
}

.support-proof-visual figcaption i {
  align-self: center;
  color: var(--acid);
  font-style: normal;
  font-size: 20px;
}

.support-proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
  gap: 12px;
}

.support-proof-points article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 164px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #d7e1ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 38px rgba(24, 50, 90, .075);
  gap: 18px;
}

.support-proof-points article + article {
  border-left: 1px solid #d7e1ef;
}

.support-proof-points article > span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  padding: 0 10px;
  color: #1d62ef;
  border: 1px solid #cfdcf1;
  border-radius: 999px;
  background: #f4f8ff;
  font-size: 10px;
  font-variation-settings: "wght" 850;
  text-transform: uppercase;
}

.support-proof-points article:nth-child(2) > span {
  color: #071b38;
  border-color: rgba(184, 255, 43, .9);
  background: rgba(184, 255, 43, .55);
}

.support-proof-points article:nth-child(3) > span {
  color: #fff;
  border-color: #071b38;
  background: #071b38;
}

.support-proof-points article::after {
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(29, 98, 239, .11);
  border-radius: 50%;
  content: "";
}

.support-proof-points h3 {
  margin: 2px 0 8px;
  color: #071b38;
  font-size: clamp(18px, 1.35vw, 22px);
  font-variation-settings: "wght" 760;
}

.support-proof-points p {
  margin: 0;
  color: #657996;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .support-proof-main {
    grid-template-columns: 1fr;
  }

  .support-proof-visual {
    height: 360px;
    min-height: 0;
    margin: 0 14px 14px;
    border-radius: 20px;
  }

  .support-proof-visual::after {
    background: linear-gradient(0deg, rgba(3, 18, 42, .82), transparent 55%);
  }

  .support-proof-points {
    grid-template-columns: 1fr;
  }

  .support-proof-points article {
    min-height: 0;
  }

  .support-proof-points article + article {
    border-left: 1px solid #d7e1ef;
  }
}

@media (min-width: 601px) and (max-width: 960px) {
  .support-proof-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .support-proof-points article {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 210px;
    padding: 24px 20px;
    gap: 14px;
  }

  .support-proof-points article + article {
    border-top: 0;
    border-left: 1px solid #d7e1ef;
  }
}

@media (max-width: 600px) {
  .support-proof-v105 {
    padding-top: 56px;
    padding-right: 12px;
    padding-bottom: 26px;
    padding-left: 12px;
  }

  .support-proof-main {
    min-height: 0;
    border-radius: 24px;
  }

  .support-proof-copy {
    padding: 28px 22px;
  }

  .support-proof-kicker {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 10px;
  }

  .support-proof-copy h2 {
    font-size: clamp(34px, 10vw, 43px);
    line-height: 1.02;
  }

  .support-proof-copy > p {
    margin-top: 20px;
    font-size: 15px;
  }

  .support-proof-action {
    align-items: stretch;
    flex-direction: column;
    margin-top: 22px;
    gap: 14px;
  }

  .support-proof-action a {
    width: 100%;
  }

  .support-proof-action small {
    display: none;
  }

  .support-proof-visual {
    height: 228px;
    min-height: 0;
    margin: 0 10px 10px;
    border-radius: 18px;
  }

  .support-proof-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .support-proof-points {
    border-radius: 16px;
  }

  .support-proof-points article {
    min-height: 0;
    padding: 16px 18px;
    gap: 12px;
  }

  .support-proof-points article > span {
    min-height: 26px;
  }

  .support-proof-points h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 17px;
  }

  .support-proof-points p {
    font-size: 12px;
  }
}

.catalog-preview-v96 .catalog-type-tabs {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: rgba(245, 248, 253, .9);
  border: 0;
  border-bottom: 1px solid rgba(7, 26, 51, .12);
  border-radius: 0;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-preview-v96 .catalog-type-tabs a {
  position: relative;
  min-width: 0;
  min-height: 102px;
  margin: 0;
  padding: 25px 24px 22px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(7, 26, 51, .1);
  border-radius: 0;
  box-shadow: none;
}

.catalog-preview-v96 .catalog-type-tabs a:last-child {
  border-right: 0;
}

.catalog-preview-v96 .catalog-type-tabs a::after {
  top: auto;
  right: 22px;
  bottom: 0;
  left: 22px;
  width: auto;
  height: 4px;
  background: transparent;
  border: 0;
  border-radius: 4px 4px 0 0;
  box-shadow: none;
  content: "";
  opacity: 1;
  transform: none;
}

.catalog-preview-v96 .catalog-type-tabs a small {
  color: #71809a;
  font-size: 9px;
  letter-spacing: 0;
}

.catalog-preview-v96 .catalog-type-tabs a b {
  display: block;
  margin-top: 11px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.1;
}

.catalog-preview-v96 .catalog-type-tabs a.is-active,
.catalog-preview-v96 .catalog-type-tabs a:hover {
  color: var(--ink);
  background: #fff;
  box-shadow: none;
  transform: none;
}

.catalog-preview-v96 .catalog-type-tabs a.is-active::after {
  background: var(--electric);
}

.catalog-preview-v96 .catalog-type-tabs a.is-active small {
  color: var(--electric);
}

.catalog-preview-v96 .catalog-mode-panel {
  min-width: 0;
  padding: 25px 28px 28px;
  background: #fff;
  grid-column: 2;
  grid-row: 2;
}

.catalog-preview-v96 .catalog-subjects {
  align-items: start;
}

.catalog-preview-v96 .catalog-subject-list {
  gap: 7px;
}

.catalog-preview-v96 .catalog-subject-list a {
  min-height: 34px;
  padding: 8px 13px;
  color: #31435d;
  background: #f4f7fc;
  border-color: #dce4f0;
  border-radius: 10px;
}

.catalog-preview-v96 .catalog-subject-list a:hover {
  color: #fff;
  background: var(--electric);
  border-color: var(--electric);
  transform: translateY(-1px);
}

.catalog-preview-v96 .catalog-finder {
  margin-top: 20px;
  background: #f7f9fc;
  border-color: #d9e2f0;
  border-radius: 13px;
}

.catalog-preview-v96 .catalog-finder button {
  border-radius: 10px;
}

.catalog-preview-v96 .catalog-custom-route {
  min-height: 150px;
  padding: 4px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.catalog-preview-v96 .catalog-revision-promise {
  display: grid;
  min-height: 88px;
  margin-top: 22px;
  padding: 22px 26px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(29, 98, 239, .28), transparent 54%),
    var(--ink);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 20px 42px rgba(7, 26, 51, .13);
  grid-template-columns: minmax(155px, .22fr) minmax(0, .58fr) minmax(170px, .2fr);
  gap: 24px;
}

.catalog-preview-v96 .catalog-revision-promise::before {
  display: none;
}

.catalog-preview-v96 .catalog-revision-promise > span {
  align-self: center;
  color: var(--acid);
}

.catalog-preview-v96 .catalog-revision-promise > b {
  align-self: center;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.catalog-preview-v96 .catalog-revision-promise > small {
  align-self: center;
  justify-self: end;
  color: rgba(255, 255, 255, .56);
  text-align: right;
}

.catalog-preview-v96 .material-grid-home {
  display: grid;
  min-height: 0;
  margin-top: 28px;
  overflow: visible;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 18px;
}

.catalog-preview-v96 .home-material-card,
.catalog-preview-v96 .home-material-card:nth-child(2),
.catalog-preview-v96 .home-material-card-featured,
.catalog-preview-v96 .home-material-card-compact,
.catalog-preview-v96 .home-material-card-compact:nth-child(2),
.catalog-preview-v96 .home-material-card-compact:nth-child(3) {
  display: flex;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 26, 51, .12);
  border-radius: 18px;
  box-shadow: 0 17px 40px rgba(38, 67, 112, .1);
  flex-direction: column;
  grid-column: auto;
  grid-row: auto;
  transform: none;
}

.catalog-preview-v96 .home-material-card:hover,
.catalog-preview-v96 .home-material-card:nth-child(2):hover {
  border-color: rgba(29, 98, 239, .45);
  box-shadow: 0 24px 52px rgba(38, 67, 112, .16);
  transform: translateY(-5px);
}

.catalog-preview-v96 .home-material-media,
.catalog-preview-v96 .home-material-card-featured .home-material-media,
.catalog-preview-v96 .home-material-card-compact .home-material-media {
  min-height: 0;
  aspect-ratio: 1 / 1.02;
  border-width: 0 0 1px;
  border-color: rgba(7, 26, 51, .1);
  border-radius: 0;
}

.catalog-preview-v96 .home-material-card .home-material-body,
.catalog-preview-v96 .home-material-card-featured .home-material-body,
.catalog-preview-v96 .home-material-card-compact .home-material-body {
  min-height: 190px;
  padding: 17px 17px 16px;
}

.catalog-preview-v96 .home-material-card .home-material-copy h3,
.catalog-preview-v96 .home-material-card-featured .home-material-copy h3,
.catalog-preview-v96 .home-material-card-compact .home-material-copy h3 {
  min-height: 62px;
  font-size: 18px;
  line-height: 1.14;
}

.catalog-preview-v96 .home-material-footer,
.catalog-preview-v96 .home-material-card-compact .home-material-footer {
  min-height: 62px;
  margin: auto -5px -4px;
  padding: 10px 10px 10px 12px;
  background: #efffd1;
  border: 1px solid #cbe99a;
  border-radius: 11px;
}

.catalog-preview-v96 .home-material-footer a,
.catalog-preview-v96 .home-material-card-compact .home-material-footer a {
  min-height: 38px;
  padding: 0 12px;
  justify-content: center;
  color: #fff;
  background: var(--ink);
  border-radius: 9px;
}

.services-section-v96 {
  padding-top: 104px;
  padding-bottom: 108px;
}

.services-section-v96 .section-heading-split {
  align-items: end;
}

.services-section-v96 .section-heading h2 {
  max-width: 850px;
  font-size: clamp(48px, 4.8vw, 68px);
  line-height: .96;
}

.services-section-v96 .section-heading-split > p {
  max-width: 400px;
  padding-bottom: 4px;
  font-size: 16px;
  line-height: 1.55;
}

.services-section-v96 .services-composition {
  display: grid;
  margin-top: 54px;
  align-items: stretch;
  grid-template-columns: minmax(310px, .39fr) minmax(0, .61fr);
  gap: 34px;
}

.services-section-v96 .services-visual {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid #cfd9e7;
  border-radius: 24px;
  box-shadow: 0 28px 68px rgba(7, 26, 51, .14);
}

.services-section-v96 .services-visual::before {
  background: linear-gradient(180deg, transparent 34%, rgba(7, 26, 51, .9) 100%);
}

.services-section-v96 .services-visual::after {
  top: 20px;
  right: 20px;
  width: 76px;
  height: 7px;
  background: linear-gradient(90deg, var(--acid) 0 34%, var(--electric) 34% 100%);
  border: 0;
  border-radius: 999px;
}

.services-section-v96 .services-visual-code {
  top: 26px;
  left: 25px;
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border: 0;
  border-radius: 7px;
  backdrop-filter: blur(8px);
}

.services-section-v96 .services-visual figcaption {
  right: 28px;
  bottom: 30px;
  left: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.services-section-v96 .services-visual figcaption small {
  color: var(--acid);
}

.services-section-v96 .services-visual figcaption b {
  max-width: 390px;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(25px, 2.15vw, 33px);
  line-height: 1.04;
}

.services-section-v96 .services-visual figcaption span {
  max-width: 390px;
  margin-top: 15px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.45;
}

.services-section-v96 .services-list {
  display: grid;
  margin: 0;
  background: transparent;
  border-top: 1px solid #becbdd;
  grid-template-columns: 1fr;
}

.services-section-v96 .services-list article,
.services-section-v96 .services-list article:nth-child(even) {
  position: relative;
  display: grid;
  min-height: 102px;
  margin: 0;
  padding: 20px 52px 20px 18px;
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #becbdd;
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: 48px minmax(190px, .45fr) minmax(0, .55fr);
  gap: 14px;
}

.services-section-v96 .services-list article::before {
  position: absolute;
  top: 50%;
  right: 14px;
  left: auto;
  width: 30px;
  height: 30px;
  color: var(--electric);
  background: #edf3ff;
  border: 1px solid #ccdaf2;
  border-radius: 50%;
  content: "→";
  display: grid;
  place-items: center;
  font-size: 12px;
  opacity: 1;
  transform: translateY(-50%);
}

.services-section-v96 .services-list article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--electric);
  background: #edf3ff;
  border-radius: 50%;
  font-size: 10px;
}

.services-section-v96 .services-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.05;
}

.services-section-v96 .services-list p {
  max-width: 360px;
  margin: 0;
  color: #667790;
  font-size: 13px;
  line-height: 1.42;
}

.services-section-v96 .services-list article:nth-child(6) {
  background: linear-gradient(90deg, rgba(183, 255, 42, .18), transparent 72%);
}

.services-section-v96 .services-list article:nth-child(3) {
  color: var(--ink);
  background: transparent;
}

.services-section-v96 .services-list article:nth-child(2),
.services-section-v96 .services-list article:nth-child(5) {
  background: transparent;
}

.services-section-v96 .services-list article:nth-child(3) > span,
.services-section-v96 .services-list article:nth-child(3) p {
  color: inherit;
}

.services-section-v96 .services-list article:nth-child(3) > span {
  color: var(--electric);
  background: #edf3ff;
}

.services-section-v96 .services-list article:nth-child(3)::before {
  color: var(--electric);
  background: #edf3ff;
  border-color: #ccdaf2;
}

.services-section-v96 .services-list article:nth-child(6) > span,
.services-section-v96 .services-list article:nth-child(6)::before {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.services-section-v96 .services-list article:nth-child(6) h3 {
  color: var(--ink);
}

.services-section-v96 .services-list article:nth-child(6) p {
  color: #53657e;
}

@media (hover: hover) and (pointer: fine) {
  .services-section-v96 .services-list article:hover {
    padding-left: 26px;
    background-color: #f6f9fd;
    box-shadow: none;
    transform: none;
  }

  .services-section-v96 .services-list article:nth-child(6):hover {
    background-color: #f6f9fd;
  }
}

@media (max-width: 1080px) {
  .catalog-preview-v96 .catalog-explorer {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .catalog-preview-v96 .catalog-type-tabs a {
    padding-right: 16px;
    padding-left: 16px;
  }

  .catalog-preview-v96 .catalog-type-tabs a small {
    font-size: 8px;
  }

  .catalog-preview-v96 .material-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-section-v96 .services-composition {
    grid-template-columns: minmax(270px, .36fr) minmax(0, .64fr);
    gap: 24px;
  }

  .services-section-v96 .services-list article,
  .services-section-v96 .services-list article:nth-child(even) {
    padding-right: 42px;
    grid-template-columns: 42px minmax(155px, .44fr) minmax(0, .56fr);
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .catalog-preview-v96 .catalog-revision-promise {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .catalog-preview-v96 .catalog-revision-promise > span,
  .catalog-preview-v96 .catalog-revision-promise > b,
  .catalog-preview-v96 .catalog-revision-promise > small {
    grid-column: 1;
  }

  .catalog-preview-v96 .catalog-revision-promise > small {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .catalog-preview-v96 {
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .catalog-preview-v96::before {
    top: 28px;
    right: -8px;
    font-size: 30vw;
  }

  .catalog-preview-v96 .section-heading {
    align-items: start;
  }

  .catalog-preview-v96 .section-heading h2 {
    font-size: clamp(36px, 10.4vw, 48px);
  }

  .catalog-preview-v96 .catalog-heading-actions {
    width: 100%;
    margin-top: 24px;
    align-items: center;
    flex-direction: row;
  }

  .catalog-preview-v96 .catalog-explorer {
    margin-top: 32px;
    border-radius: 17px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .catalog-preview-v96 .catalog-explorer-head {
    min-height: 116px;
    padding: 21px 20px;
    justify-content: space-between;
    align-items: end;
    flex-direction: row;
    grid-column: 1;
    grid-row: 1;
  }

  .catalog-preview-v96 .catalog-explorer-head h3 {
    max-width: 190px;
    margin-top: 8px;
    font-size: 27px;
  }

  .catalog-preview-v96 .catalog-explorer-head > a {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .catalog-preview-v96 .catalog-explorer-head > a b {
    display: none;
  }

  .catalog-preview-v96 .catalog-type-tabs {
    grid-column: 1;
    grid-row: 2;
  }

  .catalog-preview-v96 .catalog-type-tabs a {
    min-height: 72px;
    padding: 15px 8px 13px;
    text-align: center;
  }

  .catalog-preview-v96 .catalog-type-tabs a small {
    display: none;
  }

  .catalog-preview-v96 .catalog-type-tabs a b {
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
  }

  .catalog-preview-v96 .catalog-type-tabs a::after {
    right: 10px;
    left: 10px;
  }

  .catalog-preview-v96 .catalog-mode-panel {
    padding: 20px;
    grid-column: 1;
    grid-row: 3;
  }

  .catalog-preview-v96 .catalog-subjects {
    gap: 12px;
  }

  .catalog-preview-v96 .catalog-subject-list {
    display: flex;
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px 4px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .catalog-preview-v96 .catalog-subject-list::-webkit-scrollbar {
    display: none;
  }

  .catalog-preview-v96 .catalog-subject-list a {
    flex: 0 0 auto;
  }

  .catalog-preview-v96 .catalog-finder {
    display: grid;
    padding: 6px;
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .catalog-preview-v96 .catalog-finder-sort {
    display: none;
  }

  .catalog-preview-v96 .catalog-finder button {
    min-width: 48px;
    padding: 0;
  }

  .catalog-preview-v96 .catalog-finder button span {
    display: none;
  }

  .catalog-preview-v96 .catalog-revision-promise {
    min-height: 0;
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .catalog-preview-v96 .catalog-revision-promise > small {
    justify-self: start;
    text-align: left;
  }

  .catalog-preview-v96 .material-grid-home {
    display: grid;
    margin-top: 20px;
    padding: 0;
    overflow: visible;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .catalog-preview-v96 .home-material-card,
  .catalog-preview-v96 .home-material-card-featured,
  .catalog-preview-v96 .home-material-card-compact,
  .catalog-preview-v96 .home-material-card:last-child:nth-child(odd) {
    width: auto;
    max-width: none;
    min-height: 0;
    flex-basis: auto;
  }

  .catalog-preview-v96 .home-material-card .home-material-body,
  .catalog-preview-v96 .home-material-card-featured .home-material-body,
  .catalog-preview-v96 .home-material-card-compact .home-material-body {
    min-height: 184px;
    padding: 14px;
  }

  .services-section-v96 {
    padding-top: 66px;
    padding-bottom: 70px;
  }

  .services-section-v96 .section-heading h2 {
    font-size: clamp(36px, 10.4vw, 48px);
  }

  .services-section-v96 .section-heading-split > p {
    margin-top: 22px;
    font-size: 14px;
  }

  .services-section-v96 .services-composition {
    margin-top: 34px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-section-v96 .services-visual {
    min-height: 460px;
  }

  .services-section-v96 .services-list article,
  .services-section-v96 .services-list article:nth-child(even) {
    min-height: 96px;
    padding: 18px 42px 18px 4px;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 4px 11px;
  }

  .services-section-v96 .services-list article > span {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .services-section-v96 .services-list h3 {
    font-size: 20px;
    grid-column: 2;
    grid-row: 1;
  }

  .services-section-v96 .services-list p {
    font-size: 12px;
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 520px) {
  .catalog-preview-v96 .catalog-live {
    display: none;
  }

  .catalog-preview-v96 .catalog-heading-actions {
    margin-top: 16px;
  }

  .catalog-preview-v96 .material-grid-home {
    grid-template-columns: 1fr;
  }

  .catalog-preview-v96 .home-material-media,
  .catalog-preview-v96 .home-material-card-featured .home-material-media,
  .catalog-preview-v96 .home-material-card-compact .home-material-media {
    aspect-ratio: 1.12;
  }

  .catalog-preview-v96 .home-material-card .home-material-body,
  .catalog-preview-v96 .home-material-card-featured .home-material-body,
  .catalog-preview-v96 .home-material-card-compact .home-material-body {
    min-height: 174px;
  }

  .services-section-v96 .services-visual {
    min-height: 390px;
    border-radius: 18px;
  }

  .services-section-v96 .services-visual figcaption {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .services-section-v96 .services-visual figcaption b {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-preview-v96 .home-material-card,
  .catalog-preview-v96 .catalog-subject-list a,
  .services-section-v96 .services-list article {
    transition: none;
  }

  .catalog-preview-v96 .home-material-card:hover,
  .catalog-preview-v96 .catalog-subject-list a:hover,
  .services-section-v96 .services-list article:hover {
    transform: none;
  }
}

/* Kursovik v97: purchase-to-revision route and editorial review spread. */
.process-section-v97 {
  position: relative;
  display: block;
  padding-top: 62px;
  padding-bottom: 112px;
  overflow: visible;
  background: #fff;
  grid-template-columns: none;
}

.process-section-v97::before,
.process-section-v97::after {
  display: none;
}

.process-v97-heading {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, .64fr) minmax(320px, .36fr);
  gap: 68px;
}

.process-v97-heading h2 {
  max-width: 880px;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(48px, 4.8vw, 68px);
  line-height: .96;
  letter-spacing: 0;
}

.process-v97-heading > div:last-child {
  margin-top: 48px;
  padding: 22px 24px;
  border-left: 3px solid var(--electric);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, rgba(29, 98, 239, .075), rgba(29, 98, 239, .015));
}

.process-v97-heading p {
  max-width: 420px;
  margin: 0;
  color: #53657e;
  font-size: 15px;
  line-height: 1.58;
}

.process-v97-heading a {
  display: inline-flex;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--electric);
  border-radius: 10px;
  font-size: 13px;
  font-variation-settings: "wght" 760;
  gap: 24px;
}

.process-v97-stage {
  display: grid;
  min-height: 650px;
  margin-top: 56px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 26, 51, .18);
  border-radius: 24px;
  box-shadow: 0 30px 76px rgba(7, 26, 51, .17);
  grid-template-columns: minmax(0, 1fr) minmax(285px, .31fr);
  grid-template-rows: 146px minmax(0, 1fr);
}

.process-v97-intro {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 146px;
  padding: 28px 34px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(29, 98, 239, .38), transparent 56%),
    var(--ink);
  grid-column: 1 / -1;
  grid-row: 1;
  grid-template-columns: minmax(145px, .2fr) minmax(330px, .5fr) minmax(230px, .3fr);
  gap: 30px;
}

.process-v97-intro::before {
  position: absolute;
  top: -110px;
  right: 80px;
  bottom: auto;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, .035), 0 0 0 68px rgba(255, 255, 255, .025);
  content: "";
}

.process-v97-intro > span {
  color: var(--acid);
  font-size: 10px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.process-v97-intro > b {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(29px, 2.5vw, 38px);
  font-variation-settings: "wght" 820;
  line-height: 1.02;
}

.process-v97-intro > small {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  line-height: 1.45;
}

.process-v97-route {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: #fff;
  list-style: none;
  grid-column: 1;
  grid-row: 2;
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.process-v97-route::before {
  position: absolute;
  z-index: 0;
  top: 50px;
  bottom: 50px;
  left: 54px;
  width: 1px;
  background: linear-gradient(#b9cdf3, #1d62ef 52%, #b7ff2a);
  content: "";
}

.process-v97-route li,
.process-section-v97 .process-v97-route li {
  position: relative;
  display: grid;
  min-height: 0;
  margin: 0;
  padding: 20px 28px 20px 31px;
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #c9d4e3;
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
}

.process-v97-route li:last-child {
  background: linear-gradient(90deg, rgba(183, 255, 42, .2), transparent 76%);
  border-bottom: 0;
}

.process-v97-route li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--electric);
  background: #edf3ff;
  border-radius: 50%;
  font-size: 10px;
  font-variation-settings: "wght" 820;
}

.process-v97-route li:last-child > span {
  color: var(--ink);
  background: var(--acid);
}

.process-v97-route li div {
  display: grid;
  min-width: 0;
  align-items: baseline;
  grid-template-columns: minmax(185px, .42fr) minmax(0, .58fr);
  column-gap: 24px;
}

.process-v97-route li small {
  color: var(--electric);
  font-size: 9px;
  font-variation-settings: "wght" 800;
  grid-column: 1 / -1;
  text-transform: uppercase;
}

.process-v97-route h3 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.08;
}

.process-v97-route p {
  margin: 5px 0 0;
  color: #667790;
  font-size: 12px;
  line-height: 1.5;
}

.process-v97-promise {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 34px 29px 30px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(152deg, rgba(255, 255, 255, .16), transparent 42%),
    var(--electric);
  flex-direction: column;
  grid-column: 2;
  grid-row: 2;
}

.process-v97-promise::after {
  position: absolute;
  right: -34px;
  bottom: 105px;
  color: rgba(255, 255, 255, .1);
  content: "✓";
  font-size: 180px;
  font-variation-settings: "wght" 900;
  line-height: 1;
  pointer-events: none;
}

.process-v97-promise > span {
  position: relative;
  z-index: 1;
  color: var(--acid);
  font-size: 10px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.process-v97-promise > b {
  position: relative;
  z-index: 1;
  margin-top: 21px;
  font-size: clamp(29px, 2.6vw, 39px);
  font-variation-settings: "wght" 840;
  line-height: .98;
}

.process-v97-promise > p {
  position: relative;
  z-index: 1;
  max-width: 220px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, .73);
  font-size: 12px;
  line-height: 1.48;
}

.process-v97-promise > ul {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .86);
  list-style: none;
  gap: 13px;
}

.process-v97-promise > ul li {
  position: relative;
  padding-left: 23px;
  font-size: 11px;
  line-height: 1.4;
}

.process-v97-promise > ul li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 14px;
  height: 14px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--acid);
  content: "✓";
  font-size: 8px;
  font-variation-settings: "wght" 900;
  place-items: center;
}

.process-v97-promise > a {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 50px;
  margin-top: auto;
  padding: 0 15px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--acid);
  border-radius: 10px;
  font-size: 12px;
  font-variation-settings: "wght" 780;
}

.process-v97-promise > a i {
  font-style: normal;
}

.reviews-section-v97 {
  position: relative;
  padding-top: 104px;
  padding-bottom: 112px;
  overflow: visible;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08) 0 18%, transparent 18% 100%),
    var(--electric);
  box-shadow: 0 0 0 100vmax var(--electric);
  clip-path: inset(0 -100vmax);
}

.reviews-section-v97::before {
  position: absolute;
  top: 50px;
  right: -10px;
  color: rgba(255, 255, 255, .055);
  content: "ОТЗЫВЫ";
  font-size: clamp(105px, 14vw, 210px);
  font-variation-settings: "wght" 900;
  line-height: .8;
  pointer-events: none;
}

.reviews-section-v97 .section-heading {
  position: relative;
  z-index: 1;
  align-items: end;
}

.reviews-section-v97 .eyebrow {
  color: var(--acid);
}

.reviews-section-v97 .section-heading h2 {
  max-width: 880px;
  color: #fff;
  font-size: clamp(48px, 4.8vw, 68px);
  line-height: .96;
}

.reviews-section-v97 .reviews-note {
  padding: 11px 14px;
  color: var(--ink);
  background: var(--acid);
  border: 0;
  border-radius: 8px;
  font-size: 10px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.reviews-section-v97 .reviews-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 590px;
  margin-top: 52px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 24px;
  box-shadow: 0 34px 80px rgba(7, 26, 51, .25);
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr);
  gap: 0;
}

.reviews-section-v97 .review-card,
.reviews-section-v97 .review-card-featured,
.reviews-section-v97 .review-stack .review-card,
.reviews-section-v97 .review-stack .review-card:first-child,
.reviews-section-v97 .review-stack .review-card:last-child {
  position: relative;
  min-width: 0;
  margin: 0;
  color: var(--ink);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.reviews-section-v97 .review-card-featured {
  display: flex;
  min-height: 590px;
  padding: 48px 52px 44px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(29, 98, 239, .06), transparent 46%),
    #fff;
  border-right: 1px solid #c8d4e4;
  flex-direction: column;
}

.reviews-section-v97 .review-card-featured::before {
  position: absolute;
  top: 82px;
  right: 28px;
  color: rgba(29, 98, 239, .09);
  content: "“";
  font-family: Georgia, serif;
  font-size: 260px;
  line-height: .8;
  opacity: 1;
}

.reviews-section-v97 .review-index {
  position: relative;
  z-index: 1;
  color: var(--electric);
  font-size: 10px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.reviews-section-v97 .review-card-featured .review-index {
  color: var(--electric);
}

.reviews-section-v97 .review-card-featured blockquote {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 42px 0 0;
  color: var(--ink);
  font-size: clamp(25px, 2.25vw, 34px);
  font-variation-settings: "wght" 700;
  line-height: 1.16;
  letter-spacing: 0;
}

.reviews-section-v97 .review-card figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: auto;
  padding-top: 24px;
  align-items: flex-start;
  border-top: 1px solid #cfdae8;
  flex-direction: column;
}

.reviews-section-v97 .review-card figcaption b {
  color: inherit;
  font-size: 16px;
}

.reviews-section-v97 .review-card figcaption span {
  margin-top: 5px;
  color: #71809a;
  font-size: 11px;
}

.reviews-section-v97 .review-stack {
  position: relative;
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 0;
  background: var(--ink);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.reviews-section-v97 .review-stack::before {
  display: none;
}

.reviews-section-v97 .review-stack .review-card,
.reviews-section-v97 .review-stack .review-card:first-child,
.reviews-section-v97 .review-stack .review-card:last-child {
  display: flex;
  min-height: 0;
  padding: 36px 38px 32px;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .17);
  flex-direction: column;
}

.reviews-section-v97 .review-stack .review-card:last-child {
  background: #11366e;
  border-bottom: 0;
}

.reviews-section-v97 .review-stack .review-card:hover {
  background: #0b2b59;
  box-shadow: none;
  transform: none;
}

.reviews-section-v97 .review-stack .review-card:last-child:hover {
  background: #143f7e;
}

.reviews-section-v97 .review-stack .review-index {
  color: var(--acid);
}

.reviews-section-v97 .review-stack blockquote,
.reviews-section-v97 .review-stack .review-card blockquote {
  margin: 25px 0 0;
  color: #fff;
  font-size: 15px;
  font-variation-settings: "wght" 620;
  line-height: 1.48;
}

.reviews-section-v97 .review-stack .review-card figcaption {
  border-top-color: rgba(255, 255, 255, .17);
}

.reviews-section-v97 .review-stack .review-card figcaption span {
  color: rgba(255, 255, 255, .58);
}

@media (hover: hover) and (pointer: fine) {
  .process-v97-heading a:hover,
  .process-v97-promise > a:hover {
    box-shadow: 0 13px 30px rgba(7, 26, 51, .18);
    transform: translateY(-2px);
  }
}

@media (max-width: 1080px) {
  .process-v97-heading {
    grid-template-columns: minmax(0, .6fr) minmax(300px, .4fr);
    gap: 38px;
  }

  .process-v97-stage {
    grid-template-columns: minmax(0, .62fr) minmax(255px, .38fr);
    grid-template-rows: auto minmax(500px, auto);
  }

  .process-v97-intro {
    min-height: 190px;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .process-v97-intro > small {
    max-width: 360px;
    margin: 0;
  }

  .process-v97-route {
    grid-column: 1;
    grid-row: 2;
  }

  .process-v97-promise {
    grid-column: 2;
    grid-row: 2;
  }

  .process-v97-route li div {
    grid-template-columns: 1fr;
  }

  .reviews-section-v97 .reviews-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
  }
}

@media (max-width: 768px) {
  .process-section-v97,
  .reviews-section-v97 {
    padding-bottom: 72px;
  }

  .process-section-v97 {
    padding-top: 50px;
  }

  .reviews-section-v97 {
    padding-top: 68px;
  }

  .process-v97-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-v97-heading > div:last-child {
    margin-top: 0;
    padding: 19px 20px;
  }

  .process-v97-heading h2,
  .reviews-section-v97 .section-heading h2 {
    font-size: clamp(36px, 10.4vw, 48px);
  }

  .process-v97-heading p {
    font-size: 14px;
  }

  .process-v97-stage {
    margin-top: 36px;
    border-radius: 18px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .process-v97-intro,
  .process-v97-route,
  .process-v97-promise {
    grid-column: 1;
  }

  .process-v97-intro {
    min-height: 210px;
    padding: 26px 23px;
    grid-template-columns: 1fr;
    gap: 12px;
    grid-row: 1;
  }

  .process-v97-intro > b {
    font-size: 31px;
  }

  .process-v97-route {
    grid-row: 2;
  }

  .process-v97-route::before {
    top: 46px;
    bottom: 46px;
    left: 37px;
  }

  .process-v97-route li,
  .process-section-v97 .process-v97-route li {
    min-height: 126px;
    padding: 19px 18px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .process-v97-route li > span {
    width: 38px;
    height: 38px;
  }

  .process-v97-route li div {
    grid-template-columns: 1fr;
  }

  .process-v97-route h3 {
    font-size: 19px;
  }

  .process-v97-route p {
    margin-top: 8px;
    font-size: 12px;
  }

  .process-v97-promise {
    min-height: 350px;
    padding: 28px 24px 24px;
    grid-row: 3;
  }

  .process-v97-promise > b {
    font-size: 36px;
  }

  .reviews-section-v97::before {
    top: 34px;
    font-size: 28vw;
  }

  .reviews-section-v97 .section-heading {
    align-items: start;
  }

  .reviews-section-v97 .reviews-note {
    margin-top: 22px;
  }

  .reviews-section-v97 .reviews-grid {
    min-height: 0;
    margin-top: 34px;
    border-radius: 18px;
    grid-template-columns: 1fr;
  }

  .reviews-section-v97 .review-card-featured {
    min-height: 0;
    padding: 30px 25px 27px;
    border-right: 0;
    border-bottom: 1px solid #c8d4e4;
  }

  .reviews-section-v97 .review-card-featured::before {
    top: 62px;
    right: 8px;
    font-size: 190px;
  }

  .reviews-section-v97 .review-card-featured blockquote {
    margin-top: 32px;
    font-size: 23px;
    line-height: 1.2;
  }

  .reviews-section-v97 .review-card-featured figcaption {
    margin-top: 34px;
  }

  .reviews-section-v97 .review-stack {
    grid-template-rows: auto auto;
  }

  .reviews-section-v97 .review-stack .review-card,
  .reviews-section-v97 .review-stack .review-card:first-child,
  .reviews-section-v97 .review-stack .review-card:last-child {
    min-height: 330px;
    padding: 28px 24px 25px;
  }

  .reviews-section-v97 .review-stack blockquote,
  .reviews-section-v97 .review-stack .review-card blockquote {
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .process-v97-heading a {
    width: 100%;
  }

  .process-v97-intro {
    min-height: 205px;
  }

  .process-v97-promise {
    min-height: 330px;
  }

  .reviews-section-v97 .review-card-featured blockquote {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-v97-heading a,
  .process-v97-promise > a,
  .reviews-section-v97 .review-card {
    transition: none;
  }

  .process-v97-heading a:hover,
  .process-v97-promise > a:hover,
  .reviews-section-v97 .review-card:hover {
    transform: none;
  }
}

/* Kursovik v98: editorial FAQ and three-path conversion finale. */
.faq-section-v98 {
  display: block;
  padding-top: 108px;
  padding-bottom: 112px;
  background: #fff;
}

.faq-section-v98 .faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(310px, .37fr) minmax(0, .63fr);
  gap: 90px;
}

.faq-v98-side {
  position: sticky;
  top: 120px;
  min-width: 0;
}

.faq-section-v98 .section-heading {
  max-width: 460px;
}

.faq-section-v98 .section-heading h2 {
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(52px, 5.2vw, 72px);
  line-height: .94;
  letter-spacing: 0;
}

.faq-section-v98 .section-heading p {
  max-width: 380px;
  margin-top: 27px;
  color: #53657e;
  font-size: 15px;
  line-height: 1.58;
}

.faq-v98-quick {
  max-width: 420px;
  margin-top: 46px;
  padding: 23px 0 0;
  border-top: 3px solid var(--electric);
}

.faq-v98-quick > span {
  color: var(--electric);
  font-size: 10px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.faq-v98-quick > b {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 22px;
  font-variation-settings: "wght" 820;
  line-height: 1.1;
}

.faq-v98-quick > p {
  max-width: 340px;
  margin: 12px 0 0;
  color: #71809a;
  font-size: 12px;
  line-height: 1.48;
}

.faq-v98-quick > a {
  display: inline-flex;
  min-height: 46px;
  margin-top: 21px;
  padding: 0 17px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ink);
  border-radius: 9px;
  font-size: 12px;
  font-variation-settings: "wght" 760;
  gap: 28px;
}

.faq-v98-quick > a i {
  color: var(--acid);
  font-style: normal;
}

.faq-section-v98 .faq-list {
  margin: 0;
  padding: 0;
  background: transparent;
  border-top: 1px solid #bfcddd;
  border-radius: 0;
  counter-reset: faq-v98;
}

.faq-section-v98 .faq-list details,
.faq-section-v98 .faq-list details[open] {
  margin: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bfcddd;
  border-radius: 0;
  box-shadow: none;
  counter-increment: faq-v98;
}

.faq-section-v98 .faq-list summary,
.faq-section-v98 .faq-list details[open] summary,
.faq-section-v98 .faq-list summary:hover {
  display: grid;
  min-height: 112px;
  padding: 28px 4px;
  align-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: clamp(19px, 1.65vw, 24px);
  font-variation-settings: "wght" 760;
  line-height: 1.18;
  grid-template-columns: 50px minmax(0, 1fr) 42px;
  gap: 14px;
}

.faq-section-v98 .faq-list summary::before {
  position: static;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--electric);
  background: #edf3ff;
  border: 0;
  border-radius: 50%;
  content: counter(faq-v98, decimal-leading-zero);
  font-size: 9px;
  font-variation-settings: "wght" 820;
  opacity: 1;
  transform: none;
}

.faq-section-v98 .faq-list summary::after {
  position: static;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  justify-self: end;
  color: var(--electric);
  background: #fff;
  border: 1px solid #c9d6e7;
  border-radius: 50%;
  content: "+";
  font-size: 18px;
  font-variation-settings: "wght" 500;
  line-height: 1;
  transform: none;
}

.faq-section-v98 .faq-list details[open] summary::after {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  content: "−";
  transform: none;
}

.faq-section-v98 .faq-list details p {
  max-width: 650px;
  margin: -7px 0 0;
  padding: 0 58px 31px 68px;
  color: #53657e;
  font-size: 14px;
  line-height: 1.62;
}

.request-banner-v98 {
  position: relative;
  display: block;
  min-height: 0;
  margin-top: 0;
  margin-bottom: 92px;
  padding: 64px 62px 42px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(125deg, rgba(29, 98, 239, .3), transparent 44%),
    var(--ink);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 38px 86px rgba(7, 26, 51, .24);
  grid-template-columns: none;
}

.request-banner-v98::before,
.request-banner-v98::after {
  display: none;
}

section.request-banner-v98 > .request-v98-art {
  position: absolute;
  z-index: 0;
  top: -50px;
  right: -22px;
  left: auto;
  width: 44%;
  height: 440px;
  margin: 0;
  overflow: hidden;
  transform: none;
  pointer-events: none;
}

.request-v98-art span {
  position: absolute;
  top: -30px;
  right: -8px;
  color: rgba(255, 255, 255, .045);
  font-size: 380px;
  font-variation-settings: "wght" 900;
  line-height: 1;
}

.request-v98-art i {
  position: absolute;
  right: 18px;
  bottom: 78px;
  width: 260px;
  height: 86px;
  border-top: 2px solid rgba(183, 255, 42, .74);
  border-right: 2px solid rgba(183, 255, 42, .74);
  border-radius: 0 88px 0 0;
  transform: skewX(-22deg);
}

.request-v98-head {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, .66fr) minmax(300px, .34fr);
  gap: 62px;
}

.request-v98-head .eyebrow {
  grid-column: 1 / -1;
}

.request-v98-head h2 {
  max-width: 720px;
  margin: 23px 0 0;
  color: #fff;
  font-size: clamp(60px, 6.1vw, 84px);
  line-height: .9;
  letter-spacing: 0;
}

.request-v98-head p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.58;
}

.request-v98-options {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 52px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .23);
  border-bottom: 1px solid rgba(255, 255, 255, .23);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.request-v98-options > a {
  position: relative;
  display: flex;
  min-height: 234px;
  padding: 28px 30px 25px;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, .025);
  border-right: 1px solid rgba(255, 255, 255, .23);
  flex-direction: column;
}

.request-v98-options > a:nth-child(2) {
  background: var(--electric);
}

.request-v98-options > a:nth-child(3) {
  background: linear-gradient(145deg, rgba(183, 255, 42, .12), transparent 62%);
  border-right: 0;
}

.request-v98-options > a::before {
  position: absolute;
  right: -40px;
  bottom: -68px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  transition: transform 450ms cubic-bezier(.2, .7, .2, 1);
}

.request-v98-options > a > span {
  color: var(--acid);
  font-size: 9px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.request-v98-options > a > b {
  max-width: 270px;
  margin-top: 23px;
  color: #fff;
  font-size: clamp(23px, 2.05vw, 30px);
  font-variation-settings: "wght" 820;
  line-height: 1.02;
}

.request-v98-options > a > small {
  max-width: 250px;
  margin-top: auto;
  padding-top: 22px;
  color: rgba(255, 255, 255, .61);
  font-size: 11px;
  line-height: 1.45;
}

.request-v98-options > a > i {
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
}

.request-v98-foot {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 86px;
  padding-top: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.request-v98-foot > span {
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  font-variation-settings: "wght" 650;
}

.request-v98-foot > a {
  display: inline-flex;
  min-width: 210px;
  min-height: 52px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-variation-settings: "wght" 780;
}

.request-v98-foot > a i {
  color: var(--electric);
  font-style: normal;
}

@media (hover: hover) and (pointer: fine) {
  .faq-v98-quick > a:hover,
  .request-v98-foot > a:hover {
    box-shadow: 0 13px 32px rgba(7, 26, 51, .2);
    transform: translateY(-2px);
  }

  .request-v98-options > a:hover::before {
    transform: scale(1.35);
  }
}

@media (max-width: 1024px) {
  .faq-section-v98 .faq-layout {
    gap: 48px;
    grid-template-columns: minmax(270px, .36fr) minmax(0, .64fr);
  }

  .request-banner-v98 {
    padding-right: 42px;
    padding-left: 42px;
  }

  .request-v98-head {
    grid-template-columns: minmax(0, .6fr) minmax(280px, .4fr);
    gap: 34px;
  }

  .request-v98-options > a {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 768px) {
  .faq-section-v98 {
    padding-top: 70px;
    padding-bottom: 74px;
  }

  .faq-section-v98 .faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-v98-side {
    position: static;
  }

  .faq-section-v98 .section-heading h2 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .faq-v98-quick {
    margin-top: 34px;
  }

  .faq-section-v98 .faq-list summary,
  .faq-section-v98 .faq-list details[open] summary,
  .faq-section-v98 .faq-list summary:hover {
    min-height: 96px;
    padding: 22px 0;
    font-size: 18px;
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .faq-section-v98 .faq-list summary::before {
    width: 34px;
    height: 34px;
  }

  .faq-section-v98 .faq-list summary::after {
    width: 31px;
    height: 31px;
  }

  .faq-section-v98 .faq-list details p {
    margin-top: -4px;
    padding: 0 36px 25px 52px;
    font-size: 13px;
  }

  .request-banner-v98 {
    margin-bottom: 52px;
    padding: 38px 26px 24px;
    border-radius: 22px;
  }

  section.request-banner-v98 > .request-v98-art {
    top: 0;
    right: -40px;
    left: auto;
    width: 80%;
    height: 330px;
  }

  .request-v98-art span {
    font-size: 280px;
  }

  .request-v98-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .request-v98-head .eyebrow {
    grid-column: 1;
  }

  .request-v98-head h2 {
    font-size: clamp(50px, 13.5vw, 68px);
  }

  .request-v98-head p {
    max-width: 460px;
  }

  .request-v98-options {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .request-v98-options > a {
    min-height: 176px;
    padding: 23px 22px 21px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .23);
  }

  .request-v98-options > a:last-child {
    border-bottom: 0;
  }

  .request-v98-options > a > b {
    max-width: 310px;
    margin-top: 16px;
    font-size: 25px;
  }

  .request-v98-options > a > small {
    max-width: 265px;
    padding-top: 17px;
  }

  .request-v98-options > a > i {
    right: 20px;
    bottom: 20px;
  }

  .request-v98-foot {
    padding-top: 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .request-v98-foot > a {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .faq-v98-quick > a {
    width: 100%;
  }

  .request-banner-v98 {
    margin-right: 10px;
    margin-left: 10px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .request-v98-options > a > small {
    max-width: 225px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-v98-quick > a,
  .request-v98-options > a::before,
  .request-v98-foot > a {
    transition: none;
  }

  .faq-v98-quick > a:hover,
  .request-v98-options > a:hover::before,
  .request-v98-foot > a:hover {
    transform: none;
  }
}

/* Kursovik request workspace, v99 */
.custom-intro-v99 {
  position: relative;
  display: grid;
  min-height: 590px;
  width: min(1280px, calc(100% - 48px));
  margin: 30px auto 0;
  padding: 66px 64px 58px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .76fr);
  align-items: center;
  gap: 62px;
  color: var(--ink);
  background:
    linear-gradient(113deg, rgba(255, 255, 255, .72) 0 31%, transparent 31.2%),
    radial-gradient(circle at 76% 38%, rgba(23, 87, 232, .18), transparent 30rem),
    #eef4ff;
  border: 1px solid #c9d9f3;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(26, 59, 108, .1);
  isolation: isolate;
}

.custom-intro-v99::before {
  position: absolute;
  z-index: -1;
  top: -330px;
  right: -330px;
  width: 820px;
  height: 820px;
  background: transparent;
  border: 1px solid rgba(23, 87, 232, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(23, 87, 232, .025), 0 0 0 144px rgba(23, 87, 232, .018);
  content: "";
  pointer-events: none;
}

.custom-intro-v99::after {
  position: absolute;
  z-index: 0;
  right: 31%;
  bottom: 0;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, var(--electric) 0 62%, var(--acid) 62%);
  content: "";
}

.custom-intro-v99 > * {
  position: relative;
  z-index: 1;
}

.custom-intro-v99 .eyebrow {
  color: var(--electric);
}

.custom-intro-v99 h1 {
  max-width: 720px;
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(48px, 5.1vw, 72px);
  font-variation-settings: "wght" 820;
  line-height: .98;
  text-wrap: balance;
}

.custom-intro-v99 h1 em {
  display: block;
  margin-top: 8px;
  color: var(--electric);
  font-style: normal;
}

.custom-intro-v99 .custom-intro-copy > p:not(.custom-intro-note) {
  max-width: 680px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.custom-scenario-route {
  display: grid;
  margin-top: 28px;
  padding: 17px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 87, 232, .22);
  border-bottom: 1px solid rgba(23, 87, 232, .22);
}

.custom-scenario-route > span {
  display: grid;
  min-width: 0;
  padding: 0 18px;
  gap: 2px;
  border-right: 1px solid rgba(23, 87, 232, .16);
}

.custom-scenario-route > span:first-child {
  padding-left: 0;
}

.custom-scenario-route > span:last-child {
  padding-right: 0;
  border-right: 0;
}

.custom-scenario-route b {
  color: var(--ink);
  font-size: 13px;
  font-variation-settings: "wght" 780;
}

.custom-scenario-route small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.custom-intro-v99 .custom-intro-actions {
  margin-top: 24px;
}

.custom-intro-v99 .button {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 7px;
}

.custom-intro-v99 .button-primary {
  color: #fff;
  background: var(--electric);
  border-color: var(--electric);
}

.custom-intro-v99 .button-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.custom-intro-v99 .button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border-color: #c8d5e8;
}

.custom-intro-v99 .button-secondary:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.custom-intro-v99 .custom-intro-copy > p.custom-intro-note {
  display: flex;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
  gap: 8px;
}

.custom-intro-v99 .custom-intro-copy > p.custom-intro-note span {
  color: var(--electric);
}

.custom-workspace {
  position: relative;
  min-height: 470px;
}

.custom-workspace::before {
  position: absolute;
  top: 36px;
  right: -18px;
  bottom: 18px;
  left: 44px;
  background: var(--electric);
  border-radius: 8px;
  content: "";
  transform: rotate(3.2deg);
}

.custom-workspace figure {
  position: absolute;
  inset: 8px 24px 30px 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 26, 51, .14);
  border-radius: 8px;
  box-shadow: 0 34px 68px rgba(19, 53, 112, .24);
  transform: rotate(-1.2deg);
}

.custom-workspace figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 26, 51, .78));
  content: "";
}

.custom-workspace img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}

.custom-workspace figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  color: #fff;
  gap: 4px;
}

.custom-workspace figcaption span {
  color: var(--acid);
  font-size: 10px;
  font-variation-settings: "wght" 760;
  text-transform: uppercase;
}

.custom-workspace figcaption b {
  max-width: 290px;
  font-size: 21px;
  font-variation-settings: "wght" 760;
  line-height: 1.2;
}

.custom-revision-sticker {
  position: absolute;
  z-index: 4;
  top: 0;
  right: -2px;
  display: grid;
  width: 210px;
  min-height: 84px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid rgba(7, 26, 51, .12);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(7, 26, 51, .14);
  gap: 2px;
  transform: rotate(2deg);
}

.custom-revision-sticker span {
  font-size: 9px;
  font-variation-settings: "wght" 760;
  text-transform: uppercase;
}

.custom-revision-sticker b {
  font-size: 14px;
  line-height: 1.25;
}

.custom-workspace-mark {
  position: absolute;
  z-index: 5;
  right: 4px;
  bottom: 0;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border: 4px solid #eef4ff;
  border-radius: 50%;
  font-size: 18px;
  font-variation-settings: "wght" 820;
}

.custom-form-layout-v99 {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  padding: 104px 0 120px;
  grid-template-columns: minmax(330px, .62fr) minmax(590px, 1fr);
  gap: 78px;
  color: #fff;
  isolation: isolate;
}

.custom-form-layout-v99::before {
  position: absolute;
  z-index: -2;
  inset: 0 50%;
  width: 100vw;
  background:
    radial-gradient(circle at 18% 8%, rgba(200, 255, 61, .14), transparent 28rem),
    linear-gradient(180deg, #155eef, #0e4bca);
  content: "";
  transform: translateX(-50%);
}

.custom-form-layout-v99::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 50%;
  width: 100vw;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  content: "";
  transform: translateX(50%);
}

.custom-form-layout-v99 .custom-form-copy {
  top: calc(var(--header-height) + 34px);
}

.custom-form-layout-v99 .custom-form-copy .eyebrow {
  color: var(--acid);
}

.custom-form-layout-v99 .custom-form-copy h2 {
  max-width: 450px;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(46px, 4vw, 60px);
  line-height: .98;
}

.custom-form-layout-v99 .custom-form-copy > p {
  max-width: 430px;
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
  line-height: 1.65;
}

.custom-form-roadmap {
  display: grid;
  margin-top: 34px;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.custom-form-roadmap li {
  display: grid;
  min-height: 84px;
  padding: 17px 0;
  grid-template-columns: 44px minmax(0, 1fr);
  align-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.custom-form-roadmap span {
  color: var(--acid);
  font-size: 10px;
  font-variation-settings: "wght" 780;
  grid-row: 1 / 3;
}

.custom-form-roadmap b {
  color: #fff;
  font-size: 14px;
}

.custom-form-roadmap small {
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
}

.custom-form-layout-v99 .privacy-note {
  margin-top: 26px;
  padding: 18px 20px;
  background: rgba(7, 26, 51, .18);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
}

.custom-form-layout-v99 .privacy-note b {
  color: #fff;
}

.custom-form-layout-v99 .privacy-note span {
  color: rgba(255, 255, 255, .62);
}

.request-form-v99 {
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  box-shadow: 0 36px 90px rgba(7, 26, 51, .27);
  gap: 0;
}

.request-form-head {
  display: flex;
  min-height: 76px;
  padding: 22px 30px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--ink);
  gap: 18px;
}

.request-form-head span {
  color: var(--acid);
  font-size: 11px;
  font-variation-settings: "wght" 800;
  text-transform: uppercase;
}

.request-form-head b {
  font-size: 12px;
  font-variation-settings: "wght" 680;
}

.request-form-v99 .form-chapter,
.request-form-v99 .form-chapter:nth-of-type(2),
.request-form-v99 .form-chapter:nth-of-type(3) {
  margin: 0;
  padding: 34px 32px 38px;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  gap: 22px;
}

.request-form-v99 .form-chapter:focus-within {
  background: #fbfdff;
  box-shadow: inset 4px 0 0 var(--electric);
}

.request-form-v99 .form-chapter-heading {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 14px;
}

.request-form-v99 .form-chapter-heading span {
  display: inline-flex;
  width: auto;
  min-width: 56px;
  height: 27px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  color: var(--electric);
  background: #eaf1ff;
  border-radius: 999px;
  font-size: 9px;
  font-variation-settings: "wght" 800;
  text-transform: uppercase;
}

.request-form-v99 .form-chapter-heading h3 {
  font-size: 20px;
  line-height: 1.2;
}

.request-form-v99 .field > span,
.request-form-v99 .contact-picker legend,
.request-form-v99 .extras-picker legend {
  color: var(--ink-soft);
  font-size: 11px;
}

.request-form-v99 .field input,
.request-form-v99 .field select,
.request-form-v99 .field textarea {
  min-height: 54px;
  padding-inline: 15px;
  background: #f7faff;
  border-color: #cbd8ea;
  border-radius: 7px;
}

.request-form-v99 .field textarea {
  padding-top: 14px;
}

.request-form-v99 .contact-options span,
.request-form-v99 .check-options span {
  min-height: 46px;
  background: #f2f6fc;
  border-color: #d4deeb;
  border-radius: 7px;
}

.request-form-v99 .contact-options input:checked + span,
.request-form-v99 .check-options input:checked + span {
  color: #fff;
  background: var(--electric);
  border-color: var(--electric);
}

.request-form-v99 .file-field {
  min-height: 98px;
  padding: 18px;
  background: #f7faff;
  border: 1px dashed #9cb7df;
  border-radius: 7px;
}

.request-form-submit {
  display: grid;
  padding: 30px 32px 32px;
  background: #f4f8ff;
  gap: 14px;
}

.request-form-submit .button {
  min-height: 58px;
  color: #fff;
  background: var(--electric);
  border-color: var(--electric);
  border-radius: 7px;
  box-shadow: 0 16px 34px rgba(23, 87, 232, .19);
}

.request-form-submit .button:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.request-form-submit .form-footnote {
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1040px) {
  .custom-intro-v99 {
    padding-inline: 44px;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 38px;
  }

  .custom-intro-v99 h1 {
    font-size: clamp(45px, 5.4vw, 58px);
  }

  .custom-form-layout-v99 {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 46px;
  }
}

@media (min-width: 1041px) and (max-height: 820px) {
  .custom-intro-v99 {
    min-height: 620px;
    margin-top: 18px;
    padding: 34px 52px 30px;
    gap: 48px;
  }

  .custom-intro-v99 h1 {
    margin-top: 14px;
    font-size: clamp(50px, 4.45vw, 60px);
  }

  .custom-intro-v99 h1 em {
    margin-top: 4px;
  }

  .custom-intro-v99 .custom-intro-copy > p:not(.custom-intro-note) {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.55;
  }

  .custom-scenario-route {
    margin-top: 18px;
    padding: 12px 0;
  }

  .custom-intro-v99 .custom-intro-actions {
    margin-top: 16px;
  }

  .custom-intro-v99 .button {
    min-height: 49px;
  }

  .custom-intro-v99 .custom-intro-copy > p.custom-intro-note {
    margin-top: 10px;
  }

  .custom-workspace {
    min-height: 430px;
  }
}

@media (max-width: 820px) {
  .custom-intro-v99 {
    min-height: 0;
    padding: 44px 38px 38px;
    grid-template-columns: 1fr;
  }

  .custom-workspace {
    min-height: 330px;
  }

  .custom-workspace figure {
    inset: 8px 10% 22px 7%;
  }

  .custom-revision-sticker {
    right: 6%;
  }

  .custom-form-layout-v99 {
    padding-top: 68px;
    grid-template-columns: 1fr;
  }

  .custom-form-layout-v99 .custom-form-copy {
    position: static;
  }

  .custom-form-layout-v99 .custom-form-copy h2,
  .custom-form-layout-v99 .custom-form-copy > p {
    max-width: 680px;
  }

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

  .custom-form-roadmap li {
    min-height: 94px;
    padding: 17px;
    grid-template-columns: 1fr;
    border-right: 1px solid rgba(255, 255, 255, .22);
  }

  .custom-form-roadmap li:last-child {
    border-right: 0;
  }

  .custom-form-roadmap span {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .custom-intro-v99 {
    width: calc(100% - 28px);
    margin-top: 14px;
    padding: 34px 24px 24px;
    gap: 28px;
  }

  .custom-intro-v99::before {
    top: -220px;
    right: -330px;
    width: 660px;
    height: 660px;
  }

  .custom-intro-v99 h1 {
    margin-top: 16px;
    font-size: clamp(37px, 11vw, 45px);
    line-height: .98;
  }

  .custom-intro-v99 h1 em {
    margin-top: 5px;
  }

  .custom-intro-v99 .custom-intro-copy > p:not(.custom-intro-note) {
    margin-top: 17px;
    font-size: 14px;
    line-height: 1.55;
  }

  .custom-scenario-route {
    margin-top: 20px;
    padding: 13px 0;
  }

  .custom-scenario-route > span {
    padding: 0 9px;
  }

  .custom-scenario-route b {
    font-size: 11px;
  }

  .custom-scenario-route small {
    display: none;
  }

  .custom-intro-v99 .custom-intro-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .custom-intro-v99 .button {
    width: 100%;
    min-height: 52px;
  }

  .custom-intro-v99 .custom-intro-copy > p.custom-intro-note {
    align-items: flex-start;
    line-height: 1.45;
  }

  .custom-workspace {
    min-height: 218px;
  }

  .custom-workspace::before {
    top: 24px;
    right: 2px;
    bottom: 8px;
    left: 32px;
  }

  .custom-workspace figure {
    inset: 0 12px 17px 0;
  }

  .custom-workspace figcaption {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }

  .custom-workspace figcaption b {
    max-width: 220px;
    font-size: 16px;
  }

  .custom-revision-sticker {
    right: -1px;
    width: 164px;
    min-height: 66px;
    padding: 12px 13px;
  }

  .custom-revision-sticker span {
    font-size: 8px;
  }

  .custom-revision-sticker b {
    font-size: 11px;
  }

  .custom-workspace-mark {
    right: 0;
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .custom-form-layout-v99 {
    width: calc(100% - 24px);
    padding: 52px 0 72px;
    gap: 30px;
  }

  .custom-form-layout-v99 .custom-form-copy h2 {
    margin-top: 14px;
    font-size: clamp(36px, 10vw, 42px);
  }

  .custom-form-layout-v99 .custom-form-copy > p {
    margin-top: 16px;
    font-size: 13px;
  }

  .custom-form-roadmap {
    margin-top: 24px;
  }

  .custom-form-roadmap li {
    min-height: 76px;
    padding: 13px 8px;
  }

  .custom-form-roadmap span,
  .custom-form-roadmap small {
    display: none;
  }

  .custom-form-roadmap b {
    font-size: 11px;
  }

  .custom-form-layout-v99 .privacy-note {
    margin-top: 18px;
    padding: 15px;
  }

  .request-form-head {
    min-height: 68px;
    padding: 18px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .request-form-v99 .form-chapter,
  .request-form-v99 .form-chapter:nth-of-type(2),
  .request-form-v99 .form-chapter:nth-of-type(3) {
    padding: 25px 20px 28px;
    gap: 18px;
  }

  .request-form-v99 .form-grid {
    grid-template-columns: 1fr;
  }

  .request-form-v99 .form-chapter-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .request-form-v99 .form-chapter-heading h3 {
    font-size: 19px;
  }

  .request-form-v99 .contact-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .request-form-v99 .contact-options span {
    min-height: 44px;
    padding-inline: 5px;
    font-size: 9px;
  }

  .request-form-v99 .check-options {
    grid-template-columns: 1fr;
  }

  .request-form-v99 .file-field {
    align-items: flex-start;
    flex-direction: column;
  }

  .request-form-submit {
    padding: 24px 20px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .custom-workspace figure,
  .custom-revision-sticker {
    transform: none;
  }
}

/* Kursovik material showcase, v100 */
.project-showcase {
  position: relative;
  display: grid;
  min-height: 650px;
  margin-top: 30px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .72fr);
  grid-template-rows: minmax(0, 1fr) auto;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, .78) 0 29%, transparent 29.2%),
    radial-gradient(circle at 74% 34%, rgba(23, 87, 232, .16), transparent 28rem),
    #eef4ff;
  border: 1px solid #cbdaf0;
  border-radius: 8px;
  box-shadow: 0 30px 84px rgba(18, 53, 105, .11);
  isolation: isolate;
}

.project-showcase::before {
  position: absolute;
  z-index: -1;
  top: -390px;
  right: -330px;
  width: 860px;
  height: 860px;
  border: 1px solid rgba(23, 87, 232, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(23, 87, 232, .025), 0 0 0 148px rgba(23, 87, 232, .016);
  content: "";
}

.project-showcase::after {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 38%;
  width: 124px;
  height: 5px;
  background: linear-gradient(90deg, var(--electric) 0 64%, var(--acid) 64%);
  content: "";
}

.project-showcase-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  padding: 54px 58px 20px;
  flex-direction: column;
}

.project-showcase .project-title-row {
  justify-content: flex-start;
  gap: 18px;
}

.project-showcase .material-type {
  display: inline-flex;
  min-height: 32px;
  padding: 0 13px;
  align-items: center;
  color: var(--ink);
  background: var(--acid);
  border: 0;
  border-radius: 999px;
  font-size: 10px;
  font-variation-settings: "wght" 780;
}

.project-showcase .availability {
  color: var(--ink-soft);
  font-size: 11px;
}

.project-showcase .availability i {
  background: var(--electric);
  box-shadow: 0 0 0 5px rgba(23, 87, 232, .1);
}

.project-showcase h1 {
  max-width: 720px;
  margin-top: 32px;
  color: var(--ink);
  font-size: clamp(46px, 4.35vw, 63px);
  font-variation-settings: "wght" 820;
  line-height: .98;
  text-wrap: balance;
}

.project-showcase .project-lead {
  max-width: 700px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.project-showcase-specs {
  display: grid;
  margin-top: 0;
  padding-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 87, 232, .2);
}

.project-showcase-specs > div {
  display: grid;
  min-width: 0;
  padding: 0 18px;
  border-right: 1px solid rgba(23, 87, 232, .17);
  gap: 3px;
}

.project-showcase-specs > div:first-child {
  padding-left: 0;
}

.project-showcase-specs > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.project-showcase-specs span {
  color: var(--muted);
  font-size: 9px;
  font-variation-settings: "wght" 700;
  text-transform: uppercase;
}

.project-showcase-specs b {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.project-showcase-promise {
  display: flex;
  margin-top: 24px;
  padding-top: 18px;
  align-items: flex-start;
  color: var(--ink-soft);
  border-top: 1px solid rgba(23, 87, 232, .2);
  font-size: 12px;
  line-height: 1.55;
  gap: 14px;
}

.project-showcase-details {
  position: relative;
  z-index: 3;
  padding: 0 58px 48px;
  grid-column: 1;
  grid-row: 2;
}

.project-showcase-promise span {
  flex: 0 0 auto;
  color: var(--electric);
  font-size: 9px;
  font-variation-settings: "wght" 800;
  text-transform: uppercase;
}

.project-showcase-media {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 650px;
  margin: 0;
  grid-column: 2;
  grid-row: 1 / 3;
}

.project-showcase-media::before {
  position: absolute;
  top: 52px;
  right: -8px;
  bottom: 54px;
  left: 32px;
  background: var(--electric);
  border-radius: 8px;
  content: "";
  transform: rotate(2.6deg);
}

.project-showcase-image {
  position: absolute;
  inset: 32px 24px 116px 0;
  overflow: hidden;
  background: #dce7f5;
  border: 1px solid rgba(7, 26, 51, .15);
  border-radius: 8px;
  box-shadow: 0 32px 72px rgba(17, 48, 99, .25);
  transform: rotate(-1deg);
}

.project-showcase-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 43%, rgba(7, 26, 51, .82));
  content: "";
}

.project-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-showcase-image figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 26px;
  left: 24px;
  display: grid;
  color: #fff;
  gap: 4px;
}

.project-showcase-image figcaption span {
  color: var(--acid);
  font-size: 9px;
  font-variation-settings: "wght" 800;
  text-transform: uppercase;
}

.project-showcase-image figcaption b {
  display: -webkit-box;
  overflow: hidden;
  font-size: 19px;
  font-variation-settings: "wght" 760;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.project-showcase-image figcaption small {
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
}

.project-showcase-order {
  position: absolute;
  z-index: 5;
  right: 8px;
  bottom: 24px;
  left: 48px;
  display: grid;
  min-height: 124px;
  padding: 18px 22px;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(7, 26, 51, .28);
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 2px 18px;
  transition: background 220ms ease, transform 260ms ease;
}

.project-showcase-order > span {
  color: var(--acid);
  font-size: 9px;
  font-variation-settings: "wght" 780;
  text-transform: uppercase;
}

.project-showcase-order > b {
  align-self: end;
  font-size: 34px;
  line-height: 1;
}

.project-showcase-order > em {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-row: 1 / 3;
  font-size: 12px;
  font-style: normal;
  font-variation-settings: "wght" 760;
  gap: 12px;
}

.project-showcase-order > em i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-style: normal;
}

.project-showcase-order:hover {
  background: var(--electric);
  transform: translateY(-3px);
}

.project-showcase-mark {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 12px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #fff;
  background: var(--electric);
  border: 4px solid #eef4ff;
  border-radius: 50%;
  font-size: 16px;
  font-variation-settings: "wght" 820;
}

.project-layout-v100 {
  margin-top: 70px;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 58px;
}

.project-content-v100 .material-blueprint {
  margin-top: 0;
}

.project-layout-v100 .project-order-card {
  border-top-color: var(--acid);
}

.project-layout-v100 .order-price {
  background: var(--ink);
}

.project-layout-v100 .order-price > span,
.project-layout-v100 .order-price > b {
  color: var(--acid);
}

.project-layout-v100 .project-order-benefits {
  background: #f3f7fd;
}

.project-layout-v100 .project-order-card .field input,
.project-layout-v100 .project-order-card .field textarea {
  background: #f7faff;
  border-radius: 7px;
}

.project-layout-v100 .project-order-card .contact-options span {
  border-radius: 7px;
}

.project-layout-v100 .project-order-card .button {
  min-height: 56px;
  background: var(--electric);
  border-color: var(--electric);
  border-radius: 7px;
}

.project-order-footnote {
  margin-top: -5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1120px) {
  .project-showcase {
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .project-showcase-copy {
    padding-inline: 42px;
  }

  .project-showcase-details {
    padding-right: 42px;
    padding-left: 42px;
  }

  .project-showcase h1 {
    font-size: clamp(44px, 5vw, 56px);
  }

  .project-layout-v100 {
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .project-showcase {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .project-showcase-copy {
    padding: 42px 36px 34px;
    grid-column: 1;
    grid-row: 1;
  }

  .project-showcase .project-mobile-cta {
    display: grid;
    margin-top: 24px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 3px 18px;
  }

  .project-showcase .project-mobile-cta > span {
    grid-column: 1;
    grid-row: 1;
  }

  .project-showcase .project-mobile-cta > b {
    grid-column: 1;
    grid-row: 2;
    white-space: nowrap;
  }

  .project-showcase .project-mobile-cta > em {
    max-width: 120px;
    grid-column: 2;
    grid-row: 1 / 3;
    text-align: right;
  }

  .project-showcase-details {
    padding: 28px 36px 34px;
    grid-column: 1;
    grid-row: 3;
  }

  .project-showcase-specs {
    margin-top: 0;
  }

  .project-showcase-media {
    min-height: 390px;
    grid-column: 1;
    grid-row: 2;
  }

  .project-showcase-image {
    inset: 10px 30px 30px;
  }

  .project-showcase-media::before {
    inset: 30px 18px 18px 48px;
  }

  .project-showcase-order,
  .project-showcase-mark {
    display: none;
  }

  .project-layout-v100 {
    margin-top: 34px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .project-page {
    padding-top: 20px;
  }

  .project-breadcrumbs {
    padding-inline: 2px;
  }

  .project-showcase {
    margin-top: 18px;
  }

  .project-showcase-copy {
    padding: 28px 22px 24px;
  }

  .project-showcase-details {
    padding: 22px 22px 26px;
  }

  .project-showcase .project-title-row {
    align-items: flex-start;
    justify-content: space-between;
  }

  .project-showcase .material-type {
    min-height: 29px;
    padding-inline: 11px;
    font-size: 9px;
  }

  .project-showcase .availability {
    margin-top: 7px;
    font-size: 9px;
  }

  .project-showcase h1 {
    margin-top: 25px;
    font-size: clamp(36px, 10.5vw, 43px);
    line-height: .98;
  }

  .project-showcase .project-lead {
    margin-top: 17px;
    font-size: 14px;
    line-height: 1.55;
  }

  .project-showcase .project-mobile-cta {
    min-height: 86px;
    margin-top: 21px;
    padding: 14px 16px;
  }

  .project-showcase .project-mobile-cta > b {
    font-size: 26px;
  }

  .project-showcase .project-mobile-cta > em {
    max-width: 86px;
    font-size: 11px;
  }

  .project-showcase-specs {
    margin-top: 0;
    padding-top: 18px;
    grid-template-columns: 1fr;
  }

  .project-showcase-specs > div,
  .project-showcase-specs > div:first-child,
  .project-showcase-specs > div:last-child {
    min-height: 54px;
    padding: 11px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 87, 232, .16);
  }

  .project-showcase-specs > div:last-child {
    border-bottom: 0;
  }

  .project-showcase-promise {
    margin-top: 12px;
    padding-top: 16px;
    flex-direction: column;
    gap: 7px;
  }

  .project-showcase-media {
    min-height: 300px;
  }

  .project-showcase-image {
    inset: 0 14px 24px 8px;
  }

  .project-showcase-media::before {
    inset: 20px 4px 12px 34px;
  }

  .project-showcase-image figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .project-showcase-image figcaption b {
    font-size: 17px;
  }

  .project-layout-v100 {
    margin-top: 18px;
  }

  .project-layout-v100 .project-order-card {
    border-radius: 8px;
  }
}

@media (min-width: 1041px) and (max-height: 820px) {
  .project-showcase {
    min-height: 540px;
  }

  .project-showcase-copy {
    padding: 36px 48px 32px;
  }

  .project-showcase-details {
    padding: 0 48px 32px;
  }

  .project-showcase h1 {
    margin-top: 22px;
    font-size: clamp(43px, 4vw, 54px);
  }

  .project-showcase .project-lead {
    margin-top: 16px;
    font-size: 14px;
  }

  .project-showcase-specs {
    padding-top: 18px;
  }

  .project-showcase-promise {
    margin-top: 18px;
    padding-top: 14px;
  }

  .project-showcase-media {
    min-height: 540px;
  }

  .project-showcase-image {
    inset: 24px 22px 104px 0;
  }

  .project-showcase-order {
    bottom: 18px;
    min-height: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-showcase-image,
  .project-showcase-media::before,
  .project-showcase-order {
    transform: none;
    transition: none;
  }
}

/* v101: order confirmation experience */
.confirmation-v101 {
  align-items: stretch;
  width: min(1320px, calc(100% - 48px));
  padding: 34px 0 96px;
  text-align: left;
}

.confirmation-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
  min-height: 610px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 22%, rgba(87, 135, 255, .28), transparent 30%),
    linear-gradient(135deg, #071b37 0%, #092956 54%, #115ee6 100%);
  border: 1px solid rgba(13, 73, 198, .52);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(10, 33, 64, .22);
  isolation: isolate;
}

.confirmation-stage::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.confirmation-stage::after {
  position: absolute;
  z-index: -1;
  top: -200px;
  right: 29%;
  width: 1px;
  height: 920px;
  background: linear-gradient(transparent, rgba(184, 255, 45, .88), transparent);
  box-shadow: 0 0 22px rgba(184, 255, 45, .22);
  content: "";
  transform: rotate(24deg);
}

.confirmation-copy {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 72px clamp(42px, 6vw, 92px);
}

.confirmation-kicker {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-variation-settings: "wght" 780;
  text-transform: uppercase;
  gap: 10px;
}

.confirmation-kicker i {
  width: 10px;
  height: 10px;
  background: #b8ff2d;
  border: 3px solid rgba(184, 255, 45, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(184, 255, 45, .08);
}

.confirmation-v101 h1 {
  max-width: 690px;
  margin-top: 30px;
  color: #fff;
  font-size: clamp(54px, 5.5vw, 82px);
  font-variation-settings: "wght" 790;
  line-height: .98;
  text-wrap: balance;
}

.confirmation-v101 .confirmation-lead {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
  line-height: 1.65;
}

.confirmation-assurance {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  max-width: 650px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .17);
  gap: 14px;
}

.confirmation-assurance > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #071b37;
  background: #b8ff2d;
  border-radius: 50%;
  font-size: 14px;
  font-variation-settings: "wght" 850;
}

.confirmation-assurance p {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  line-height: 1.55;
}

.confirmation-assurance b {
  color: #fff;
}

.confirmation-v101 .confirmation-actions {
  display: flex;
  margin-top: 34px;
  gap: 10px;
}

.confirmation-v101 .confirmation-actions .button-primary {
  color: #071b37;
  background: #b8ff2d;
  box-shadow: 0 16px 36px rgba(184, 255, 45, .15);
}

.confirmation-v101 .confirmation-actions .button-primary:hover {
  background: #c4ff4f;
}

.confirmation-v101 .confirmation-actions .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}

.confirmation-v101 .confirmation-actions .button-secondary:hover {
  background: rgba(255, 255, 255, .14);
}

.confirmation-receipt {
  position: relative;
  align-self: center;
  width: min(420px, calc(100% - 48px));
  margin: 44px 48px 44px 0;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(3, 17, 39, .34);
  transform: rotate(1.2deg);
}

.confirmation-receipt::before,
.confirmation-receipt::after {
  position: absolute;
  z-index: 2;
  top: 190px;
  width: 18px;
  height: 18px;
  background: #0b3672;
  border-radius: 50%;
  content: "";
}

.confirmation-receipt::before {
  left: -9px;
}

.confirmation-receipt::after {
  right: -9px;
}

.confirmation-receipt-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #dce8ff;
}

.confirmation-receipt-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 27, 55, .72));
  content: "";
}

.confirmation-receipt-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.confirmation-receipt-media > span {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  color: #071b37;
  background: #b8ff2d;
  border-radius: 999px;
  font-size: 10px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.confirmation-receipt-body {
  padding: 28px 30px 30px;
}

.confirmation-receipt-body > small,
.confirmation-receipt-price span,
.confirmation-receipt-meta dt {
  color: var(--muted);
  font-size: 10px;
  font-variation-settings: "wght" 760;
  text-transform: uppercase;
}

.confirmation-receipt h2 {
  margin-top: 10px;
  font-size: 24px;
  font-variation-settings: "wght" 760;
  line-height: 1.18;
}

.confirmation-receipt-price {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 26px;
  padding: 18px 0;
  border-top: 1px dashed var(--line-strong);
  border-bottom: 1px dashed var(--line-strong);
  gap: 20px;
}

.confirmation-receipt-price b {
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.confirmation-receipt-meta {
  display: grid;
  margin: 18px 0 0;
  gap: 14px;
}

.confirmation-receipt-meta div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
}

.confirmation-receipt-meta dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-variation-settings: "wght" 680;
  text-align: right;
}

.confirmation-route {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  margin-top: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.confirmation-route-heading {
  padding: 34px;
  color: #fff;
  background: var(--ink);
}

.confirmation-route-heading span {
  color: #b8ff2d;
  font-size: 10px;
  font-variation-settings: "wght" 800;
  text-transform: uppercase;
}

.confirmation-route-heading h2 {
  margin-top: 13px;
  font-size: 24px;
  line-height: 1.1;
}

.confirmation-route ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.confirmation-route li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  min-height: 150px;
  padding: 28px;
  border-left: 1px solid var(--line);
  gap: 14px;
}

.confirmation-route li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 10px;
  font-variation-settings: "wght" 820;
}

.confirmation-route li:nth-child(2) > span {
  color: var(--ink);
  background: #b8ff2d;
}

.confirmation-route li:nth-child(3) > span {
  background: var(--ink);
}

.confirmation-route li b {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.confirmation-route li p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .confirmation-stage {
    grid-template-columns: 1fr;
  }

  .confirmation-copy {
    padding-bottom: 36px;
  }

  .confirmation-receipt {
    width: calc(100% - 84px);
    max-width: none;
    margin: 0 42px 42px;
    transform: none;
  }

  .confirmation-receipt-media {
    height: 260px;
  }

  .confirmation-route {
    grid-template-columns: 1fr;
  }

  .confirmation-route-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
  }

  .confirmation-route-heading h2 {
    margin-top: 0;
  }

  .confirmation-route li:first-child {
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .confirmation-v101 {
    width: calc(100% - 24px);
    padding: 16px 0 72px;
  }

  .confirmation-stage {
    min-height: 0;
    border-radius: 12px;
  }

  .confirmation-stage::before {
    background-size: 42px 42px;
  }

  .confirmation-copy {
    padding: 42px 22px 30px;
  }

  .confirmation-v101 h1 {
    margin-top: 22px;
    font-size: clamp(42px, 12vw, 58px);
  }

  .confirmation-v101 .confirmation-lead {
    margin-top: 20px;
    font-size: 15px;
  }

  .confirmation-assurance {
    margin-top: 24px;
    padding-top: 18px;
  }

  .confirmation-v101 .confirmation-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 26px;
  }

  .confirmation-v101 .confirmation-actions .button {
    width: 100%;
  }

  .confirmation-receipt {
    width: calc(100% - 24px);
    margin: 0 12px 12px;
  }

  .confirmation-receipt-media {
    height: 190px;
  }

  .confirmation-receipt-body {
    padding: 24px 20px 26px;
  }

  .confirmation-receipt h2 {
    font-size: 20px;
  }

  .confirmation-route {
    margin-top: 12px;
    border-radius: 10px;
  }

  .confirmation-route-heading {
    display: block;
    padding: 24px 22px;
  }

  .confirmation-route-heading h2 {
    margin-top: 9px;
    font-size: 22px;
  }

  .confirmation-route ol {
    grid-template-columns: 1fr;
  }

  .confirmation-route li {
    min-height: 0;
    padding: 22px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

/* v102: contacts as a conversion entry point */
.contacts-v102 {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 104px;
}

.contacts-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  min-height: 690px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 28px 86px rgba(27, 60, 108, .14);
}

.contacts-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 72px clamp(42px, 6.2vw, 98px);
  background:
    linear-gradient(120deg, rgba(220, 232, 255, .46), transparent 44%),
    #fff;
}

.contacts-hero-copy::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue) 0 34%, #b8ff2d 34% 44%, transparent 44%);
  content: "";
}

.contacts-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 11px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
  gap: 10px;
}

.contacts-kicker i {
  width: 26px;
  height: 2px;
  background: var(--blue);
}

.contacts-hero h1 {
  max-width: 720px;
  margin-top: 28px;
  font-size: clamp(56px, 5.4vw, 80px);
  font-variation-settings: "wght" 790;
  line-height: .98;
  text-wrap: balance;
}

.contacts-hero-copy > p {
  max-width: 650px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.contacts-actions {
  display: flex;
  margin-top: 34px;
  gap: 10px;
}

.contacts-note {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  max-width: 640px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
  gap: 14px;
}

.contacts-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #071b37;
  background: #b8ff2d;
  border-radius: 50%;
  font-size: 12px;
  font-variation-settings: "wght" 850;
}

.contacts-note p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.58;
}

.contacts-portrait {
  position: relative;
  min-width: 0;
  min-height: 690px;
  overflow: hidden;
  background: var(--blue);
}

.contacts-portrait::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgba(3, 20, 46, .9) 100%),
    linear-gradient(90deg, rgba(21, 94, 239, .16), transparent 44%);
  content: "";
}

.contacts-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transition: transform 900ms cubic-bezier(.2, .7, .2, 1);
}

.contacts-portrait:hover img {
  transform: scale(1.025);
}

.contacts-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
  color: #fff;
}

.contacts-portrait figcaption span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .76);
  font-size: 10px;
  font-variation-settings: "wght" 760;
  text-transform: uppercase;
  gap: 8px;
}

.contacts-portrait figcaption span i {
  width: 8px;
  height: 8px;
  background: #b8ff2d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(184, 255, 45, .13);
}

.contacts-portrait figcaption b {
  display: block;
  max-width: 360px;
  margin-top: 12px;
  font-size: 27px;
  line-height: 1.08;
}

.contacts-channel-note {
  position: absolute;
  z-index: 3;
  top: 54px;
  left: 30px;
  width: 226px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 8px;
  box-shadow: 0 20px 56px rgba(3, 20, 46, .22);
  transform: rotate(-1.2deg);
}

.contacts-channel-note small {
  color: var(--blue);
  font-size: 9px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.contacts-channel-note ul {
  display: grid;
  margin-top: 16px;
  list-style: none;
  gap: 11px;
}

.contacts-channel-note li {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-variation-settings: "wght" 730;
  gap: 10px;
}

.contacts-channel-note li span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 8px;
}

.contacts-channel-note li:nth-child(2) span {
  color: var(--ink);
  background: #b8ff2d;
}

.contacts-channel-note li:nth-child(3) span {
  background: var(--blue);
}

.contacts-channel-note p {
  margin-top: 18px;
  padding-top: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 9px;
  text-transform: uppercase;
}

.contacts-scenarios {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  margin-top: 86px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.contacts-scenarios > header {
  padding: 38px 42px 38px 0;
}

.contacts-scenarios > header > span,
.contacts-brief-heading > span,
.contacts-final > div > span {
  color: var(--blue);
  font-size: 10px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.contacts-scenarios > header h2 {
  margin-top: 15px;
  font-size: 34px;
  line-height: 1.05;
}

.contacts-scenarios > header p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

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

.contacts-scenario-list > a {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  align-items: center;
  min-height: 230px;
  padding: 30px 22px;
  border-left: 1px solid var(--line-strong);
  gap: 14px;
  transition: color 220ms ease, background 220ms ease;
}

.contacts-scenario-list > a:hover,
.contacts-scenario-list > a:focus-visible {
  color: #fff;
  background: var(--ink);
}

.contacts-scenario-index {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 10px;
  font-variation-settings: "wght" 820;
}

.contacts-scenario-list > a:nth-child(2) .contacts-scenario-index {
  color: var(--ink);
  background: #b8ff2d;
}

.contacts-scenario-list > a:nth-child(3) .contacts-scenario-index {
  background: var(--ink);
}

.contacts-scenario-list > a:nth-child(3):hover .contacts-scenario-index,
.contacts-scenario-list > a:nth-child(3):focus-visible .contacts-scenario-index {
  color: var(--ink);
  background: #b8ff2d;
}

.contacts-scenario-list small {
  color: var(--blue);
  font-size: 9px;
  font-variation-settings: "wght" 780;
  text-transform: uppercase;
}

.contacts-scenario-list h3 {
  margin-top: 9px;
  font-size: 18px;
  line-height: 1.18;
}

.contacts-scenario-list p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.contacts-scenario-list > a:hover small,
.contacts-scenario-list > a:focus-visible small {
  color: #b8ff2d;
}

.contacts-scenario-list > a:hover p,
.contacts-scenario-list > a:focus-visible p {
  color: rgba(255, 255, 255, .68);
}

.contacts-scenario-list > a > i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--blue);
  background: var(--paper-blue);
  border-radius: 50%;
  font-size: 13px;
  font-style: normal;
}

.contacts-scenario-list > a:hover > i,
.contacts-scenario-list > a:focus-visible > i {
  color: var(--ink);
  background: #b8ff2d;
}

.contacts-brief {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  margin-top: 88px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(21, 94, 239, .58), transparent 32%),
    var(--ink);
  border-radius: 12px;
}

.contacts-brief-heading {
  padding: 52px 46px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.contacts-brief-heading > span {
  color: #b8ff2d;
}

.contacts-brief-heading h2 {
  margin-top: 18px;
  font-size: 38px;
  line-height: 1.05;
}

.contacts-brief-heading p {
  margin-top: 20px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.65;
}

.contacts-brief ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.contacts-brief li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  min-height: 190px;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  gap: 16px;
}

.contacts-brief li:nth-child(even) {
  border-right: 0;
}

.contacts-brief li:nth-child(n + 3) {
  border-bottom: 0;
}

.contacts-brief li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: #b8ff2d;
  border-radius: 50%;
  font-size: 10px;
  font-variation-settings: "wght" 820;
}

.contacts-brief li:nth-child(2) > span,
.contacts-brief li:nth-child(3) > span {
  color: #fff;
  background: var(--blue);
}

.contacts-brief li b {
  font-size: 18px;
  line-height: 1.2;
}

.contacts-brief li p {
  margin-top: 9px;
  color: rgba(255, 255, 255, .57);
  font-size: 11px;
  line-height: 1.55;
}

.contacts-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: 44px 48px;
  color: #fff;
  background: var(--blue);
  border-radius: 12px;
  gap: 42px;
}

.contacts-final > div > span {
  color: #b8ff2d;
}

.contacts-final h2 {
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.08;
}

.contacts-final p {
  max-width: 700px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.contacts-final .button-primary {
  flex: 0 0 auto;
  color: var(--ink);
  background: #b8ff2d;
}

.contacts-final .button-primary:hover {
  background: #c5ff53;
}

@media (max-width: 1100px) {
  .contacts-hero {
    grid-template-columns: 1fr;
  }

  .contacts-hero-copy {
    padding-bottom: 48px;
  }

  .contacts-portrait {
    min-height: 560px;
  }

  .contacts-channel-note {
    top: 34px;
    left: 34px;
  }

  .contacts-scenarios {
    grid-template-columns: 1fr;
  }

  .contacts-scenarios > header {
    max-width: 660px;
    padding-right: 0;
  }

  .contacts-scenario-list > a:first-child {
    border-left: 0;
  }

  .contacts-brief {
    grid-template-columns: 1fr;
  }

  .contacts-brief-heading {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
}

@media (max-width: 760px) {
  .contacts-v102 {
    width: calc(100% - 24px);
    padding: 16px 0 72px;
  }

  .contacts-hero {
    min-height: 0;
    border-radius: 10px;
  }

  .contacts-hero-copy {
    padding: 44px 22px 34px;
  }

  .contacts-hero h1 {
    margin-top: 22px;
    font-size: clamp(42px, 12.5vw, 58px);
  }

  .contacts-hero-copy > p {
    margin-top: 20px;
    font-size: 15px;
  }

  .contacts-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 26px;
  }

  .contacts-actions .button {
    width: 100%;
  }

  .contacts-note {
    margin-top: 26px;
  }

  .contacts-portrait {
    min-height: 450px;
  }

  .contacts-channel-note {
    top: 20px;
    left: 20px;
    width: 188px;
    padding: 16px;
  }

  .contacts-channel-note ul {
    margin-top: 12px;
    gap: 8px;
  }

  .contacts-channel-note p {
    display: none;
  }

  .contacts-portrait figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .contacts-portrait figcaption b {
    font-size: 23px;
  }

  .contacts-scenarios {
    margin-top: 64px;
  }

  .contacts-scenarios > header {
    padding: 30px 0;
  }

  .contacts-scenarios > header h2 {
    font-size: 32px;
  }

  .contacts-scenario-list {
    grid-template-columns: 1fr;
  }

  .contacts-scenario-list > a {
    min-height: 0;
    padding: 24px 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .contacts-scenario-list > a:hover,
  .contacts-scenario-list > a:focus-visible {
    padding-right: 14px;
    padding-left: 14px;
  }

  .contacts-brief {
    margin-top: 64px;
    border-radius: 10px;
  }

  .contacts-brief-heading {
    padding: 34px 24px;
  }

  .contacts-brief-heading h2 {
    font-size: 32px;
  }

  .contacts-brief ol {
    grid-template-columns: 1fr;
  }

  .contacts-brief li,
  .contacts-brief li:nth-child(even),
  .contacts-brief li:nth-child(n + 3) {
    min-height: 0;
    padding: 26px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .contacts-brief li:last-child {
    border-bottom: 0;
  }

  .contacts-final {
    align-items: stretch;
    flex-direction: column;
    padding: 32px 24px;
    border-radius: 10px;
    gap: 24px;
  }

  .contacts-final h2 {
    font-size: 30px;
  }

  .contacts-final .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contacts-portrait img {
    transform: none;
    transition: none;
  }
}

/* v103: custom request success state */
.custom-success-v103 {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 96px;
}

.custom-success-stage {
  min-height: 660px;
}

.custom-success-copy h1 {
  max-width: 720px;
  margin-top: 30px;
  color: #fff;
  font-size: clamp(54px, 5.3vw, 78px);
  font-variation-settings: "wght" 790;
  line-height: .98;
  text-wrap: balance;
}

.custom-success-lead {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
  line-height: 1.65;
}

.custom-success-actions {
  display: flex;
  margin-top: 34px;
  gap: 10px;
}

.custom-success-actions .button-primary {
  color: #071b37;
  background: #b8ff2d;
  box-shadow: 0 16px 36px rgba(184, 255, 45, .15);
}

.custom-success-actions .button-primary:hover {
  background: #c4ff4f;
}

.custom-success-actions .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}

.custom-success-actions .button-secondary:hover {
  background: rgba(255, 255, 255, .14);
}

.custom-success-visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 592px;
  margin: 34px 34px 34px 0;
}

.custom-success-visual > figure {
  position: absolute;
  overflow: hidden;
  inset: 0;
  background: #dce8ff;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(3, 17, 39, .3);
  transform: rotate(1deg);
}

.custom-success-visual > figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 24, 53, .02) 42%, rgba(5, 24, 53, .88) 100%),
    linear-gradient(90deg, rgba(21, 94, 239, .18), transparent 48%);
  content: "";
}

.custom-success-visual > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2, .7, .2, 1);
}

.custom-success-visual:hover > figure img {
  transform: scale(1.025);
}

.custom-success-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: #fff;
}

.custom-success-visual figcaption span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .74);
  font-size: 10px;
  font-variation-settings: "wght" 780;
  text-transform: uppercase;
  gap: 8px;
}

.custom-success-visual figcaption span i {
  width: 8px;
  height: 8px;
  background: #b8ff2d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(184, 255, 45, .13);
}

.custom-success-visual figcaption b {
  display: block;
  max-width: 340px;
  margin-top: 12px;
  font-size: 25px;
  line-height: 1.1;
}

.custom-success-docket {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 22px;
  width: 250px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 8px;
  box-shadow: 0 20px 56px rgba(3, 20, 46, .24);
  transform: rotate(-1.4deg);
}

.custom-success-docket > span {
  color: var(--blue);
  font-size: 9px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.custom-success-docket ul {
  display: grid;
  margin-top: 18px;
  list-style: none;
  gap: 12px;
}

.custom-success-docket li {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-variation-settings: "wght" 720;
  gap: 9px;
}

.custom-success-docket li i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--ink);
  background: #b8ff2d;
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
}

.custom-success-docket > p {
  display: grid;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  gap: 4px;
}

.custom-success-docket > p small {
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.custom-success-docket > p b {
  font-size: 11px;
}

.custom-success-sticker {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 126px;
  width: 218px;
  padding: 18px 20px;
  color: var(--ink);
  background: #b8ff2d;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(3, 20, 46, .28);
  transform: rotate(2deg);
}

.custom-success-sticker small {
  display: block;
  font-size: 8px;
  font-variation-settings: "wght" 790;
  text-transform: uppercase;
}

.custom-success-sticker b {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.2;
}

.custom-success-route {
  margin-top: 18px;
}

@media (max-width: 1000px) {
  .custom-success-visual {
    min-height: 540px;
    margin: 0 42px 42px;
  }
}

@media (max-width: 700px) {
  .custom-success-v103 {
    width: calc(100% - 24px);
    padding: 16px 0 72px;
  }

  .custom-success-copy h1 {
    margin-top: 22px;
    font-size: clamp(42px, 12vw, 56px);
  }

  .custom-success-lead {
    margin-top: 20px;
    font-size: 15px;
  }

  .custom-success-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 26px;
  }

  .custom-success-actions .button {
    width: 100%;
  }

  .custom-success-visual {
    min-height: 450px;
    margin: 0 12px 12px;
  }

  .custom-success-visual > figure {
    border-radius: 9px;
    transform: none;
  }

  .custom-success-docket {
    top: 16px;
    left: 16px;
    width: 206px;
    padding: 17px;
  }

  .custom-success-docket ul {
    margin-top: 13px;
    gap: 8px;
  }

  .custom-success-docket > p {
    margin-top: 14px;
    padding-top: 11px;
  }

  .custom-success-sticker {
    right: 14px;
    bottom: 100px;
    width: 188px;
    padding: 14px 16px;
  }

  .custom-success-visual figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .custom-success-visual figcaption b {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .custom-success-visual > figure img {
    transform: none;
    transition: none;
  }
}

/* Kursovik v110: homepage coherence and mobile pacing. */
.reviews-section-v97 {
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 12%, rgba(29, 98, 239, .09), transparent 26rem),
    #f4f7fc;
  box-shadow: 0 0 0 100vmax #f4f7fc;
}

.reviews-section-v97::before {
  color: rgba(29, 98, 239, .04);
}

.reviews-section-v97 .eyebrow {
  color: var(--electric);
}

.reviews-section-v97 .section-heading h2 {
  color: var(--ink);
}

.reviews-section-v97 .reviews-note {
  color: var(--ink);
  background: var(--acid);
}

.reviews-section-v97 .reviews-grid {
  border-color: #c8d4e4;
  box-shadow: 0 30px 72px rgba(17, 48, 91, .14);
}

@media (max-width: 768px) {
  .catalog-preview-v96 .material-grid-home {
    display: grid;
    width: calc(100% + 12px);
    margin-right: -12px;
    padding: 0 12px 12px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    grid-template-columns: none !important;
    grid-auto-columns: minmax(280px, calc(100vw - 58px));
    grid-auto-flow: column;
    gap: 12px;
    scroll-padding-left: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .catalog-preview-v96 .material-grid-home::-webkit-scrollbar {
    display: none;
  }

  .catalog-preview-v96 .material-grid-home .home-material-card,
  .catalog-preview-v96 .material-grid-home .home-material-card-featured,
  .catalog-preview-v96 .material-grid-home .home-material-card-compact,
  .catalog-preview-v96 .material-grid-home .home-material-card:last-child:nth-child(odd) {
    width: auto;
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .reviews-section-v97 {
    background: #f4f7fc;
  }

  .reviews-section-v97 .reviews-grid {
    display: grid;
    width: calc(100% + 12px);
    min-height: 0;
    margin-right: -12px;
    padding: 0 12px 14px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    grid-template-columns: none;
    grid-auto-columns: minmax(300px, calc(100vw - 48px));
    grid-auto-flow: column;
    gap: 12px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .reviews-section-v97 .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .reviews-section-v97 .review-stack {
    display: contents;
  }

  .reviews-section-v97 .review-card-featured,
  .reviews-section-v97 .review-stack .review-card,
  .reviews-section-v97 .review-stack .review-card:first-child,
  .reviews-section-v97 .review-stack .review-card:last-child {
    min-height: 570px;
    padding: 28px 24px 24px;
    overflow: hidden;
    border: 1px solid #c8d4e4;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .reviews-section-v97 .review-card-featured {
    border-bottom: 1px solid #c8d4e4;
  }

  .reviews-section-v97 .review-card-featured blockquote {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.28;
  }

  .reviews-section-v97 .review-stack blockquote,
  .reviews-section-v97 .review-stack .review-card blockquote {
    font-size: 15px;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  .catalog-preview-v96 .material-grid-home,
  .reviews-section-v97 .reviews-grid {
    grid-auto-columns: minmax(320px, calc(50vw - 28px));
  }
}

/* v111: focused product detail experience */
.project-page-v111 {
  --project-accent: var(--cover-accent, var(--electric));
  padding-bottom: 96px;
}

.project-product-hero {
  position: relative;
  display: grid;
  min-height: 660px;
  margin-top: 24px;
  overflow: hidden;
  background:
    linear-gradient(116deg, rgba(255, 255, 255, .96) 0 46%, rgba(237, 243, 253, .82) 46.2% 100%),
    #f3f7fd;
  border: 1px solid #cbd9eb;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(12, 43, 88, .11);
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  isolation: isolate;
}

.project-product-hero::before {
  position: absolute;
  z-index: -1;
  top: -320px;
  right: -250px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(30, 91, 232, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 88px rgba(30, 91, 232, .025), 0 0 0 176px rgba(30, 91, 232, .016);
  content: "";
}

.project-product-hero::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38%;
  height: 5px;
  background: linear-gradient(90deg, var(--project-accent) 0 78%, var(--acid) 78%);
  content: "";
}

.project-product-copy {
  position: relative;
  z-index: 4;
  display: flex;
  min-width: 0;
  padding: 54px 54px 46px;
  flex-direction: column;
}

.project-product-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
}

.project-product-kicker > span:first-child {
  display: inline-flex;
  min-height: 31px;
  padding: 0 13px;
  align-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  font-size: 9px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.project-product-kicker .availability {
  color: #405673;
  font-size: 10px;
}

.project-product-kicker .availability i {
  background: var(--project-accent);
  box-shadow: 0 0 0 5px rgba(30, 91, 232, .09);
}

.project-product-copy h1 {
  max-width: 720px;
  margin-top: 32px;
  color: var(--ink);
  font-size: clamp(46px, 4.15vw, 64px);
  font-variation-settings: "wght" 840;
  line-height: .98;
  text-wrap: balance;
}

.project-product-lead {
  max-width: 680px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.62;
}

.project-product-facts {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid #ccd9ea;
  border-bottom: 1px solid #ccd9ea;
  grid-template-columns: 1.2fr .78fr 1fr;
}

.project-product-facts > div {
  display: grid;
  min-width: 0;
  min-height: 77px;
  padding: 17px 18px;
  align-content: center;
  border-right: 1px solid #ccd9ea;
  gap: 4px;
}

.project-product-facts > div:first-child {
  padding-left: 0;
}

.project-product-facts > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.project-product-facts dt {
  color: #74859e;
  font-size: 8px;
  font-variation-settings: "wght" 760;
  text-transform: uppercase;
}

.project-product-facts dd {
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  font-variation-settings: "wght" 730;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.project-product-purchase {
  display: grid;
  margin-top: auto;
  padding-top: 30px;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
}

.project-product-price {
  display: grid;
  gap: 3px;
}

.project-product-price > span {
  color: var(--electric);
  font-size: 9px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.project-product-price > b {
  color: var(--ink);
  font-size: 42px;
  font-variation-settings: "wght" 850;
  line-height: 1;
}

.project-product-price > small {
  margin-top: 4px;
  color: #75869f;
  font-size: 9px;
}

.project-product-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.project-product-actions .button {
  min-height: 54px;
  padding-inline: 23px;
  border-radius: 7px;
  box-shadow: 0 15px 30px rgba(30, 91, 232, .2);
}

.project-product-actions > a:not(.button) {
  color: #4d6381;
  font-size: 10px;
  font-variation-settings: "wght" 690;
  text-decoration: underline;
  text-decoration-color: #aebbd0;
  text-underline-offset: 3px;
}

.project-product-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 660px;
  margin: 0;
}

.project-product-visual::before {
  position: absolute;
  top: 56px;
  right: -18px;
  bottom: 58px;
  left: 68px;
  background: var(--project-accent);
  border-radius: 8px 0 0 8px;
  content: "";
  opacity: .96;
  transform: rotate(1.8deg);
}

.project-product-photo {
  position: absolute;
  z-index: 2;
  inset: 34px 26px 92px 10px;
  overflow: hidden;
  background: #dce6f2;
  border: 1px solid rgba(7, 26, 51, .16);
  border-radius: 8px;
  box-shadow: 0 34px 74px rgba(13, 43, 91, .25);
  transform: rotate(-.75deg);
}

.project-product-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 43%, rgba(6, 25, 51, .84));
  content: "";
}

.project-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.2, .7, .2, 1);
}

.project-product-visual:hover .project-product-photo img {
  transform: scale(1.025);
}

.project-product-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: grid;
  color: #fff;
  gap: 5px;
}

.project-product-photo figcaption span,
.project-product-photo figcaption small {
  color: rgba(255, 255, 255, .68);
  font-size: 9px;
  font-variation-settings: "wght" 700;
  text-transform: uppercase;
}

.project-product-photo figcaption span {
  color: var(--acid);
}

.project-product-photo figcaption b {
  max-width: 480px;
  font-size: 23px;
  font-variation-settings: "wght" 780;
  line-height: 1.16;
}

.project-product-sheet {
  position: absolute;
  z-index: 4;
  display: grid;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid #cfdaea;
  border-radius: 6px;
  box-shadow: 0 20px 46px rgba(9, 36, 76, .18);
}

.project-product-sheet-back {
  top: 74px;
  left: -24px;
  width: 132px;
  min-height: 168px;
  padding: 18px;
  transform: rotate(-6deg);
}

.project-product-sheet-back span,
.project-product-sheet-front span {
  color: var(--electric);
  font-size: 8px;
  font-variation-settings: "wght" 800;
}

.project-product-sheet-back i {
  width: 100%;
  height: 4px;
  margin-top: 13px;
  background: #d6e2f3;
}

.project-product-sheet-back i:nth-of-type(2) {
  width: 74%;
}

.project-product-sheet-back i:nth-of-type(3) {
  width: 88%;
}

.project-product-sheet-front {
  top: 34px;
  right: 0;
  width: 158px;
  min-height: 112px;
  padding: 16px 18px;
  transform: rotate(2.4deg);
}

.project-product-sheet-front b {
  margin-top: 10px;
  color: var(--project-accent);
  font-size: 31px;
  line-height: 1;
}

.project-product-sheet-front small {
  align-self: end;
  color: #73839a;
  font-size: 8px;
}

.project-product-revision {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 30px;
  left: 76px;
  display: grid;
  min-height: 112px;
  padding: 19px 22px;
  align-content: center;
  color: #fff;
  background: rgba(7, 26, 51, .96);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px 0 0 8px;
  box-shadow: 0 24px 50px rgba(7, 26, 51, .25);
  gap: 4px;
}

.project-product-revision span {
  color: var(--acid);
  font-size: 8px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.project-product-revision b {
  font-size: 19px;
  font-variation-settings: "wght" 760;
}

.project-product-revision small {
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
}

.project-package {
  margin-top: 96px;
}

.project-section-heading {
  display: grid;
  padding-bottom: 30px;
  align-items: end;
  border-bottom: 1px solid #cbd7e6;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
}

.project-section-heading h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(42px, 4.6vw, 66px);
  font-variation-settings: "wght" 830;
  line-height: .98;
}

.project-section-heading > p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.project-package-layout {
  display: grid;
  min-height: 650px;
  border-bottom: 1px solid #cbd7e6;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.project-document-scene {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 42%, rgba(30, 91, 232, .29), transparent 38%),
    linear-gradient(135deg, #071a33, #0d2d62);
  border-right: 1px solid #cbd7e6;
}

.project-document-scene::before,
.project-document-scene::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
}

.project-document-scene::before {
  right: -170px;
  bottom: -260px;
  width: 620px;
  height: 620px;
}

.project-document-scene::after {
  right: -60px;
  bottom: -150px;
  width: 400px;
  height: 400px;
}

.project-document {
  position: absolute;
  z-index: 2;
  display: flex;
  padding: 30px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(7, 26, 51, .15);
  border-radius: 5px;
  box-shadow: 0 28px 60px rgba(0, 10, 28, .28);
  flex-direction: column;
}

.project-document > span {
  color: var(--electric);
  font-size: 8px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.project-document > b {
  margin-top: 18px;
  font-size: 20px;
  font-variation-settings: "wght" 760;
  line-height: 1.18;
}

.project-document > small {
  margin-top: auto;
  color: #76869d;
  font-size: 9px;
}

.project-document-main {
  top: 62px;
  left: 72px;
  width: 300px;
  height: 470px;
  transform: rotate(-3deg);
}

.project-document-main ol {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: document-list;
  gap: 17px;
}

.project-document-main li {
  display: grid;
  color: #516680;
  font-size: 10px;
  counter-increment: document-list;
  grid-template-columns: 22px 1fr;
}

.project-document-main li::before {
  color: var(--electric);
  content: "0" counter(document-list);
  font-size: 8px;
  font-variation-settings: "wght" 800;
}

.project-document-side {
  right: 52px;
  bottom: 54px;
  width: 270px;
  height: 340px;
  transform: rotate(3deg);
}

.project-document-side > div {
  display: grid;
  margin-top: 32px;
  gap: 12px;
}

.project-document-side i {
  width: 100%;
  height: 5px;
  background: #d8e4f4;
}

.project-document-side i:nth-child(2) { width: 74%; }
.project-document-side i:nth-child(3) { width: 88%; }
.project-document-side i:nth-child(4) { width: 62%; }

.project-document-slide {
  top: 52px;
  right: 34px;
  width: 220px;
  height: 156px;
  color: #fff;
  background: var(--project-accent);
  border-color: rgba(255, 255, 255, .18);
  transform: rotate(4deg);
}

.project-document-slide > span,
.project-document-slide > small {
  color: rgba(255, 255, 255, .7);
}

.project-document-slide > b {
  margin-top: 8px;
  color: #fff;
}

.project-document-slide > div {
  display: flex;
  margin-top: auto;
  align-items: end;
  gap: 7px;
}

.project-document-slide i {
  width: 18px;
  height: 22px;
  background: rgba(255, 255, 255, .38);
}

.project-document-slide i:nth-child(2) { height: 35px; }
.project-document-slide i:nth-child(3) { height: 52px; }

.project-package-list {
  display: grid;
  align-content: center;
}

.project-package-list article {
  display: grid;
  min-height: 112px;
  padding: 24px 32px;
  align-items: center;
  border-bottom: 1px solid #d2dce9;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.project-package-list article:last-child {
  border-bottom: 0;
}

.project-package-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--electric);
  background: #edf3ff;
  border-radius: 50%;
  font-size: 9px;
  font-variation-settings: "wght" 800;
}

.project-package-list article:last-child > span {
  color: var(--ink);
  background: var(--acid);
}

.project-package-list article > div {
  display: grid;
  grid-template-columns: minmax(190px, .8fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.project-package-list b {
  color: var(--ink);
  font-size: 17px;
  font-variation-settings: "wght" 750;
  line-height: 1.25;
}

.project-package-list p {
  color: #657892;
  font-size: 11px;
  line-height: 1.55;
}

.project-revision-proof {
  position: relative;
  display: grid;
  min-height: 310px;
  margin-top: 88px;
  padding: 48px 54px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-left: 7px solid var(--acid);
  border-radius: 8px;
  box-shadow: 0 28px 68px rgba(7, 26, 51, .18);
  grid-template-columns: 150px minmax(0, 1fr) 250px;
  gap: 38px;
}

.project-revision-proof::after {
  position: absolute;
  right: -160px;
  bottom: -280px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, .018);
  content: "";
}

.project-revision-number {
  color: var(--acid);
  font-size: 150px;
  font-variation-settings: "wght" 860;
  line-height: .8;
}

.project-revision-copy {
  position: relative;
  z-index: 2;
}

.project-revision-copy .eyebrow {
  color: var(--acid);
}

.project-revision-copy h2 {
  max-width: 650px;
  margin-top: 14px;
  font-size: clamp(32px, 3.5vw, 48px);
  font-variation-settings: "wght" 800;
  line-height: 1.02;
}

.project-revision-copy p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.65;
}

.project-revision-conditions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.project-revision-conditions span,
.project-order-assurances span {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .8);
  font-size: 11px;
  font-variation-settings: "wght" 680;
  gap: 10px;
}

.project-revision-conditions i,
.project-order-assurances i {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.project-order-shell {
  display: grid;
  margin-top: 88px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #cbd7e6;
  border-radius: 8px;
  box-shadow: 0 28px 74px rgba(10, 43, 88, .12);
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
}

.project-order-summary {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 54px 48px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 100% 100%, rgba(30, 91, 232, .45), transparent 52%),
    var(--ink);
  flex-direction: column;
}

.project-order-summary::after {
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(255, 255, 255, .018);
  content: "";
}

.project-order-summary .eyebrow {
  color: var(--acid);
}

.project-order-summary h2 {
  max-width: 480px;
  margin-top: 22px;
  font-size: clamp(38px, 3.5vw, 52px);
  font-variation-settings: "wght" 810;
  line-height: 1.02;
}

.project-order-summary > p {
  max-width: 460px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  line-height: 1.7;
}

.project-order-total {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 54px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  gap: 7px;
}

.project-order-total span {
  color: var(--acid);
  font-size: 9px;
  font-variation-settings: "wght" 800;
  text-transform: uppercase;
}

.project-order-total b {
  font-size: 54px;
  font-variation-settings: "wght" 850;
  line-height: 1;
}

.project-order-assurances {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: auto;
  padding-top: 46px;
  gap: 13px;
}

.project-order-form {
  display: grid;
  padding: 48px 52px 42px;
  align-content: start;
  background: #fff;
  gap: 18px;
}

.project-order-form .project-form-row-contact {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(340px, 1.28fr);
  gap: 18px;
}

.project-order-form .field,
.project-order-form .contact-picker {
  min-width: 0;
}

.project-order-form .field input,
.project-order-form .field textarea {
  min-height: 55px;
  background: #f5f8fc;
  border-color: #cbd7e6;
  border-radius: 7px;
}

.project-order-form .field textarea {
  min-height: 118px;
}

.project-order-form .contact-options span {
  min-height: 55px;
  border-radius: 7px;
}

.project-order-form .file-field {
  min-height: 94px;
  padding: 18px 20px;
  background: #f5f8fc;
  border-color: #b9c9df;
  border-radius: 7px;
}

.project-order-form .button {
  min-height: 58px;
  border-radius: 7px;
  box-shadow: 0 16px 32px rgba(30, 91, 232, .18);
}

.project-product-actions a:focus-visible,
.project-order-form input:focus-visible,
.project-order-form textarea:focus-visible,
.project-order-form button:focus-visible,
.project-order-form .file-field:focus-within {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .project-product-hero {
    grid-template-columns: minmax(0, 1fr) 410px;
  }

  .project-product-copy {
    padding-inline: 40px;
  }

  .project-product-copy h1 {
    font-size: clamp(44px, 4.8vw, 56px);
  }

  .project-product-purchase {
    gap: 14px;
  }

  .project-product-actions .button {
    padding-inline: 18px;
  }

  .project-document-main {
    left: 38px;
  }

  .project-document-side {
    right: 28px;
  }

  .project-package-list article > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .project-revision-proof {
    grid-template-columns: 110px minmax(0, 1fr) 210px;
    padding-inline: 42px;
  }

  .project-revision-number {
    font-size: 118px;
  }

  .project-order-shell {
    grid-template-columns: 360px minmax(0, 1fr);
  }

  .project-order-summary {
    padding-inline: 36px;
  }

  .project-order-form {
    padding-inline: 38px;
  }

  .project-order-form .project-form-row-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .project-product-hero {
    grid-template-columns: 1fr;
  }

  .project-product-copy {
    min-height: 590px;
  }

  .project-product-visual {
    min-height: 520px;
  }

  .project-package {
    margin-top: 70px;
  }

  .project-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-section-heading > p {
    max-width: 620px;
  }

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

  .project-document-scene {
    min-height: 570px;
    border-right: 0;
    border-bottom: 1px solid #cbd7e6;
  }

  .project-package-list article > div {
    grid-template-columns: minmax(190px, .8fr) minmax(0, 1fr);
    gap: 20px;
  }

  .project-revision-proof {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .project-revision-number {
    font-size: 94px;
  }

  .project-revision-conditions {
    grid-column: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-revision-conditions span {
    align-items: flex-start;
  }

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

  .project-order-summary {
    min-height: 500px;
  }

  .project-order-assurances {
    margin-top: 46px;
  }
}

@media (max-width: 640px) {
  .project-page-v111 {
    width: calc(100% - 24px);
    padding-top: 20px;
    padding-bottom: 64px;
  }

  .project-page-v111 .project-breadcrumbs {
    min-height: 38px;
    padding-bottom: 12px;
    font-size: 10px;
  }

  .project-product-hero {
    min-height: 0;
    margin-top: 18px;
    background: linear-gradient(118deg, #fff 0 34%, #edf3ff 34.3% 100%);
  }

  .project-product-copy {
    min-height: 0;
    padding: 28px 22px 26px;
  }

  .project-product-kicker {
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .project-product-kicker > span:first-child {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 8px;
  }

  .project-product-kicker .availability {
    margin-top: 7px;
    font-size: 8px;
  }

  .project-product-copy h1 {
    margin-top: 24px;
    font-size: clamp(34px, 10.4vw, 42px);
    line-height: .99;
  }

  .project-product-lead {
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.55;
  }

  .project-product-facts {
    order: 5;
    margin-top: 24px;
    grid-template-columns: 1fr;
  }

  .project-product-facts > div,
  .project-product-facts > div:first-child,
  .project-product-facts > div:last-child {
    min-height: 53px;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid #d1dcec;
  }

  .project-product-facts > div:last-child {
    border-bottom: 0;
  }

  .project-product-purchase {
    order: 4;
    margin-top: 22px;
    padding-top: 20px;
    align-items: center;
    border-top: 1px solid #ccd9ea;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-product-price > b {
    font-size: 37px;
  }

  .project-product-actions {
    width: 100%;
  }

  .project-product-actions .button {
    width: 100%;
  }

  .project-product-visual {
    min-height: 380px;
  }

  .project-product-visual::before {
    inset: 24px -10px 44px 42px;
  }

  .project-product-photo {
    inset: 12px 16px 82px 8px;
  }

  .project-product-photo figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .project-product-photo figcaption b {
    font-size: 17px;
  }

  .project-product-sheet-back {
    display: none;
  }

  .project-product-sheet-front {
    top: 0;
    right: 4px;
    width: 112px;
    min-height: 74px;
    padding: 10px 12px;
  }

  .project-product-sheet-front b {
    margin-top: 4px;
    font-size: 22px;
  }

  .project-product-revision {
    right: 0;
    bottom: 18px;
    left: 26px;
    min-height: 82px;
    padding: 13px 16px;
  }

  .project-product-revision b {
    font-size: 15px;
  }

  .project-package {
    margin-top: 54px;
  }

  .project-section-heading {
    padding-bottom: 22px;
    gap: 13px;
  }

  .project-section-heading h2 {
    margin-top: 10px;
    font-size: 40px;
  }

  .project-section-heading > p {
    font-size: 12px;
    line-height: 1.6;
  }

  .project-document-scene {
    min-height: 420px;
  }

  .project-document {
    padding: 20px;
  }

  .project-document-main {
    top: 34px;
    left: 22px;
    width: 220px;
    height: 340px;
  }

  .project-document-main > b {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .project-document-main ol {
    margin-top: 22px;
    gap: 11px;
  }

  .project-document-main li {
    font-size: 8px;
  }

  .project-document-side {
    right: 12px;
    bottom: 24px;
    width: 156px;
    height: 232px;
  }

  .project-document-side > b {
    font-size: 15px;
  }

  .project-document-side > div {
    margin-top: 20px;
    gap: 8px;
  }

  .project-document-slide {
    display: none;
  }

  .project-package-list article {
    min-height: 0;
    padding: 20px 6px;
    align-items: start;
    grid-template-columns: 38px 1fr;
    gap: 13px;
  }

  .project-package-list article > span {
    width: 34px;
    height: 34px;
    font-size: 8px;
  }

  .project-package-list article > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .project-package-list b {
    font-size: 15px;
  }

  .project-package-list p {
    font-size: 10px;
  }

  .project-revision-proof {
    min-height: 0;
    margin-top: 54px;
    padding: 30px 24px;
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .project-revision-number {
    align-self: start;
    font-size: 68px;
  }

  .project-revision-copy h2 {
    font-size: 28px;
  }

  .project-revision-copy p {
    font-size: 11px;
  }

  .project-revision-conditions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    padding-top: 10px;
  }

  .project-order-shell {
    margin-top: 54px;
  }

  .project-order-summary {
    min-height: 0;
    padding: 34px 26px 32px;
  }

  .project-order-summary h2 {
    margin-top: 16px;
    font-size: 34px;
  }

  .project-order-summary > p {
    font-size: 11px;
  }

  .project-order-total {
    margin-top: 30px;
    padding-block: 20px;
  }

  .project-order-total b {
    font-size: 43px;
  }

  .project-order-assurances {
    margin-top: 30px;
    padding-top: 0;
  }

  .project-order-form {
    padding: 28px 22px 24px;
    gap: 16px;
  }

  .project-order-form .project-form-row-contact,
  .project-order-form .form-grid {
    grid-template-columns: 1fr;
  }

  .project-order-form .contact-options {
    grid-template-columns: 1fr;
  }

  .project-order-form .file-field {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 1000px) and (max-height: 820px) {
  .project-product-hero,
  .project-product-visual {
    min-height: 560px;
  }

  .project-product-copy {
    padding: 38px 46px 34px;
  }

  .project-product-copy h1 {
    margin-top: 22px;
    font-size: clamp(42px, 4vw, 54px);
  }

  .project-product-lead {
    margin-top: 16px;
    font-size: 14px;
  }

  .project-product-facts {
    margin-top: 24px;
  }

  .project-product-purchase {
    padding-top: 20px;
  }

  .project-product-photo {
    inset: 24px 24px 82px 8px;
  }

  .project-product-revision {
    bottom: 22px;
    min-height: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-product-photo,
  .project-product-photo img,
  .project-product-visual::before,
  .project-product-sheet,
  .project-document {
    transform: none;
    transition: none;
  }
}

/* v112: Kursovichok brand identity */
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header .brand-mark {
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-header .brand-mark img {
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(30, 91, 232, .2);
}

.site-header .brand-copy strong {
  font-size: 25px;
  letter-spacing: 0;
}

.footer-brand .brand-mark {
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-brand .brand-mark img {
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(30, 91, 232, .14);
}

@media (max-width: 430px) {
  .site-header .brand-copy strong {
    font-size: 21px;
  }
}

/* v113: unified internal page system */
.seo-page-v113,
.legal-page-v113 {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.seo-page-v113 {
  padding: 28px 0 96px;
}

.seo-hero-v113 {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, .96) 0 50%, rgba(231, 239, 255, .76) 50.2% 100%);
  border: 1px solid #cbd9ed;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(18, 62, 127, .12);
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
}

.seo-hero-v113::before {
  position: absolute;
  top: -310px;
  right: -250px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(30, 91, 232, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(30, 91, 232, .025), 0 0 0 160px rgba(30, 91, 232, .018);
  content: "";
}

.seo-hero-v113::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--electric) 0 22%, var(--acid) 22% 28%, transparent 28%);
  content: "";
}

.seo-hero-copy-v113 {
  position: relative;
  z-index: 3;
  display: flex;
  min-width: 0;
  padding: 72px clamp(42px, 5vw, 76px) 46px;
  justify-content: center;
  flex-direction: column;
}

.seo-hero-copy-v113 h1 {
  max-width: 740px;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(56px, 5.35vw, 78px);
  font-variation-settings: "wght" 820;
  line-height: .98;
  text-wrap: balance;
}

.seo-hero-copy-v113 > p {
  max-width: 690px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.seo-hero-actions-v113 {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-hero-actions-v113 .button {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 7px;
}

.seo-hero-facts-v113 {
  display: grid;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 87, 232, .2);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-hero-facts-v113 > div {
  display: grid;
  min-width: 0;
  padding: 0 15px;
  border-right: 1px solid rgba(23, 87, 232, .16);
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
}

.seo-hero-facts-v113 > div:first-child {
  padding-left: 0;
}

.seo-hero-facts-v113 > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.seo-hero-facts-v113 dt {
  color: var(--electric);
  font-size: 10px;
  font-variation-settings: "wght" 820;
}

.seo-hero-facts-v113 dd {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.seo-hero-facts-v113 b {
  color: var(--ink);
  font-size: 12px;
}

.seo-hero-facts-v113 small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.seo-hero-visual-v113 {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  background: #d7e4fb;
}

.seo-hero-visual-v113::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 27, 60, .84) 100%);
  content: "";
}

.seo-hero-visual-v113 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  transition: transform 900ms cubic-bezier(.2, .7, .2, 1);
}

.seo-hero-v113:hover .seo-hero-visual-v113 > img {
  transform: scale(1.025);
}

.seo-hero-visual-v113 figcaption {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  color: #fff;
  gap: 7px;
}

.seo-hero-visual-v113 figcaption span {
  color: var(--acid);
  font-size: 9px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.seo-hero-visual-v113 figcaption b {
  max-width: 330px;
  font-size: 28px;
  line-height: 1.08;
}

.seo-visual-sheet-v113 {
  position: absolute;
  z-index: 4;
  top: 46px;
  right: 30px;
  display: grid;
  width: 166px;
  min-height: 112px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 7px;
  box-shadow: 0 20px 48px rgba(10, 39, 84, .18);
  transform: rotate(2deg);
}

.seo-visual-sheet-v113 small,
.seo-visual-sheet-v113 span {
  font-size: 8px;
  font-variation-settings: "wght" 760;
  text-transform: uppercase;
}

.seo-visual-sheet-v113 small {
  color: var(--electric);
}

.seo-visual-sheet-v113 b {
  align-self: end;
  font-size: 30px;
}

.seo-visual-sheet-v113 span {
  color: var(--muted);
}

.seo-catalog-v113 {
  padding: 100px 0 96px;
}

.seo-section-head-v113 {
  display: flex;
  padding-bottom: 32px;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-strong);
  gap: 28px;
}

.seo-section-head-v113 h2 {
  max-width: 820px;
  margin-top: 16px;
  font-size: clamp(46px, 5vw, 68px);
  font-variation-settings: "wght" 810;
  line-height: .98;
  text-wrap: balance;
}

.seo-material-grid-v113 {
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-material-grid-v113 .material-card:nth-child(n + 7) {
  display: none;
}

.seo-empty-v113 {
  display: grid;
  min-height: 390px;
  margin-top: 34px;
  padding: 54px;
  align-content: center;
  justify-items: start;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.seo-empty-v113 > span,
.seo-route-v113 > div > span {
  color: var(--acid);
  font-size: 10px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.seo-empty-v113 h2 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1;
}

.seo-empty-v113 p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .66);
}

.seo-empty-v113 .button {
  margin-top: 28px;
}

.seo-route-v113 {
  display: grid;
  min-height: 350px;
  padding: 54px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 93% 20%, rgba(111, 152, 255, .28), transparent 28%),
    linear-gradient(125deg, #071a33 0 63%, #155bea 100%);
  border-radius: 8px;
  box-shadow: 0 30px 72px rgba(10, 42, 88, .16);
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr) auto;
  gap: 40px;
}

.seo-route-v113 h2 {
  max-width: 540px;
  margin-top: 16px;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.02;
}

.seo-route-v113 ol {
  display: grid;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.seo-route-v113 li {
  display: grid;
  min-height: 70px;
  padding: 14px 0;
  align-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  grid-template-columns: 38px minmax(0, 1fr);
}

.seo-route-v113 li > span {
  color: var(--acid);
  font-size: 9px;
  grid-row: 1 / 3;
}

.seo-route-v113 li b {
  font-size: 13px;
}

.seo-route-v113 li small {
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
}

.seo-route-v113 .button {
  min-width: 180px;
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  border-radius: 7px;
}

/* The request form now reads as a focused workspace, not a full-page color block. */
.custom-form-layout-v99 {
  width: min(1320px, calc(100% - 48px));
  padding: 90px 0 110px;
  align-items: start;
  color: var(--ink);
  grid-template-columns: minmax(320px, .66fr) minmax(590px, 1.34fr);
  gap: 22px;
}

.custom-form-layout-v99::before {
  background:
    radial-gradient(circle at 9% 12%, rgba(30, 91, 232, .09), transparent 28rem),
    linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
}

.custom-form-layout-v99::after {
  background: #cdd9ea;
}

.custom-form-layout-v99 .custom-form-copy {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  padding: 42px 38px 36px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 100% 100%, rgba(30, 91, 232, .4), transparent 48%),
    var(--ink);
  border: 1px solid rgba(23, 87, 232, .3);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(8, 35, 74, .14);
}

.custom-form-layout-v99 .custom-form-copy::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(255, 255, 255, .018);
  content: "";
}

.custom-form-layout-v99 .custom-form-copy h2 {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(40px, 3.55vw, 54px);
}

.custom-form-layout-v99 .custom-form-copy > p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .66);
}

.custom-form-layout-v99 .custom-form-roadmap,
.custom-form-layout-v99 .privacy-note {
  position: relative;
  z-index: 1;
}

.custom-form-layout-v99 .request-form-v99 {
  box-shadow: 0 28px 70px rgba(10, 43, 88, .13);
}

/* Editorial treatment for legal and service documents. */
.legal-page-v113 {
  padding: 28px 0 96px;
}

.legal-hero-v113 {
  position: relative;
  display: grid;
  min-height: 500px;
  overflow: hidden;
  background:
    linear-gradient(120deg, #f8fbff 0 63%, #e7efff 63.2% 100%);
  border: 1px solid #cbd9ed;
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(17, 59, 119, .1);
  grid-template-columns: minmax(0, 1.38fr) minmax(340px, .62fr);
}

.legal-hero-v113::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 5px;
  background: linear-gradient(90deg, var(--electric) 0 76%, var(--acid) 76% 100%);
  content: "";
}

.legal-hero-v113 > div {
  display: flex;
  padding: 70px clamp(42px, 6vw, 82px);
  justify-content: center;
  flex-direction: column;
}

.legal-hero-v113 h1 {
  max-width: 840px;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(54px, 4.8vw, 68px);
  font-variation-settings: "wght" 820;
  line-height: .94;
}

.legal-hero-v113 > div > p {
  max-width: 660px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.legal-hero-v113 aside {
  position: relative;
  display: flex;
  margin: 42px 42px 42px 0;
  padding: 42px;
  overflow: hidden;
  justify-content: flex-end;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(30, 91, 232, .48), transparent 46%),
    var(--ink);
  border-radius: 8px;
  flex-direction: column;
}

.legal-hero-v113 aside::after {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, .025);
  content: "";
}

.legal-hero-v113 aside span {
  position: relative;
  z-index: 1;
  color: var(--acid);
  font-size: 10px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.legal-hero-v113 aside b {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin-top: 16px;
  font-size: 27px;
  line-height: 1.12;
}

.legal-hero-v113 aside small {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  line-height: 1.55;
}

.legal-hero-terms-v113 aside {
  background:
    radial-gradient(circle at 100% 0, rgba(184, 255, 45, .18), transparent 46%),
    var(--ink);
}

.legal-layout-v113 {
  display: grid;
  padding: 82px 0 72px;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 72px;
}

.legal-layout-v113 > nav {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  display: grid;
  align-self: start;
  border-top: 3px solid var(--electric);
}

.legal-layout-v113 > nav span {
  padding: 20px 0 14px;
  color: var(--muted);
  font-size: 9px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.legal-layout-v113 > nav a {
  padding: 15px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-variation-settings: "wght" 650;
}

.legal-layout-v113 > nav a:hover,
.legal-layout-v113 > nav a:focus-visible {
  color: var(--electric);
}

.legal-card-v113 {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.legal-card-v113 section {
  display: grid;
  min-height: 205px;
  padding: 40px 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
  border-top: 1px solid var(--line-strong);
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 28px;
}

.legal-card-v113 section:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.legal-card-v113 section > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--electric);
  background: #edf3ff;
  border-radius: 50%;
  font-size: 10px;
  font-variation-settings: "wght" 820;
}

.legal-card-v113 section:nth-child(2) > span,
.legal-card-v113 section:nth-child(4) > span {
  color: var(--ink);
  background: var(--acid);
}

.legal-card-v113 h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px, 2.5vw, 36px);
  font-variation-settings: "wght" 780;
  line-height: 1.08;
}

.legal-card-v113 p {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.legal-action-v113 {
  display: flex;
  min-height: 176px;
  padding: 38px 46px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(110deg, var(--ink), #103d88);
  border-radius: 8px;
  gap: 32px;
}

.legal-action-v113 > div {
  display: grid;
  gap: 8px;
}

.legal-action-v113 > div span {
  color: var(--acid);
  font-size: 9px;
  font-variation-settings: "wght" 820;
  text-transform: uppercase;
}

.legal-action-v113 > div b {
  max-width: 660px;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.08;
}

.legal-action-v113 .button {
  min-width: 190px;
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  border-radius: 7px;
}

.seo-page-v113 a:focus-visible,
.legal-page-v113 a:focus-visible,
.custom-form-layout-v99 a:focus-visible,
.custom-form-layout-v99 input:focus-visible,
.custom-form-layout-v99 select:focus-visible,
.custom-form-layout-v99 textarea:focus-visible,
.custom-form-layout-v99 button:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .seo-hero-v113 {
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .seo-hero-copy-v113 {
    padding-inline: 42px;
  }

  .seo-hero-copy-v113 h1 {
    font-size: clamp(48px, 5.8vw, 62px);
  }

  .seo-hero-facts-v113 small {
    display: none;
  }

  .seo-route-v113 {
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  }

  .seo-route-v113 .button {
    grid-column: 2;
    justify-self: start;
  }

  .custom-form-layout-v99 {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .custom-form-layout-v99 .custom-form-copy {
    padding-inline: 30px;
  }

  .legal-hero-v113 {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .legal-hero-v113 h1 {
    font-size: clamp(50px, 5.7vw, 62px);
  }

  .legal-hero-v113 > div {
    padding-inline: 44px;
  }

  .legal-hero-v113 aside {
    margin: 30px 30px 30px 0;
    padding: 32px;
  }
}

@media (max-width: 820px) {
  .seo-page-v113,
  .legal-page-v113 {
    width: min(100% - 32px, 720px);
  }

  .seo-hero-v113,
  .legal-hero-v113 {
    grid-template-columns: 1fr;
  }

  .seo-hero-copy-v113 {
    padding: 54px 42px 42px;
  }

  .seo-hero-visual-v113 {
    min-height: 440px;
  }

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

  .seo-route-v113 {
    grid-template-columns: 1fr;
  }

  .seo-route-v113 .button {
    grid-column: auto;
  }

  .custom-form-layout-v99 {
    grid-template-columns: 1fr;
  }

  .custom-form-layout-v99 .custom-form-copy {
    position: relative;
    top: auto;
  }

  .legal-hero-v113 > div {
    padding: 58px 44px 40px;
  }

  .legal-hero-v113 aside {
    min-height: 260px;
    margin: 0 30px 30px;
  }

  .legal-layout-v113 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .legal-layout-v113 > nav span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .seo-page-v113,
  .legal-page-v113 {
    width: calc(100% - 24px);
  }

  .seo-page-v113,
  .legal-page-v113 {
    padding-top: 14px;
    padding-bottom: 64px;
  }

  .seo-hero-v113 {
    min-height: 0;
  }

  .seo-hero-copy-v113 {
    padding: 36px 22px 26px;
  }

  .seo-hero-copy-v113 h1 {
    margin-top: 16px;
    font-size: clamp(39px, 11vw, 47px);
  }

  .seo-hero-copy-v113 > p {
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.55;
  }

  .seo-hero-actions-v113 {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

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

  .seo-hero-facts-v113 {
    margin-top: 24px;
    padding-top: 16px;
  }

  .seo-hero-facts-v113 > div {
    display: block;
    padding-inline: 8px;
  }

  .seo-hero-facts-v113 dt {
    margin-bottom: 4px;
  }

  .seo-hero-facts-v113 b {
    font-size: 9px;
  }

  .seo-hero-visual-v113 {
    min-height: 300px;
  }

  .seo-hero-visual-v113 figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .seo-hero-visual-v113 figcaption b {
    font-size: 23px;
  }

  .seo-visual-sheet-v113 {
    top: 22px;
    right: 18px;
    width: 126px;
    min-height: 86px;
    padding: 13px;
  }

  .seo-visual-sheet-v113 b {
    font-size: 23px;
  }

  .seo-catalog-v113 {
    padding: 62px 0;
  }

  .seo-section-head-v113 {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-section-head-v113 h2 {
    font-size: 38px;
  }

  .seo-material-grid-v113 {
    grid-template-columns: 1fr;
  }

  .seo-material-grid-v113 .material-card:nth-child(n + 5) {
    display: none;
  }

  .seo-route-v113 {
    min-height: 0;
    padding: 32px 24px;
    gap: 28px;
  }

  .seo-route-v113 h2 {
    font-size: 31px;
  }

  .seo-route-v113 .button {
    width: 100%;
  }

  .custom-form-layout-v99 {
    width: calc(100% - 24px);
    padding: 54px 0 70px;
    gap: 16px;
  }

  .custom-form-layout-v99 .custom-form-copy {
    padding: 30px 24px 26px;
  }

  .custom-form-layout-v99 .custom-form-copy h2 {
    font-size: 34px;
  }

  .custom-form-layout-v99 .custom-form-roadmap {
    grid-template-columns: 1fr;
  }

  .custom-form-layout-v99 .custom-form-roadmap li {
    min-height: 62px;
    padding: 12px 0;
    border-right: 0;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .custom-form-layout-v99 .custom-form-roadmap span {
    display: block;
    grid-row: 1 / 3;
  }

  .custom-form-layout-v99 .custom-form-roadmap small {
    display: block;
  }

  .legal-hero-v113 {
    min-height: 0;
  }

  .legal-hero-v113 > div {
    padding: 40px 24px 30px;
  }

  .legal-hero-v113 h1 {
    margin-top: 17px;
    font-size: clamp(42px, 11.2vw, 50px);
    overflow-wrap: anywhere;
  }

  .legal-hero-v113 > div > p {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.6;
  }

  .legal-hero-v113 aside {
    min-height: 230px;
    margin: 0 14px 14px;
    padding: 28px 24px;
  }

  .legal-hero-v113 aside b {
    font-size: 23px;
  }

  .legal-layout-v113 {
    padding: 54px 0;
  }

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

  .legal-card-v113 section {
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .legal-card-v113 section > span {
    width: 36px;
    height: 36px;
  }

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

  .legal-card-v113 p {
    margin-top: 13px;
    font-size: 13px;
    line-height: 1.65;
  }

  .legal-action-v113 {
    min-height: 0;
    padding: 30px 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .legal-action-v113 > div b {
    font-size: 26px;
  }

  .legal-action-v113 .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-hero-visual-v113 > img,
  .seo-visual-sheet-v113 {
    transform: none;
    transition: none;
  }
}

/* v116: TemaEst brand identity */
.site-header .brand-mark {
  flex-basis: 54px;
  width: 54px;
  height: 54px;
}

.site-header .brand-mark img {
  width: 54px;
  height: 54px;
  border-radius: 0;
  filter: drop-shadow(0 10px 12px rgba(21, 76, 185, .2));
  box-shadow: none;
}

.site-header .brand-copy {
  gap: 2px;
}

.site-header .brand-copy strong {
  font-size: 26px;
  font-variation-settings: "wght" 810;
  line-height: 1;
}

.footer-brand .brand-mark {
  flex-basis: 48px;
  width: 48px;
  height: 48px;
}

.footer-brand .brand-mark img {
  width: 48px;
  height: 48px;
  border-radius: 0;
  filter: drop-shadow(0 8px 10px rgba(21, 76, 185, .16));
  box-shadow: none;
}

.reviews-section-v97 .review-card-alina blockquote {
  font-style: italic;
}

.brand-copy small {
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 430px) {
  .site-header .brand-mark {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .site-header .brand-mark img {
    width: 44px;
    height: 44px;
  }

  .site-header .brand-copy strong {
    font-size: 21px;
  }
}

/* v121: shorter homepage funnel and compact final conversion block */
.about-story#process {
  scroll-margin-top: 112px;
}

.home-final-cta {
  position: relative;
  display: grid;
  min-height: 390px;
  margin-top: 18px;
  margin-bottom: 78px;
  padding: 58px 62px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(45, 112, 246, .42), transparent 25rem),
    linear-gradient(125deg, #071a33 0%, #0a2a58 68%, #113d81 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  box-shadow: 0 32px 78px rgba(7, 26, 51, .22);
  grid-template-columns: 118px minmax(0, 1fr) minmax(260px, 310px);
  gap: 48px;
  isolation: isolate;
}

.home-final-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0 / 64px 64px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 38%, #000);
  pointer-events: none;
}

.home-final-cta::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--acid) 0 14%, var(--electric) 14% 31%, rgba(255, 255, 255, .12) 31% 100%);
  content: "";
}

.home-final-cta-mark {
  position: relative;
  display: grid;
  width: 112px;
  height: 164px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
}

.home-final-cta-mark::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(183, 255, 42, .34);
  border-radius: 12px;
  content: "";
}

.home-final-cta-mark span {
  position: relative;
  z-index: 1;
  font-size: 74px;
  font-variation-settings: "wght" 850;
  line-height: 1;
}

.home-final-cta-mark i {
  position: absolute;
  right: -9px;
  bottom: 28px;
  width: 30px;
  height: 6px;
  background: var(--acid);
  border-radius: 99px;
}

.home-final-cta-copy {
  position: relative;
  z-index: 1;
}

.home-final-cta .eyebrow {
  color: var(--acid);
}

.home-final-cta-copy h2 {
  max-width: 720px;
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(50px, 4.8vw, 70px);
  line-height: .94;
  text-wrap: balance;
}

.home-final-cta-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .69);
  font-size: 14px;
  line-height: 1.62;
}

.home-final-cta-actions {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 10px;
}

.home-final-cta-actions > a {
  display: flex;
  min-height: 56px;
  padding: 0 19px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  font-size: 13px;
  font-variation-settings: "wght" 780;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.home-final-cta-primary {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid) !important;
}

.home-final-cta-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .055);
}

.home-final-cta-actions > small {
  margin-top: 11px;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.home-final-cta-actions > a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .home-final-cta-actions > a:hover {
    transform: translateY(-2px);
  }

  .home-final-cta-primary:hover {
    background: #c6ff50;
  }

  .home-final-cta-secondary:hover {
    color: var(--ink);
    background: #fff;
    border-color: #fff;
  }
}

@media (max-width: 1024px) {
  .home-final-cta {
    padding-right: 42px;
    padding-left: 42px;
    grid-template-columns: 88px minmax(0, 1fr) minmax(230px, 270px);
    gap: 30px;
  }

  .home-final-cta-mark {
    width: 84px;
    height: 136px;
  }

  .home-final-cta-mark span {
    font-size: 58px;
  }
}

@media (max-width: 768px) {
  .about-story#process {
    scroll-margin-top: 84px;
  }

  .home-final-cta {
    min-height: 0;
    margin: 12px 14px 54px;
    padding: 42px 26px 28px;
    border-radius: 22px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-final-cta-mark {
    position: absolute;
    z-index: 0;
    top: -24px;
    right: -12px;
    width: 116px;
    height: 156px;
    opacity: .13;
    transform: rotate(8deg);
  }

  .home-final-cta-copy h2 {
    max-width: 520px;
    font-size: clamp(42px, 11.8vw, 58px);
  }

  .home-final-cta-copy p {
    max-width: 520px;
    margin-top: 20px;
  }

  .home-final-cta-actions {
    max-width: 520px;
  }

  .home-final-cta-actions > a {
    width: 100%;
  }

  .home-final-cta-actions > small {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .home-final-cta {
    margin-right: 10px;
    margin-left: 10px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .home-final-cta-copy h2 {
    font-size: 41px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-final-cta-actions > a {
    transition: none;
  }

  .home-final-cta-actions > a:hover {
    transform: none;
  }
}

/* v122: product-first catalog merchandising */
.catalog-preview-v122 {
  padding-top: 84px;
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 98, 239, .1), transparent 28rem),
    linear-gradient(180deg, #f8faff 0%, #f1f5fb 100%);
  box-shadow: 0 0 0 100vmax #f4f7fc;
}

.catalog-preview-v122::before {
  top: 54px;
  right: -12px;
  color: rgba(29, 98, 239, .032);
  content: "ВЫБОР";
  font-size: clamp(100px, 13vw, 190px);
}

.catalog-preview-v122 .section-heading {
  align-items: end;
}

.catalog-preview-v122 .catalog-v122-title {
  max-width: 850px;
}

.catalog-preview-v122 .catalog-v122-title h2 {
  max-width: 800px;
  font-size: clamp(48px, 4.7vw, 66px);
  line-height: .96;
}

.catalog-preview-v122 .catalog-v122-title > p {
  max-width: 610px;
  margin: 22px 0 0;
  color: #566983;
  font-size: 15px;
  line-height: 1.55;
}

.catalog-preview-v122 .catalog-heading-actions {
  padding-bottom: 4px;
  gap: 18px;
}

.catalog-assurances {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  border-top: 1px solid #cbd7e8;
  border-bottom: 1px solid #cbd7e8;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-assurances > div {
  position: relative;
  display: grid;
  min-height: 90px;
  padding: 22px 30px 20px;
  align-content: center;
  border-right: 1px solid #cbd7e8;
  gap: 6px;
}

.catalog-assurances > div:last-child {
  border-right: 0;
}

.catalog-assurances > div::before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 52px;
  height: 4px;
  background: var(--electric);
  border-radius: 0 0 4px 4px;
  content: "";
}

.catalog-assurances > div:nth-child(2)::before {
  background: var(--acid);
}

.catalog-assurances > div:nth-child(3)::before {
  background: var(--ink);
}

.catalog-assurances b {
  color: var(--ink);
  font-size: 16px;
  font-variation-settings: "wght" 800;
}

.catalog-assurances small {
  color: #6c7d94;
  font-size: 11px;
  line-height: 1.4;
}

.catalog-preview-v122 .catalog-explorer {
  display: block;
  margin-top: 28px;
  padding: 10px;
  overflow: visible;
  background: rgba(255, 255, 255, .9);
  border: 1px solid #d0dbea;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(30, 61, 108, .1);
}

.catalog-preview-v122 .catalog-type-tabs {
  display: grid;
  padding: 0;
  background: transparent;
  border: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.catalog-preview-v122 .catalog-type-tabs a {
  min-height: 84px;
  padding: 19px 21px 17px;
  background: #f1f5fb;
  border: 1px solid transparent;
  border-radius: 14px;
}

.catalog-preview-v122 .catalog-type-tabs a:last-child {
  border-right: 1px solid transparent;
}

.catalog-preview-v122 .catalog-type-tabs a::after {
  top: 15px;
  right: 16px;
  bottom: auto;
  left: auto;
  width: 9px;
  height: 9px;
  background: #cdd8e9;
  border-radius: 50%;
}

.catalog-preview-v122 .catalog-type-tabs a small {
  color: #7788a0;
}

.catalog-preview-v122 .catalog-type-tabs a b {
  margin-top: 9px;
  font-size: 17px;
}

.catalog-preview-v122 .catalog-type-tabs a.is-active,
.catalog-preview-v122 .catalog-type-tabs a:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.catalog-preview-v122 .catalog-type-tabs a.is-active::after {
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(183, 255, 42, .12);
}

.catalog-preview-v122 .catalog-type-tabs a.is-active small,
.catalog-preview-v122 .catalog-type-tabs a.is-active b,
.catalog-preview-v122 .catalog-type-tabs a:hover small,
.catalog-preview-v122 .catalog-type-tabs a:hover b {
  color: #fff;
}

.catalog-preview-v122 .catalog-mode-panel {
  padding: 22px 18px 16px;
  background: transparent;
}

.catalog-preview-v122 .catalog-subjects-label {
  padding-top: 9px;
  color: #73849b;
  font-size: 9px;
}

.catalog-preview-v122 .catalog-subject-list a {
  min-height: 36px;
  padding: 8px 14px;
  background: #fff;
  border-color: #d4deec;
  border-radius: 999px;
}

.catalog-preview-v122 .catalog-finder {
  min-height: 62px;
  margin-top: 18px;
  background: #fff;
  border-color: #cfdbea;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(25, 56, 101, .06);
}

.catalog-preview-v122 .catalog-finder button {
  min-height: 48px;
  border-radius: 11px;
}

.catalog-preview-v122 .material-grid-home {
  margin-top: 26px;
  gap: 20px;
}

.catalog-preview-v122 .home-material-card,
.catalog-preview-v122 .home-material-card:nth-child(2),
.catalog-preview-v122 .home-material-card-featured,
.catalog-preview-v122 .home-material-card-compact,
.catalog-preview-v122 .home-material-card-compact:nth-child(2),
.catalog-preview-v122 .home-material-card-compact:nth-child(3) {
  border: 1px solid #cbd7e6;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(34, 65, 110, .09);
}

.catalog-preview-v122 .home-material-media,
.catalog-preview-v122 .home-material-card-featured .home-material-media,
.catalog-preview-v122 .home-material-card-compact .home-material-media {
  aspect-ratio: 1.18;
  border: 0;
  border-bottom: 1px solid #d4deeb;
  border-radius: 0;
  background: #dce7f7;
}

.catalog-preview-v122 .home-material-media::before {
  display: none;
}

.catalog-preview-v122 .home-material-media::after {
  top: 0;
  background: linear-gradient(180deg, rgba(7, 26, 51, .08) 0%, transparent 45%, rgba(7, 26, 51, .72) 100%);
}

.catalog-preview-v122 .home-material-media img,
.catalog-preview-v122 .home-material-card-featured .home-material-media img,
.catalog-preview-v122 .home-material-card-compact .home-material-media img {
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-preview-v122 .home-material-media > .catalog-cover-brand {
  top: 13px;
  left: 13px;
  height: 30px;
  padding: 0 10px 0 5px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(7, 26, 51, .12);
  backdrop-filter: blur(8px);
}

.catalog-preview-v122 .home-material-media > .catalog-cover-title {
  display: none;
}

.catalog-preview-v122 .home-material-media > .catalog-cover-subject {
  right: 54px;
  bottom: 13px;
  left: 13px;
  max-width: calc(100% - 76px);
  background: var(--electric);
  border-radius: 7px;
}

.catalog-preview-v122 .home-material-media > i {
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
}

.catalog-preview-v122 .home-material-card .home-material-body,
.catalog-preview-v122 .home-material-card-featured .home-material-body,
.catalog-preview-v122 .home-material-card-compact .home-material-body {
  min-height: 185px;
  padding: 16px 16px 14px;
}

.catalog-preview-v122 .home-material-card .home-material-copy,
.catalog-preview-v122 .home-material-card-featured .home-material-copy,
.catalog-preview-v122 .home-material-card-compact .home-material-copy {
  margin-top: 12px;
}

.catalog-preview-v122 .home-material-card .home-material-copy h3,
.catalog-preview-v122 .home-material-card-featured .home-material-copy h3,
.catalog-preview-v122 .home-material-card-compact .home-material-copy h3 {
  min-height: 61px;
  font-size: 18px;
  line-height: 1.13;
}

.catalog-preview-v122 .home-material-footer,
.catalog-preview-v122 .home-material-card-compact .home-material-footer {
  min-height: 60px;
  margin: auto 0 0;
  padding: 12px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid #d7e0ec;
  border-radius: 0;
}

.catalog-preview-v122 .home-material-footer > div small,
.catalog-preview-v122 .home-material-card-compact .home-material-footer > div small {
  color: #657790;
  font-size: 8px;
}

.catalog-preview-v122 .home-material-footer > div b,
.catalog-preview-v122 .home-material-card-compact .home-material-footer > div b {
  color: var(--ink);
  font-size: 24px;
}

.catalog-preview-v122 .home-material-footer a,
.catalog-preview-v122 .home-material-card-compact .home-material-footer a {
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
}

@media (hover: hover) and (pointer: fine) {
  .catalog-preview-v122 .home-material-card:hover,
  .catalog-preview-v122 .home-material-card:nth-child(2):hover {
    border-color: rgba(29, 98, 239, .5);
    box-shadow: 0 24px 52px rgba(34, 65, 110, .16);
    transform: translateY(-4px);
  }
}

@media (max-width: 1080px) {
  .catalog-preview-v122 .material-grid-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-preview-v122 .catalog-type-tabs a {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 900px) {
  .catalog-preview-v122 .material-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-assurances > div {
    padding-right: 20px;
    padding-left: 20px;
  }

  .catalog-assurances > div::before {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .catalog-preview-v122 {
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .catalog-preview-v122 .catalog-v122-title h2 {
    font-size: clamp(38px, 10.6vw, 50px);
  }

  .catalog-preview-v122 .catalog-v122-title > p {
    margin-top: 18px;
    font-size: 14px;
  }

  .catalog-assurances {
    margin-top: 30px;
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    scrollbar-width: none;
  }

  .catalog-assurances::-webkit-scrollbar {
    display: none;
  }

  .catalog-assurances > div {
    min-height: 82px;
    padding: 20px;
  }

  .catalog-preview-v122 .catalog-explorer {
    margin-top: 20px;
    padding: 7px;
    border-radius: 18px;
  }

  .catalog-preview-v122 .catalog-type-tabs {
    gap: 6px;
  }

  .catalog-preview-v122 .catalog-type-tabs a {
    min-height: 64px;
    padding: 14px 8px 12px;
    text-align: center;
  }

  .catalog-preview-v122 .catalog-type-tabs a::after {
    top: 9px;
    right: 9px;
    width: 7px;
    height: 7px;
  }

  .catalog-preview-v122 .catalog-type-tabs a small {
    display: none;
  }

  .catalog-preview-v122 .catalog-type-tabs a b {
    margin: 0;
    font-size: 12px;
  }

  .catalog-preview-v122 .catalog-mode-panel {
    padding: 18px 13px 12px;
  }

  .catalog-preview-v122 .catalog-subject-list {
    margin-right: -13px;
    margin-left: -13px;
    padding-right: 13px;
    padding-left: 13px;
  }

  .catalog-preview-v122 .material-grid-home {
    grid-template-columns: none;
  }

  .catalog-preview-v122 .home-material-media,
  .catalog-preview-v122 .home-material-card-featured .home-material-media,
  .catalog-preview-v122 .home-material-card-compact .home-material-media {
    aspect-ratio: 1.2;
  }
}

@media (max-width: 480px) {
  .catalog-assurances {
    overflow: hidden;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-assurances > div {
    min-height: 74px;
    padding: 18px 9px 13px;
  }

  .catalog-assurances > div::before {
    left: 9px;
    width: 32px;
  }

  .catalog-assurances b {
    font-size: 11px;
    line-height: 1.15;
  }

  .catalog-assurances small {
    display: none;
  }

  .catalog-preview-v122 .catalog-finder-search input {
    font-size: 11px;
  }

  .catalog-preview-v122 .catalog-heading-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-preview-v122 .home-material-card,
  .catalog-preview-v122 .home-material-media img {
    transition: none;
  }

  .catalog-preview-v122 .home-material-card:hover,
  .catalog-preview-v122 .home-material-media:hover img {
    transform: none;
  }
}

/* v123: direct purchase flow for ready materials */
.project-order-shell-v123 {
  align-items: stretch;
}

.project-order-shell-v123 .project-order-summary,
.project-order-shell-v123 .project-order-form-quick {
  min-height: 100%;
}

.project-order-form-quick {
  align-content: start;
}

.project-order-form-quick .consent-row {
  margin-top: 4px;
}

.project-order-form-quick .button-full {
  min-height: 58px;
  font-size: 15px;
}

.project-order-form-quick .project-order-footnote {
  max-width: 560px;
}

@media (max-width: 768px) {
  .project-order-shell-v123 .project-order-summary {
    padding: 28px 24px 26px;
  }

  .project-order-shell-v123 .project-order-summary h2 {
    margin-top: 12px;
    font-size: 34px;
  }

  .project-order-shell-v123 .project-order-summary > p {
    margin-top: 13px;
    line-height: 1.55;
  }

  .project-order-shell-v123 .project-order-total {
    display: flex;
    margin-top: 22px;
    padding-block: 17px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
  }

  .project-order-shell-v123 .project-order-total span {
    max-width: 150px;
    line-height: 1.35;
  }

  .project-order-shell-v123 .project-order-total b {
    font-size: 40px;
    white-space: nowrap;
  }

  .project-order-shell-v123 .project-order-assurances {
    display: none;
  }

  .project-order-form-quick .contact-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .project-order-form-quick .contact-options span {
    padding-inline: 7px;
    font-size: 10px;
  }

  .project-order-form-quick .button-full {
    min-height: 56px;
  }
}
