@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

:root {
  --ink: #111316;
  --muted: #626a73;
  --soft: #f4f2ee;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: rgba(17, 19, 22, .12);
  --line-strong: rgba(17, 19, 22, .22);
  --green: #0b6f5c;
  --blue: #2454ff;
  --clay: #c56b45;
  --lime: #c9f24a;
  --shadow: 0 18px 60px rgba(17, 19, 22, .10);
  --max: 1180px;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 19, 22, .035) 1px, transparent 1px),
    linear-gradient(rgba(17, 19, 22, .035) 1px, transparent 1px),
    radial-gradient(760px 520px at 82% 8%, rgba(201, 242, 74, .22), transparent 60%),
    radial-gradient(620px 520px at 8% 10%, rgba(36, 84, 255, .12), transparent 58%),
    var(--paper);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  font: 16px/1.6 var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 250, 247, .86), rgba(251, 250, 247, .98) 42%);
}

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

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2 {
  font-family: var(--serif);
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1 {
  font-size: clamp(48px, 7vw, 98px);
  line-height: .92;
  max-width: 10ch;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: .98;
  margin-bottom: 18px;
}

h3 {
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 1000;
}

.progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--clay));
}

.site-header,
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, .82);
  backdrop-filter: blur(18px);
}

.header-row,
.header__inner {
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 74px;
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: var(--paper);
  font-weight: 850;
  letter-spacing: .02em;
}

.brand__name,
.brand__text {
  display: block;
  font-weight: 850;
  line-height: 1.05;
}

.brand__claim,
.brand__mini {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.nav a,
.nav__link {
  color: rgba(17, 19, 22, .68);
  font-size: 13px;
  font-weight: 760;
  padding: 10px 10px;
  transition: color .18s ease, background .18s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav__link:hover {
  color: var(--ink);
  background: rgba(17, 19, 22, .045);
}

.nav a.is-current,
.nav__link.is-current {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--green);
}

.nav a.btn--dark {
  color: var(--paper);
}

.nav a.btn--dark:hover {
  color: var(--paper);
  background: var(--ink);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 6px;
  padding: 3px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .58);
}

.nav .lang-switch a,
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.nav .lang-switch a:hover,
.lang-switch a:hover {
  color: var(--ink);
  background: rgba(17, 19, 22, .045);
}

.lang-switch a.is-active {
  background: var(--ink);
  color: var(--paper);
}

.lang-switch--mobile {
  width: fit-content;
  margin: 8px 0 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(17, 19, 22, .11);
}

.btn--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn--light {
  background: rgba(255, 255, 255, .72);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  padding: 10px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.mobile {
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 247, .94);
}

.mobile__inner {
  display: grid;
  gap: 10px;
  padding: 14px 0 18px;
}

.mobile__link {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.mobile__cta {
  width: 100%;
}

.hero {
  padding: clamp(58px, 8vw, 118px) 0 42px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.hero__copy {
  padding-top: 18px;
}

.eyebrow,
.section-kicker,
.badge {
  width: fit-content;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
}

.lead {
  max-width: 690px;
  color: #30363d;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 620px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.metric-row div {
  min-height: auto;
  padding: 18px 22px 18px 0;
  border-right: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.metric-row div + div {
  padding-left: 22px;
}

.metric-row div:last-child {
  border-right: 0;
}

.metric-row strong {
  display: block;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1;
  letter-spacing: -.02em;
}

.metric-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding-top: 10px;
}

.profile {
  display: grid;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(17, 19, 22, .10);
  border-radius: 28px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 24px 80px rgba(17, 19, 22, .10);
  backdrop-filter: blur(18px);
}

.profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 24%;
  border-radius: 20px;
  filter: grayscale(.16) contrast(1.02);
}

.profile h2 {
  font-family: var(--sans);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.05;
  margin: 0 8px 8px;
}

.profile p {
  color: var(--muted);
  margin: 0 8px 8px;
  max-width: 32ch;
}

.signal-list {
  display: grid;
  gap: 12px;
}

.signal-list div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(17, 19, 22, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 16px 44px rgba(17, 19, 22, .07);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.signal-list div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--green);
}

.signal-list div:nth-child(2)::before {
  background: var(--blue);
}

.signal-list div:nth-child(3)::before {
  background: var(--clay);
}

.signal-list div:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 19, 22, .18);
  box-shadow: 0 22px 60px rgba(17, 19, 22, .10);
}

.signal-list span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.signal-list strong {
  display: block;
  margin-bottom: 0;
  font-size: 18px;
}

.signal-list p {
  grid-column: auto;
  margin-bottom: 0;
  font-size: 14px;
}

.logo-strip {
  padding: 6px 0 50px;
  border: 0;
  background: transparent;
}

.trust-strip {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(17, 19, 22, .14);
  color: var(--ink);
  font-weight: 900;
}

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

.expertise-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .58);
}

.expertise-card .keyword-panel__label {
  line-height: 1;
  margin-bottom: 28px;
}

.keyword-panel {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 26px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid rgba(17, 19, 22, .14);
  border-bottom: 1px solid rgba(17, 19, 22, .14);
}

.keyword-panel__label {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  line-height: 40px;
  text-transform: uppercase;
}

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

.logo-strip__inner span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 14px 11px 16px;
  border: 1px solid rgba(17, 19, 22, .12);
  border-radius: 0;
  background: rgba(255, 255, 255, .46);
  color: rgba(17, 19, 22, .66);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.logo-strip__inner span.is-strong {
  border-color: rgba(11, 111, 92, .30);
  background: rgba(11, 111, 92, .055);
  color: var(--ink);
}

.logo-strip__inner span::before {
  content: "";
  width: 2px;
  align-self: stretch;
  margin: -3px 11px -3px 0;
  background: rgba(17, 19, 22, .18);
}

.logo-strip__inner span.is-strong::before {
  background: var(--green);
}

.logo-strip__inner span:hover {
  border-color: rgba(17, 19, 22, .22);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.split {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
  margin-bottom: 34px;
}

.section-copy {
  max-width: 860px;
}

.section-copy p {
  max-width: 720px;
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.service-card {
  min-height: 300px;
  padding: 24px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .58);
}

.service-card p {
  margin-bottom: 0;
}

.icon {
  width: 30px;
  height: 30px;
  margin-bottom: 42px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.system-section {
  background: #171a1f;
  color: var(--paper);
}

.system-section p,
.system-section li {
  color: rgba(251, 250, 247, .68);
}

.system-section .section-kicker {
  color: var(--lime);
}

.system-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.system-copy {
  position: sticky;
  top: 112px;
}

.system-cards {
  display: grid;
  gap: 14px;
}

.system-card {
  padding: 28px;
  border: 1px solid rgba(251, 250, 247, .18);
  background: rgba(251, 250, 247, .06);
}

.system-card--dark {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.system-card--dark p,
.system-card--dark li {
  color: rgba(17, 19, 22, .68);
}

.system-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.system-card--dark span {
  color: var(--green);
}

.system-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.system-card li {
  margin: 8px 0;
}

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

.process__item {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(17, 19, 22, .16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background .18s ease, border-color .18s ease;
}

.process__item::before {
  content: none;
}

.process__item::after {
  content: none;
}

.process__item:hover {
  transform: none;
  background: rgba(255, 255, 255, .42);
  border-color: rgba(17, 19, 22, .28);
  box-shadow: none;
}

.process__item span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 62px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.process__item h3,
.process__item p {
  position: relative;
  z-index: 1;
}

.process__item h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

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

.reference-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: var(--paper);
}

.reference-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
  filter: grayscale(.2);
  transform: scale(1.02);
  transition: transform .5s ease, opacity .5s ease;
}

.reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 19, 22, .05), rgba(17, 19, 22, .76));
}

.reference-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.reference-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.reference-card p {
  color: rgba(251, 250, 247, .76);
  margin-bottom: 0;
}

.reference-card:hover img {
  transform: scale(1.08);
  opacity: .9;
}

.insight-section {
  padding: 52px 0;
  border-block: 1px solid var(--line-strong);
  background: var(--lime);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
}

.cta-strip__title {
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 4px;
}

.insight {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.insight h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.contact-section {
  background: var(--soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy p {
  font-size: 18px;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  font-weight: 850;
}

.form,
.modal__dialog,
.cookie__inner,
.post-card,
.sidebar-box {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow);
}

.form {
  padding: clamp(22px, 4vw, 38px);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  padding: 11px 0 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
}

.privacy-toggle {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.privacy-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
  margin-top: 2px;
}

.privacy-text {
  font-size: 14px;
  color: var(--muted);
}

.linklike {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.privacy-text .linklike {
  text-decoration: underline;
  font-weight: 800;
}

.modal__form .privacy-toggle {
  margin: 4px 0 18px;
}

.toast {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
  background: var(--paper);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.modal[aria-hidden="false"] {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 22, .56);
  backdrop-filter: blur(10px);
}

.modal__dialog {
  position: relative;
  width: min(700px, calc(100% - 32px));
  margin: 7vh auto;
  background: var(--paper);
}

.modal__dialog--legal {
  width: min(860px, calc(100% - 32px));
}

.modal__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 8px;
}

.modal__title {
  font-weight: 900;
  font-size: 20px;
}

.modal__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  font-size: 24px;
}

.modal__form,
.legal {
  padding: 14px 22px 22px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.cookie {
  position: fixed;
  z-index: 2500;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: center;
}

.cookie__inner {
  width: min(980px, 100%);
  padding: 16px;
  background: var(--paper);
}

.cookie__title {
  font-weight: 900;
  margin-bottom: 4px;
}

.cookie__text {
  font-size: 14px;
}

.cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cookie__panel {
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 14px;
}

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

.toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid var(--line);
}

.page-hero {
  padding: clamp(62px, 9vw, 112px) 0 46px;
}

.page-hero__inner,
.article {
  max-width: 880px;
}

.page-hero h1,
.article h1 {
  max-width: 13ch;
  word-break: break-all;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.badge__dot {
  width: 9px;
  height: 9px;
  background: var(--green);
}

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

.post-list {
  display: grid;
  gap: 16px;
}

.post-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.post-card h2,
.post-card h3 {
  margin-bottom: 0;
}

.post-card__meta,
.post-meta {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.post-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.sidebar {
  display: grid;
  gap: 16px;
}

.sidebar-box {
  padding: 20px;
}

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

.chip {
  display: inline-flex;
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.archive-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.article h2 {
  margin-top: 42px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  word-break: break-all;
}

.article p,
.article li {
  color: var(--muted);
}

.article-callout {
  margin: 30px 0;
  padding: 22px;
  border-left: 4px solid var(--green);
  background: rgba(11, 111, 92, .08);
}

.seo-page {
  padding-bottom: clamp(72px, 10vw, 128px);
}

.seo-page .page-hero {
  padding: clamp(42px, 6vw, 72px) 0 34px;
}

.seo-page .page-hero h1,
.seo-page .article h1,
.page-hero__inner h1 {
  max-width: 20ch;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: .98;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: auto;
}

.seo-page .lead {
  max-width: 760px;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.seo-main {
  display: grid;
  gap: 16px;
}

.content-panel,
.link-panel,
.faq-panel,
.case-card {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 60px rgba(17, 19, 22, .06);
}

.content-panel,
.faq-panel,
.case-card {
  padding: clamp(22px, 4vw, 34px);
}

.content-panel--dark {
  background: #171a1f;
  color: var(--paper);
  border-color: #171a1f;
}

.content-panel--dark p,
.content-panel--dark li {
  color: rgba(251, 250, 247, .72);
}

.mini-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .52);
}

.mini-proof-grid div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.mini-proof-grid div:last-child {
  border-right: 0;
}

.mini-proof-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.mini-proof-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.content-panel h2,
.faq-panel h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
}

.content-panel p:last-child,
.content-panel ul:last-child,
.faq-panel p:last-child {
  margin-bottom: 0;
}

.content-panel ul,
.faq-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.content-panel li,
.faq-panel li {
  margin: 8px 0;
}

.link-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding: 20px;
}

.link-panel h2 {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 0;
}

.link-panel a:not(.btn) {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.link-panel a:not(.btn):hover {
  color: var(--ink);
}

.faq-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  margin-bottom: 8px;
}

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

.case-card {
  display: grid;
  gap: 14px;
}

.case-card__meta {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.case-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.case-card dt {
  font-weight: 900;
}

.case-card dd {
  margin: 0;
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.breadcrumb a:hover {
  color: var(--ink);
}

.breadcrumb span::before {
  content: ">";
  margin-right: 12px;
  color: rgba(17, 19, 22, .34);
}

.showcase-hero {
  padding: 38px 0 clamp(42px, 7vw, 84px);
}

.showcase-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
  margin-top: clamp(44px, 7vw, 78px);
}

.showcase-hero h1 {
  max-width: none;
  margin-bottom: 20px;
  word-break: normal;
}

.showcase-hero h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.02;
}

.showcase-hero__copy p:not(.lead) {
  max-width: 620px;
  font-size: 17px;
}

.showcase-signals {
  display: grid;
  gap: 0;
}

.showcase-signals > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-strong);
}

.showcase-signals > div:first-child {
  padding-top: 10px;
}

.showcase-signals h3 {
  margin-bottom: 6px;
}

.showcase-signals p {
  margin-bottom: 0;
  font-size: 14px;
}

.showcase-signals .icon,
.plugin-card__icon .icon {
  margin: 0;
}

.showcase-section {
  padding: 0 0 clamp(72px, 10vw, 128px);
}

.showcase-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-strong);
}

.showcase-filters a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .62);
  color: rgba(17, 19, 22, .78);
  font-size: 13px;
  font-weight: 850;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.showcase-filters a:hover,
.showcase-filters a.is-active {
  border-color: var(--green);
  background: rgba(11, 111, 92, .055);
  color: var(--ink);
}

.showcase-group {
  margin-top: 28px;
}

.showcase-group + .showcase-group {
  margin-top: 34px;
}

.showcase-title {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
}

.showcase-feature,
.plugin-card,
.showcase-cta {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 60px rgba(17, 19, 22, .06);
}

.showcase-feature {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, .78fr) 250px;
  align-items: stretch;
  overflow: hidden;
}

.theme-preview {
  position: relative;
  min-height: 392px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 38px 34px;
  background:
    radial-gradient(360px 260px at 78% 28%, rgba(36, 84, 255, .18), transparent 62%),
    linear-gradient(135deg, rgba(17, 19, 22, .03), rgba(11, 111, 92, .07));
}

.browser-mockup {
  width: min(100%, 470px);
  min-height: 260px;
  border: 10px solid #171a1f;
  border-bottom-width: 18px;
  border-radius: 14px;
  background: #f8f7f3;
  box-shadow: 0 22px 60px rgba(17, 19, 22, .20);
}

.browser-mockup__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 30px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(17, 19, 22, .12);
  font-size: 10px;
  font-weight: 900;
}

.browser-mockup__bar i {
  width: 42px;
  height: 14px;
  border: 1px solid var(--line-strong);
}

.browser-mockup__content {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 20px;
  align-items: center;
  padding: 34px 28px 24px;
}

.browser-mockup strong {
  display: block;
  max-width: 13ch;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.02;
}

.browser-mockup p {
  margin: 10px 0 16px;
  font-size: 11px;
  line-height: 1.45;
}

.browser-mockup button {
  min-height: 28px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0 11px;
  font-size: 9px;
  font-weight: 900;
}

.browser-mockup__visual {
  position: relative;
  min-height: 140px;
}

.browser-mockup__visual span {
  position: absolute;
  bottom: 0;
  width: 54px;
  height: 98px;
  border: 1px solid rgba(36, 84, 255, .22);
  background: linear-gradient(180deg, rgba(36, 84, 255, .12), rgba(11, 111, 92, .10));
  transform: skewY(-10deg);
}

.browser-mockup__visual span:nth-child(1) {
  left: 0;
  height: 74px;
}

.browser-mockup__visual span:nth-child(2) {
  left: 48px;
}

.browser-mockup__visual span:nth-child(3) {
  left: 96px;
  height: 126px;
}

.browser-mockup__footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 26px 18px;
  color: rgba(17, 19, 22, .68);
  font-size: 9px;
  font-weight: 850;
}

.phone-mockup {
  position: absolute;
  right: 48px;
  bottom: 38px;
  width: 116px;
  min-height: 206px;
  padding: 24px 14px 14px;
  border: 7px solid #171a1f;
  border-radius: 24px;
  background: #f8f7f3;
  box-shadow: 0 18px 42px rgba(17, 19, 22, .18);
}

.phone-mockup span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: #171a1f;
  transform: translateX(-50%);
}

.phone-mockup strong {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.05;
}

.phone-mockup p {
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.35;
}

.showcase-feature__body,
.showcase-side,
.plugin-card__body,
.plugin-card__side {
  padding: 34px 30px;
}

.showcase-feature h3,
.plugin-card h3 {
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.showcase-feature__body p,
.plugin-card__body p {
  margin-bottom: 18px;
}

.showcase-side,
.plugin-card__side {
  border-left: 1px solid var(--line);
}

.showcase-side ul,
.plugin-card__side ul {
  margin: 18px 0 28px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.showcase-side li,
.plugin-card__side li {
  margin: 9px 0;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(17, 19, 22, .80);
  font-size: 14px;
}

.check-list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

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

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.text-link::after {
  content: "->";
  margin-left: 10px;
}

.plugin-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
}

.plugin-card__icon {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin-left: 30px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, .88), transparent 36%),
    rgba(11, 111, 92, .075);
}

.plugin-card__icon .icon {
  width: 62px;
  height: 62px;
  stroke-width: 1.55;
}

.showcase-cta {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 38px;
  padding: 28px 30px;
}

.showcase-cta .plugin-card__icon {
  width: 76px;
  height: 76px;
  margin-left: 0;
}

.showcase-cta .icon {
  width: 42px;
  height: 42px;
}

.showcase-cta h2 {
  font-size: clamp(25px, 2.5vw, 34px);
  margin-bottom: 4px;
}

.showcase-cta p {
  margin-bottom: 0;
}

.svg-sprite,
.cursor-dot,
.cursor-outline,
.bg,
.scroll-top {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}

html.js-ready .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .service-grid,
  .reference-grid,
  .expertise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero__grid,
  .system-grid,
  .contact-layout,
  .seo-layout,
  .showcase-hero__grid,
  .showcase-feature,
  .plugin-card,
  .showcase-cta {
    grid-template-columns: 1fr;
  }

  .system-copy,
  .contact-copy,
  .link-panel {
    position: static;
  }

  .showcase-side,
  .plugin-card__side {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .plugin-card {
    gap: 0;
  }

  .plugin-card__icon {
    margin: 28px 0 0 30px;
  }

  .showcase-cta .plugin-card__icon {
    margin: 0;
  }
}

@media (max-width: 1160px) {
  .header__inner,
  .header-row {
    grid-template-columns: minmax(180px, auto) minmax(0, 1fr) auto;
    gap: 10px;
  }

  .nav a,
  .nav__link {
    font-size: 12px;
    padding: 9px 7px;
  }

  .nav .btn {
    display: none;
  }
}

@media (max-width: 820px) {
  body {
    background-size: 34px 34px, 34px 34px, auto, auto, auto;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-row,
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .site-header > .container > .btn,
  .header > .container > .btn {
    display: none;
  }

  .burger {
    display: block;
  }

  .brand__claim,
  .brand__mini {
    display: none;
  }

  .lang-switch:not(.lang-switch--mobile) {
    display: none;
  }

  h1 {
    font-size: clamp(40px, 11vw, 58px);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .page-hero h1,
  .article h1 {
    max-width: 100%;
    font-size: clamp(38px, 10vw, 54px);
    word-break: break-all;
  }

  .article h2 {
    font-size: 30px;
    word-break: break-all;
  }

  .hero {
    padding-top: 48px;
  }

  .metric-row,
  .split,
  .keyword-panel,
  .process,
  .blog-grid,
  .check-list--columns,
  .expertise-grid,
  .mini-proof-grid {
    grid-template-columns: 1fr;
  }

  .mini-proof-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mini-proof-grid div:last-child {
    border-bottom: 0;
  }

  .keyword-panel {
    gap: 10px;
    padding: 18px 0;
  }

  .keyword-panel__label {
    line-height: 1.2;
  }

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

  .logo-strip__inner span {
    min-height: 42px;
    white-space: normal;
  }

  .profile {
    border-radius: 22px;
  }

  .profile img {
    border-radius: 16px;
    aspect-ratio: 1 / 1.08;
  }

  .metric-row div {
    min-height: 92px;
  }

  .process__item {
    min-height: auto;
  }

  .process__item span {
    margin-bottom: 34px;
  }

  .service-grid,
  .reference-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .icon {
    margin-bottom: 28px;
  }

  .reference-card {
    min-height: 330px;
  }

  .insight,
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-hero {
    padding-top: 28px;
  }

  .showcase-hero__grid {
    margin-top: 34px;
  }

  .showcase-filters {
    gap: 8px;
  }

  .showcase-filters a {
    min-height: 38px;
    padding: 8px 12px;
  }

  .theme-preview {
    min-height: 330px;
    padding: 24px 18px;
  }

  .browser-mockup {
    border-width: 8px;
    border-bottom-width: 14px;
  }

  .browser-mockup__content {
    grid-template-columns: 1fr;
    padding: 26px 20px 18px;
  }

  .browser-mockup__visual {
    min-height: 84px;
  }

  .browser-mockup__footer {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    right: 20px;
    bottom: 22px;
    width: 92px;
    min-height: 164px;
  }

  .phone-mockup strong {
    font-size: 14px;
  }

  .showcase-feature__body,
  .showcase-side,
  .plugin-card__body,
  .plugin-card__side {
    padding: 24px 22px;
  }

  .plugin-card__icon {
    width: 96px;
    height: 96px;
    margin: 22px 0 0 22px;
  }

  .showcase-cta {
    padding: 22px;
  }

  .seo-page .page-hero h1,
  .seo-page .article h1,
  .page-hero__inner h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 43px);
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
