:root {
  --paper: #f6f3ed;
  --paper-2: #ebe7dc;
  --ink: #111516;
  --muted: #63706c;
  --line: rgba(17, 21, 22, 0.12);
  --panel: #18201f;
  --panel-2: #222b29;
  --green: #a8ff60;
  --green-dark: #1c6c36;
  --blue: #3a6ff7;
  --amber: #ffb84d;
  --red: #ff6b57;
  --white: #fffdf7;
  --shadow: 0 24px 70px rgba(20, 26, 24, 0.14);
  color-scheme: light dark;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  background:
    linear-gradient(90deg, rgba(17, 21, 22, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 21, 22, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  color: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

html[data-theme="dark"] {
  --paper: #0d1113;
  --paper-2: #11181c;
  --ink: #edf2ef;
  --muted: #a7b5b0;
  --line: rgba(237, 242, 239, 0.12);
  --panel: #12181b;
  --panel-2: #1a2328;
  --green: #a8ff60;
  --green-dark: #a8ff60;
  --blue: #7ba2ff;
  --amber: #ffc96a;
  --red: #ff7c69;
  --white: #161d22;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme]) {
    --paper: #0d1113;
    --paper-2: #11181c;
    --ink: #edf2ef;
    --muted: #a7b5b0;
    --line: rgba(237, 242, 239, 0.12);
    --panel: #12181b;
    --panel-2: #1a2328;
    --green: #a8ff60;
    --green-dark: #a8ff60;
    --blue: #7ba2ff;
    --amber: #ffc96a;
    --red: #ff7c69;
    --white: #161d22;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  }
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1160px, calc(100% - 32px));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 21, 22, 0.1);
  border-radius: 8px;
  background: rgba(246, 243, 237, 0.88);
  backdrop-filter: blur(18px);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.brand,
.nav,
.hero-actions,
.hero-stats,
.contact-card {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
}

.brand-photo {
  position: relative;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(17, 21, 22, 0.14);
}

.brand-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 17px;
  line-height: 1.1;
}

.brand-role {
  color: var(--muted);
  font: 600 11px/1.2 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.brand-status {
  margin-left: 4px;
  padding: 6px 8px;
  border: 1px solid rgba(28, 108, 54, 0.24);
  border-radius: 999px;
  background: rgba(168, 255, 96, 0.14);
  color: var(--green-dark);
  font: 600 10px/1 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.nav {
  gap: 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.header-telegram {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  border-radius: 999px;
  color: var(--muted);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-telegram svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.header-telegram:hover,
.header-telegram:focus-visible {
  background: rgba(255, 253, 247, 0.72);
  color: var(--ink);
  transform: translateY(-1px);
}

.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.78);
}

.theme-toggle {
  width: 54px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.theme-toggle__track {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 21, 22, 0.12);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 14px rgba(17, 21, 22, 0.18);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.theme-toggle[aria-checked="true"] .theme-toggle__track {
  border-color: rgba(168, 255, 96, 0.55);
  background: #111516;
}

.theme-toggle[aria-checked="true"] .theme-toggle__thumb {
  transform: translateX(24px);
  background: var(--green);
}

.theme-toggle:focus-visible .theme-toggle__track {
  outline: 2px solid rgba(168, 255, 96, 0.72);
  outline-offset: 3px;
}

.theme-toggle__label {
  color: var(--muted);
  font: 700 11px/1 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.nav a {
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.5);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.header-cta:hover {
  color: var(--ink);
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(17, 21, 22, 0.12);
  background: rgba(255, 253, 247, 0.94);
  transform: translateY(-1px);
}

.header-cta {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  color: var(--green-dark);
  background: var(--white);
}

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 72px auto 0;
  padding: 0 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  font: 600 12px/1.4 "IBM Plex Mono", monospace;
  text-transform: uppercase;
  color: var(--green-dark);
  letter-spacing: 0;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(38px, 4.55vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.12;
}

.hero-lede,
.section-heading p,
.contact p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-proofline {
  max-width: 560px;
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--green);
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-proofline a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(168, 255, 96, 0.76);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

.facts-eyebrow {
  margin-bottom: 12px;
}

.button {
  border: 0;
  border-radius: 7px;
  padding: 14px 18px;
  font: 800 15px/1 "Manrope", sans-serif;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: var(--green);
  box-shadow: 0 12px 30px rgba(17, 21, 22, 0.22);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

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

.fact-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 12px 28px rgba(20, 26, 24, 0.05);
}

.fact-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(17, 21, 22, 0.08);
}

.fact-window__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff7668;
}

.fact-window__bar span:nth-child(2) {
  background: var(--amber);
}

.fact-window__bar span:nth-child(3) {
  background: var(--green);
}

.fact-window__body {
  position: relative;
  min-height: 132px;
  padding: 18px;
}

.fact-window__item {
  position: absolute;
  inset: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.985);
  transition:
    opacity 460ms ease,
    transform 460ms ease;
}

.fact-window__item.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.fact-window__item strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(28px, 2vw, 42px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.fact-window__item p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.42;
}

.hero-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}

.hero-proof {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(168, 255, 96, 0.22);
  border-radius: 10px;
  background:
    radial-gradient(circle at 14% 0%, rgba(168, 255, 96, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(9, 14, 13, 0.98), rgba(5, 8, 8, 0.98)),
    #070b0b;
  box-shadow: 0 28px 70px rgba(17, 21, 22, 0.28);
}

.hero-proof-card {
  position: relative;
  overflow: hidden;
  --pointer-x: 50%;
  --pointer-y: 50%;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(168, 255, 96, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(168, 255, 96, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(18, 27, 25, 0.96), rgba(9, 14, 13, 0.96)),
    #0b1110;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hero-proof-card:nth-child(1) {
  --pointer-x: 18%;
  --pointer-y: 28%;
}

.hero-proof-card:nth-child(2) {
  --pointer-x: 50%;
  --pointer-y: 42%;
}

.hero-proof-card:nth-child(3) {
  --pointer-x: 82%;
  --pointer-y: 56%;
}

.hero-proof-card:hover {
  border-color: rgba(168, 255, 96, 0.48);
  box-shadow: 0 18px 34px rgba(20, 26, 24, 0.1);
  transform: translateY(-1px);
}

.hero-proof-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font: 700 12px/1.2 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.hero-proof-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(237, 242, 239, 0.82);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-facts-block {
  display: none;
  width: 100%;
}

.screen-card {
  display: none;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  background: var(--panel);
  color: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #101615;
}

.screen-toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff7668;
}

.screen-toolbar span:nth-child(2) {
  background: var(--amber);
}

.screen-toolbar span:nth-child(3) {
  background: var(--green);
}

.screen-toolbar b {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.58);
  font: 600 13px/1 "IBM Plex Mono", monospace;
}

.skills-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.skill-domain {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: var(--panel-2);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.skill-domain {
  min-height: 166px;
  padding: 20px;
}

.skill-domain span {
  color: rgba(255, 255, 255, 0.54);
  font: 600 13px/1.3 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.skill-domain strong {
  display: block;
  margin: 14px 0 18px;
  font-size: 22px;
  line-height: 1.16;
}

.skill-domain.featured {
  background: var(--panel-2);
  border-color: rgba(255, 255, 255, 0.08);
}

.skill-domain:hover,
.skill-domain:focus-within {
  border-color: rgba(168, 255, 96, 0.46);
  background:
    radial-gradient(circle at 20% 0%, rgba(168, 255, 96, 0.22), transparent 44%),
    linear-gradient(135deg, rgba(168, 255, 96, 0.16), rgba(58, 111, 247, 0.08)),
    var(--panel-2);
  box-shadow:
    0 0 0 1px rgba(168, 255, 96, 0.1),
    0 20px 44px rgba(95, 255, 92, 0.11);
  transform: translateY(-2px);
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.skill-chips em {
  padding: 9px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font: normal 600 13px/1 "IBM Plex Mono", monospace;
}

.logos {
  width: min(1160px, calc(100% - 32px));
  margin: 43px auto 34px;
}

.logos-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(168, 255, 96, 0.08), transparent 42%),
    rgba(255, 253, 247, 0.7);
  box-shadow: var(--shadow);
}

.logos-copy h2 {
  margin-bottom: 14px;
  max-width: 1040px;
  font-size: clamp(34px, 4vw, 58px);
}

.logos-copy .eyebrow,
.outcomes .eyebrow {
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.2;
}

.logos-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 1060px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

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

.logos-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(17, 21, 22, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
  color: var(--ink);
}

.logo-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 112px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(17, 21, 22, 0.03);
}

.logo-card__media img {
  width: auto;
  max-width: 100%;
  max-height: 66px;
  object-fit: contain;
  object-position: center;
}

.logo-card__media--postgres img {
  max-height: 64px;
}

.logo-card__media--ton {
  background: #000;
}

.logo-card__media--ton img {
  max-height: 62px;
}

.logo-card__media--gazprom img {
  max-height: 66px;
}

.logo-card__media--db img {
  max-height: 66px;
}

.logo-card__media--sber img {
  max-height: 66px;
}

.logo-card__media--pik {
  background: #4c4cfc;
}

.logo-card__media--pik img {
  max-height: 62px;
}

.logo-card span {
  display: block;
  margin-top: 18px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.08;
}

.section,
.proof-band,
.testimonials,
.contact {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow-y: hidden;
}

.services-shell {
  position: relative;
}

.services-arrow {
  display: none;
}

#services {
  position: relative;
  padding-top: 56px;
  padding-bottom: 56px;
}

#services::before {
  content: "";
  position: absolute;
  inset: 0 -18px;
  z-index: -1;
  border: 1px solid rgba(17, 21, 22, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(168, 255, 96, 0.12), transparent 36%),
    rgba(255, 253, 247, 0.48);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.68);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
  box-shadow: 0 12px 28px rgba(20, 26, 24, 0.05);
}

.service-card::before {
  content: "";
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
}

.service-card p,
.steps p,
.proof-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.service-title {
  min-height: 86px;
  margin-bottom: 0;
}

.service-body {
  min-height: 112px;
  margin-bottom: 0;
}

.service-label {
  margin: 0;
  color: var(--green-dark);
  font: 600 12px/1 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 0;
}

.service-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.92);
  color: var(--muted);
  font: 600 11px/1 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.button.secondary.service-cta {
  width: 100%;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  align-self: stretch;
  text-align: center;
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(17, 21, 22, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button.secondary.service-cta:hover,
.button.secondary.service-cta:focus-visible {
  transform: translateY(-1px);
  color: var(--green);
  border-color: rgba(17, 21, 22, 0.9);
  box-shadow: 0 16px 30px rgba(17, 21, 22, 0.18);
  background: var(--ink);
}

.outcomes {
  margin-top: 28px;
  padding: 56px clamp(22px, 3vw, 34px);
  border: 1px solid rgba(17, 21, 22, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 8% 0%, rgba(168, 255, 96, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(235, 231, 220, 0.8));
  color: var(--ink);
}

.outcomes .section-heading {
  max-width: 780px;
}

.outcomes .eyebrow {
  color: var(--green-dark);
}

.outcomes h2 {
  color: var(--ink);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.outcome-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(17, 21, 22, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(255, 253, 247, 0.72)),
    var(--white);
  box-shadow: 0 12px 26px rgba(17, 21, 22, 0.05);
}

.report-preview {
  overflow: hidden;
  height: 196px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.report-preview__bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 21, 22, 0.04);
}

.report-preview__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.report-preview__bar span:nth-child(2) {
  background: var(--amber);
}

.report-preview__bar span:nth-child(3) {
  background: var(--green);
}

.report-preview__body {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 8px;
  height: 154px;
  padding: 14px;
}

.report-preview__body b,
.report-preview__body i {
  font: 600 11px/1.2 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.report-preview__body i {
  width: max-content;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(168, 255, 96, 0.2);
  color: var(--green-dark);
  font-style: normal;
}

.report-preview__body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.outcome-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font: 600 12px/1 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.outcome-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
}

.outcome-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.proof-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.proof-grid article {
  padding: 22px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.proof-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font: 600 12px/1 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.proof-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.testimonials {
  position: relative;
  padding-top: 84px;
  padding-bottom: 84px;
}

.testimonials-shell {
  position: relative;
}

.testimonials-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 72px 14px 0;
  cursor: grab;
  user-select: none;
}

.testimonials-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 min(420px, calc(100vw - 48px));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(255, 253, 247, 0.66)),
    var(--white);
}

.testimonials-arrow {
  position: absolute;
  top: -72px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(168, 255, 96, 0.62);
  border-radius: 999px;
  background: rgba(18, 24, 27, 0.76);
  color: var(--green);
  box-shadow: 0 10px 22px rgba(17, 21, 22, 0.14);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.testimonials-arrow--prev {
  right: 48px;
}

.testimonials-arrow--next {
  right: 0;
}

.testimonials-arrow:hover,
.testimonials-arrow:focus-visible {
  background: var(--green);
  color: #0d1113;
  outline: none;
  transform: translateY(-1px);
}

.testimonials-arrow:disabled {
  cursor: default;
  opacity: 0.34;
  transform: none;
}

.testimonials-arrow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonials-shell::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 96px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--paper) 78%);
}

.testimonial-card--document {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.testimonial-card--document:has(.testimonial-open:hover),
.testimonial-card--document:has(.testimonial-open:focus-visible) {
  border-color: rgba(168, 255, 96, 0.72);
  box-shadow: 0 18px 34px rgba(20, 26, 24, 0.1);
  transform: translateY(-2px);
}

.testimonial-card:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.8), rgba(235, 231, 220, 0.74)),
    var(--paper-2);
}

.testimonial-card.nda {
  background: var(--ink);
  color: var(--white);
}

.testimonial-product {
  margin-bottom: 18px;
  color: var(--green-dark);
  font: 600 12px/1.45 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.testimonial-card.nda .testimonial-product {
  color: var(--green);
}

.testimonial-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.64;
}

.testimonial-card.nda p {
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-author {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-card.nda .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  margin-bottom: 6px;
  font-size: 15px;
}

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

.testimonial-card.nda .testimonial-author span {
  color: rgba(255, 255, 255, 0.58);
}

.testimonial-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin-top: 16px;
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(168, 255, 96, 0.22);
  color: var(--ink);
  font: 800 11px/1 "IBM Plex Mono", monospace;
  text-transform: uppercase;
  cursor: pointer;
}

.split {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 60px;
  align-items: start;
}

.sticky {
  position: sticky;
  top: 110px;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.72);
}

.steps span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green-dark);
  font: 600 13px/1 "IBM Plex Mono", monospace;
}

.steps p {
  margin-bottom: 0;
}

.contact {
  margin-bottom: 22px;
  padding: 34px clamp(32px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: clamp(28px, 3.6vw, 46px);
  align-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(168, 255, 96, 0.14), transparent 42%),
    var(--paper-2);
  color: var(--ink);
}

.contact h2 {
  color: var(--ink);
}

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

.contact-help {
  margin: 16px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-card {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-height: auto;
  justify-content: center;
  padding: 0;
  width: min(100%, 460px);
  max-width: 460px;
  margin-left: auto;
  border-radius: 8px;
  background: transparent;
}

.contact-form {
  display: grid;
  gap: 9px;
  width: 100%;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font: 700 12px/1 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.contact-form input {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font: 700 16px/1.2 "Manrope", sans-serif;
}

.contact-form input:focus {
  outline: 2px solid rgba(168, 255, 96, 0.72);
  outline-offset: 2px;
}

.contact-card .button,
.contact-form .button {
  width: 100%;
  padding: 17px 22px;
  line-height: 1.15;
}

.contact-card .button.primary,
.contact-form .button.primary {
  min-height: 58px;
  font-size: 18px;
  box-shadow: 0 14px 30px rgba(168, 255, 96, 0.14);
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-card .button.secondary {
  min-height: 52px;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
}

.contact-note {
  min-height: 0;
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.contact-note:not(:empty) {
  min-height: 18px;
  margin-top: 2px;
}

.contact-form .privacy-notice {
  margin: -2px 0 0;
  max-width: none;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
  opacity: 0.72;
}

.contact-form .privacy-notice a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-links {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.contact-links-title {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

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

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 253, 247, 0.5);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: rgba(28, 108, 54, 0.28);
  background: rgba(168, 255, 96, 0.16);
  transform: translateY(-1px);
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 10, 0.7);
  backdrop-filter: blur(8px);
}

.contact-modal__panel {
  position: relative;
  width: min(100%, 460px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.contact-modal__panel h2 {
  margin-bottom: 10px;
  font-size: 34px;
}

.contact-modal__panel p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.contact-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.recommendation-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 22px;
}

.recommendation-modal[hidden] {
  display: none;
}

.recommendation-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 11, 0.76);
  backdrop-filter: blur(10px);
}

.recommendation-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(980px, 100%);
  max-height: min(92vh, 980px);
  overflow: hidden;
  border: 1px solid rgba(237, 242, 239, 0.12);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
}

.recommendation-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.86);
}

.recommendation-modal__header h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
}

.recommendation-modal__header p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.recommendation-modal__close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.recommendation-modal__document {
  overflow: auto;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(17, 21, 22, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 21, 22, 0.05) 1px, transparent 1px),
    var(--paper-2);
  background-size: 30px 30px;
}

.recommendation-modal__document img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 20px 42px rgba(20, 26, 24, 0.14);
}

.privacy-page {
  width: min(920px, calc(100% - 32px));
  margin: 44px auto 70px;
}

.privacy-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 253, 247, 0.64);
  color: var(--ink);
  font-weight: 800;
}

.privacy-document {
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.privacy-document h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.98;
}

.privacy-document h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.08;
}

.privacy-document p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.privacy-updated {
  margin-top: 34px !important;
  font: 700 13px/1.4 "IBM Plex Mono", monospace !important;
  text-transform: uppercase;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@media (max-width: 1200px) {
  .logos-shell {
    grid-template-columns: 1fr;
  }

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

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

  .contact {
    grid-template-columns: minmax(0, 0.94fr) minmax(400px, 0.8fr);
    gap: 38px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 8px;
    flex-wrap: nowrap;
  }

  .nav {
    display: none;
  }

  .site-header__actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .theme-switcher {
    gap: 6px;
    padding: 4px 7px;
  }

  .hero,
  .proof-band,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-card {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .contact-card .button {
    padding: 15px 20px;
  }

  .contact-card .button.primary {
    min-height: 52px;
    font-size: 18px;
  }

  .contact-card .button.secondary {
    min-height: 46px;
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    margin-top: 54px;
    padding-top: 0;
  }

  .hero-panel {
    min-width: 0;
  }

  .fact-window__body {
    min-height: auto;
  }

  .fact-window__item {
    position: static;
    inset: auto;
    display: none;
    transform: none;
  }

  .fact-window__item.active {
    display: block;
  }

  .hero-facts-grid,
  .services-grid,
  .outcomes-grid,
  .testimonials-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonials {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .testimonials-grid {
    padding-right: 56px;
  }

  .testimonial-card {
    flex-basis: min(78vw, 380px);
  }

  .sticky {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .logos,
  .section,
  .proof-band,
  .testimonials,
  .contact {
    width: min(100% - 20px, 1160px);
  }

  .brand {
    width: 100%;
    min-width: 0;
    gap: 9px;
  }

  .brand-photo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-role {
    font-size: 10px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .site-header {
    gap: 8px;
    padding: 8px;
  }

  .site-header__actions {
    margin-left: 0;
    gap: 6px;
  }

  .theme-switcher {
    gap: 0;
    padding: 3px;
  }

  .theme-toggle__label {
    display: none;
  }

  .theme-toggle {
    width: 46px;
    height: 26px;
  }

  .theme-toggle__thumb {
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
  }

  .theme-toggle[aria-checked="true"] .theme-toggle__thumb {
    transform: translateX(20px);
  }

  .header-telegram {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .header-telegram svg {
    width: 18px;
    height: 18px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .skills-dashboard {
    grid-template-columns: 1fr;
  }

  .logos-shell {
    padding: 22px;
  }

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

  .logos-grid article {
    min-height: 150px;
    padding: 12px;
  }

  .logo-card__media {
    height: 82px;
    padding: 10px;
  }

  .logo-card span {
    margin-top: 12px;
    font-size: 14px;
  }

  .contact {
    padding: 26px 24px;
  }

  #services {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  #services::before {
    inset: 0 -8px;
  }

  .section,
  .proof-band,
  .testimonials,
  .contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .outcomes {
    padding: 34px 18px;
  }

  .testimonials-grid {
    gap: 12px;
    margin: 0;
    padding: 4px 0 16px;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
  }

  .testimonial-card {
    flex: 0 0 100%;
    max-width: none;
  }

  .testimonials-arrow {
    top: -50px;
  }

  .testimonials-shell::after {
    display: none;
  }

  .testimonials-arrow--prev {
    right: 42px;
  }

  .testimonials-arrow--next {
    right: 0;
  }

  .testimonials-arrow svg {
    width: 17px;
    height: 17px;
  }

  .privacy-page {
    width: min(100% - 20px, 920px);
    margin-top: 28px;
  }

  .privacy-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .recommendation-modal {
    padding: 10px;
  }

  .recommendation-modal__panel {
    max-height: 94vh;
  }

  .recommendation-modal__header {
    padding: 16px;
  }

  .recommendation-modal__document {
    padding: 10px;
  }

  .privacy-document {
    padding: 24px;
  }

  .privacy-document p {
    font-size: 16px;
    line-height: 1.55;
  }

  .contact h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .contact p {
    font-size: 17px;
    line-height: 1.5;
  }

  .contact-note {
    font-size: 13px;
    line-height: 1.3;
  }

  #services {
    overflow: hidden;
  }

  #services .section-heading {
    margin-left: 8px;
    padding-left: 8px;
    margin-bottom: 18px;
  }

  .services-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    margin: 0 -10px;
    padding: 0 10px 14px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-left: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 min(82vw, 340px);
    min-height: auto;
    gap: 14px;
    padding: 18px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background:
      linear-gradient(180deg, rgba(255, 253, 247, 0.94), rgba(255, 253, 247, 0.74)),
      var(--white);
  }

  .service-title,
  .service-body {
    min-height: auto;
  }

  .service-title {
    font-size: 26px;
    line-height: 1.08;
  }

  .service-body {
    font-size: 16px;
    line-height: 1.5;
  }

  .service-label {
    font-size: 11px;
  }

  .service-meta {
    gap: 6px;
    margin: -2px 0 0;
  }

  .service-meta span {
    padding: 6px 9px;
    font-size: 10px;
  }

  .service-cta {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    text-align: center;
  }

  .services-arrow {
    position: absolute;
    top: -52px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(168, 255, 96, 0.32);
    border-radius: 999px;
    background: rgba(18, 24, 27, 0.76);
    color: var(--green);
    box-shadow: 0 10px 22px rgba(17, 21, 22, 0.14);
    cursor: pointer;
    transition:
      transform 180ms ease,
      background 180ms ease,
      color 180ms ease,
      opacity 180ms ease;
  }

  .services-arrow--prev {
    right: 42px;
  }

  .services-arrow--next {
    right: 0;
  }

  .services-arrow:hover,
  .services-arrow:focus-visible {
    background: var(--green);
    color: #0d1113;
    outline: none;
    transform: translateY(-1px);
  }

  .services-arrow:disabled {
    cursor: default;
    opacity: 0.34;
    transform: none;
  }

  .services-arrow svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .contact-modal {
    padding: 12px;
  }

  .contact-modal__panel {
    padding: 24px 18px;
  }

  .contact-form input {
    min-height: 50px;
    padding: 13px 12px;
    font-size: 14px;
  }

  .contact-note:not(:empty) {
    padding: 9px 10px;
    border-radius: 7px;
    background: rgba(168, 255, 96, 0.16);
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 900;
   }

  .contact {
    padding: 26px;
  }
}

html[data-theme="dark"] body {
  background:
    linear-gradient(90deg, rgba(237, 242, 239, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(237, 242, 239, 0.04) 1px, transparent 1px),
    var(--paper);
}

html[data-theme="dark"] .site-header {
  border-color: rgba(237, 242, 239, 0.1);
  background: rgba(18, 24, 27, 0.88);
}

html[data-theme="dark"] .brand-photo,
html[data-theme="dark"] .button.secondary,
html[data-theme="dark"] .button.secondary.service-cta,
html[data-theme="dark"] .service-meta span,
html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .report-preview,
html[data-theme="dark"] .nav a,
html[data-theme="dark"] .theme-switcher,
html[data-theme="dark"] .fact-window,
html[data-theme="dark"] .hero-proof,
html[data-theme="dark"] .hero-proof-card,
html[data-theme="dark"] .logos-grid article,
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .outcome-card,
html[data-theme="dark"] .testimonial-card,
html[data-theme="dark"] .steps article {
  border-color: var(--line);
  box-shadow: none;
}

html[data-theme="dark"] .brand-photo {
  background: #0f1417;
}

html[data-theme="dark"] .nav a,
html[data-theme="dark"] .theme-switcher {
  background: #000;
}

html[data-theme="dark"] .theme-toggle__track,
html[data-theme="dark"] .theme-toggle[aria-checked="true"] .theme-toggle__track {
  background: #000;
}

html[data-theme="dark"] .screen-card {
  color: var(--ink);
}

html[data-theme="dark"] .hero-proofline {
  color: var(--ink);
}

html[data-theme="dark"] .hero-proof {
  background:
    radial-gradient(circle at 14% 0%, rgba(168, 255, 96, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(9, 14, 13, 0.98), rgba(5, 8, 8, 0.98)),
    #070b0b;
}

html[data-theme="dark"] .hero-proof-card {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(168, 255, 96, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(18, 27, 25, 0.96), rgba(9, 14, 13, 0.96)),
    #0b1110;
}

html[data-theme="dark"] .skill-domain span {
  color: rgba(237, 242, 239, 0.7);
}

html[data-theme="dark"] .skill-domain strong,
html[data-theme="dark"] .contact h2 {
  color: var(--ink);
}

html[data-theme="dark"] .nav a:hover,
html[data-theme="dark"] .nav a:focus-visible {
  border-color: rgba(237, 242, 239, 0.14);
  background: rgba(29, 38, 43, 0.96);
}

html[data-theme="dark"] .button.primary {
  background: var(--green);
  color: #0d1113;
  box-shadow: 0 16px 32px rgba(168, 255, 96, 0.18);
}

html[data-theme="dark"] .button.secondary,
html[data-theme="dark"] .button.secondary.service-cta,
html[data-theme="dark"] .contact-form input {
  background: rgba(22, 29, 34, 0.92);
  color: var(--ink);
}

html[data-theme="dark"] .button.secondary.service-cta:hover,
html[data-theme="dark"] .button.secondary.service-cta:focus-visible {
  color: #0d1113;
  border-color: rgba(168, 255, 96, 0.75);
  background: var(--green);
  box-shadow: 0 16px 30px rgba(168, 255, 96, 0.16);
}

html[data-theme="dark"] .fact-window {
  background: rgba(22, 29, 34, 0.82);
}

html[data-theme="dark"] .fact-window__bar {
  border-bottom-color: rgba(237, 242, 239, 0.08);
}

html[data-theme="dark"] .logos-shell {
  background:
    linear-gradient(135deg, rgba(168, 255, 96, 0.12), transparent 42%),
    rgba(17, 24, 28, 0.84);
}

html[data-theme="dark"] .logos-grid article {
  background: rgba(22, 29, 34, 0.92);
}

html[data-theme="dark"] .logo-card__media {
  background: rgb(241, 244, 242);
}

html[data-theme="dark"] .logo-card__media--ton {
  background: #000;
}

html[data-theme="dark"] .logo-card__media--pik {
  background: #4c4cfc;
}

html[data-theme="dark"] .service-card {
  background: rgba(23, 30, 34, 0.72);
}

html[data-theme="dark"] .service-meta span {
  background: rgba(237, 242, 239, 0.04);
}

html[data-theme="dark"] .outcomes {
  border-color: rgba(168, 255, 96, 0.12);
  background:
    radial-gradient(circle at 8% 0%, rgba(168, 255, 96, 0.18), transparent 30%),
    linear-gradient(180deg, #101719, #0b1011);
}

html[data-theme="dark"] .outcomes .eyebrow {
  color: var(--green);
}

html[data-theme="dark"] .outcome-card {
  border-color: rgba(237, 242, 239, 0.12);
  background:
    linear-gradient(180deg, rgba(22, 29, 34, 0.94), rgba(17, 24, 28, 0.88)),
    var(--white);
  box-shadow: none;
}

html[data-theme="dark"] .outcome-card p {
  color: rgba(237, 242, 239, 0.7);
}

html[data-theme="dark"] .proof-grid article,
html[data-theme="dark"] .contact {
  background: #12181b;
}

html[data-theme="dark"] .contact h2 {
  color: var(--ink);
}

html[data-theme="dark"] .contact p {
  color: rgba(255, 255, 255, 0.72);
}

html[data-theme="dark"] .contact-card .button.secondary {
  border-color: rgba(237, 242, 239, 0.12);
  background: rgba(18, 24, 27, 0.72);
  color: var(--ink);
}

html[data-theme="dark"] .contact-note {
  color: rgba(255, 255, 255, 0.56);
}

html[data-theme="dark"] .privacy-notice {
  color: rgba(255, 255, 255, 0.52);
}

html[data-theme="dark"] .contact-links-title {
  color: var(--ink);
}

html[data-theme="dark"] .privacy-notice a {
  color: var(--ink);
}

html[data-theme="dark"] .contact-links a {
  background: rgba(18, 24, 27, 0.72);
  color: var(--ink);
}

html[data-theme="dark"] .testimonial-card {
  background:
    linear-gradient(180deg, rgba(22, 29, 34, 0.94), rgba(18, 24, 27, 0.86)),
    var(--white);
}

html[data-theme="dark"] .testimonial-card:nth-child(even) {
  background:
    radial-gradient(circle at 16% 0%, rgba(168, 255, 96, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(28, 37, 35, 0.96), rgba(15, 22, 22, 0.9)),
    var(--paper-2);
}

html[data-theme="dark"] .testimonial-author strong {
  color: var(--ink);
}

html[data-theme="dark"] .testimonial-open {
  background: var(--green);
  color: #07100b;
  box-shadow: 0 10px 22px rgba(168, 255, 96, 0.18);
}

html[data-theme="dark"] #services::before {
  border-color: rgba(168, 255, 96, 0.12);
  background:
    linear-gradient(135deg, rgba(168, 255, 96, 0.08), transparent 36%),
    rgba(18, 24, 27, 0.42);
}

html[data-theme="dark"] .testimonials-shell::after {
  background: linear-gradient(90deg, transparent, var(--paper) 78%);
}

html[data-theme="dark"] .testimonials-arrow {
  border-color: rgba(168, 255, 96, 0.62);
  background: #000;
  color: var(--green);
}

html[data-theme="dark"] .recommendation-modal__panel,
html[data-theme="dark"] .recommendation-modal__close {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

html[data-theme="dark"] .recommendation-modal__header {
  border-bottom-color: var(--line);
  background: rgba(18, 24, 27, 0.96);
}

html[data-theme="dark"] .recommendation-modal__document {
  background:
    linear-gradient(90deg, rgba(237, 242, 239, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(237, 242, 239, 0.04) 1px, transparent 1px),
    #0b0f11;
}

html[data-theme="dark"] .steps article {
  background: rgba(22, 29, 34, 0.86);
}

html[data-theme="dark"] .contact-card {
  background: transparent;
}

html[data-theme="dark"] .privacy-back,
html[data-theme="dark"] .privacy-document {
  background: rgba(18, 24, 27, 0.92);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme]) body {
    background:
      linear-gradient(90deg, rgba(237, 242, 239, 0.04) 1px, transparent 1px),
      linear-gradient(180deg, rgba(237, 242, 239, 0.04) 1px, transparent 1px),
      var(--paper);
  }

  html:not([data-theme]) .site-header {
    border-color: rgba(237, 242, 239, 0.1);
    background: rgba(18, 24, 27, 0.88);
  }

  html:not([data-theme]) .brand-photo,
  html:not([data-theme]) .button.secondary,
  html:not([data-theme]) .button.secondary.service-cta,
  html:not([data-theme]) .service-meta span,
  html:not([data-theme]) .contact-form input,
  html:not([data-theme]) .privacy-back,
  html:not([data-theme]) .privacy-document,
  html:not([data-theme]) .report-preview,
  html:not([data-theme]) .nav a,
  html:not([data-theme]) .theme-switcher,
  html:not([data-theme]) .fact-window,
  html:not([data-theme]) .logos-grid article,
  html:not([data-theme]) .service-card,
  html:not([data-theme]) .outcome-card,
  html:not([data-theme]) .testimonial-card,
  html:not([data-theme]) .steps article {
    border-color: var(--line);
    box-shadow: none;
  }

  html:not([data-theme]) .brand-photo {
    background: #0f1417;
  }

  html:not([data-theme]) .nav a,
  html:not([data-theme]) .theme-switcher {
    background: rgba(22, 29, 34, 0.82);
  }

  html:not([data-theme]) .screen-card {
    color: var(--ink);
  }

  html:not([data-theme]) .skill-domain span {
    color: rgba(237, 242, 239, 0.7);
  }

  html:not([data-theme]) .skill-domain strong,
  html:not([data-theme]) .contact h2 {
    color: var(--ink);
  }

  html:not([data-theme]) .nav a:hover,
  html:not([data-theme]) .nav a:focus-visible {
    border-color: rgba(237, 242, 239, 0.14);
    background: rgba(29, 38, 43, 0.96);
  }

  html:not([data-theme]) .button.primary {
    background: var(--green);
    color: #0d1113;
    box-shadow: 0 16px 32px rgba(168, 255, 96, 0.18);
  }

  html:not([data-theme]) .button.secondary,
  html:not([data-theme]) .button.secondary.service-cta,
  html:not([data-theme]) .contact-form input {
    background: rgba(22, 29, 34, 0.92);
    color: var(--ink);
  }

  html:not([data-theme]) .privacy-back,
  html:not([data-theme]) .privacy-document {
    background: rgba(18, 24, 27, 0.92);
  }

  html:not([data-theme]) .button.secondary.service-cta:hover,
  html:not([data-theme]) .button.secondary.service-cta:focus-visible {
    color: #0d1113;
    border-color: rgba(168, 255, 96, 0.75);
    background: var(--green);
    box-shadow: 0 16px 30px rgba(168, 255, 96, 0.16);
  }

  html:not([data-theme]) .fact-window {
    background: rgba(22, 29, 34, 0.82);
  }

  html:not([data-theme]) .fact-window__bar {
    border-bottom-color: rgba(237, 242, 239, 0.08);
  }

  html:not([data-theme]) .logos-shell {
    background:
      linear-gradient(135deg, rgba(168, 255, 96, 0.12), transparent 42%),
      rgba(17, 24, 28, 0.84);
  }

  html:not([data-theme]) .logos-grid article {
    background: rgba(22, 29, 34, 0.92);
  }

  html:not([data-theme]) .logo-card__media {
    background: rgb(241, 244, 242);
  }

  html:not([data-theme]) .logo-card__media--ton {
    background: #000;
  }

  html:not([data-theme]) .logo-card__media--pik {
    background: #4c4cfc;
  }

  html:not([data-theme]) .service-card {
    background: rgba(23, 30, 34, 0.72);
  }

  html:not([data-theme]) .service-meta span {
    background: rgba(237, 242, 239, 0.04);
  }

  html:not([data-theme]) .outcomes {
    border-color: rgba(168, 255, 96, 0.12);
    background:
      radial-gradient(circle at 8% 0%, rgba(168, 255, 96, 0.18), transparent 30%),
      linear-gradient(180deg, #101719, #0b1011);
  }

  html:not([data-theme]) .outcomes .eyebrow {
    color: var(--green);
  }

  html:not([data-theme]) .outcome-card {
    border-color: rgba(237, 242, 239, 0.12);
    background:
      linear-gradient(180deg, rgba(22, 29, 34, 0.94), rgba(17, 24, 28, 0.88)),
      var(--white);
    box-shadow: none;
  }

  html:not([data-theme]) .outcome-card p {
    color: rgba(237, 242, 239, 0.7);
  }

  html:not([data-theme]) .proof-grid article,
  html:not([data-theme]) .contact {
    background: #12181b;
  }

  html:not([data-theme]) .contact h2 {
    color: var(--ink);
  }

  html:not([data-theme]) .contact p {
    color: rgba(255, 255, 255, 0.72);
  }

  html:not([data-theme]) .contact-card .button.secondary {
    border-color: rgba(237, 242, 239, 0.12);
    background: rgba(18, 24, 27, 0.72);
    color: var(--ink);
  }

  html:not([data-theme]) .contact-note {
    color: rgba(255, 255, 255, 0.56);
  }

  html:not([data-theme]) .testimonial-card {
    background:
      linear-gradient(180deg, rgba(22, 29, 34, 0.94), rgba(18, 24, 27, 0.86)),
      var(--white);
  }

  html:not([data-theme]) .testimonial-card:nth-child(even) {
    background:
      radial-gradient(circle at 16% 0%, rgba(168, 255, 96, 0.1), transparent 38%),
      linear-gradient(180deg, rgba(28, 37, 35, 0.96), rgba(15, 22, 22, 0.9)),
      var(--paper-2);
  }

  html:not([data-theme]) .testimonial-author strong {
    color: var(--ink);
  }

  html:not([data-theme]) #services::before {
    border-color: rgba(168, 255, 96, 0.12);
    background:
      linear-gradient(135deg, rgba(168, 255, 96, 0.08), transparent 36%),
      rgba(18, 24, 27, 0.42);
  }

  html:not([data-theme]) .testimonial-open {
    background: var(--green);
    color: #07100b;
    box-shadow: 0 10px 22px rgba(168, 255, 96, 0.18);
  }

  html:not([data-theme]) .testimonials-arrow {
    border-color: rgba(168, 255, 96, 0.62);
    background: #000;
    color: var(--green);
  }

  html:not([data-theme]) .steps article {
    background: rgba(22, 29, 34, 0.86);
  }

  html:not([data-theme]) .contact-card {
    background: transparent;
  }

  html:not([data-theme]) .hero-proof {
    border-color: rgba(168, 255, 96, 0.22);
    background:
      radial-gradient(circle at 14% 0%, rgba(168, 255, 96, 0.2), transparent 34%),
      linear-gradient(180deg, rgba(9, 14, 13, 0.98), rgba(5, 8, 8, 0.98)),
      #070b0b;
  }

  html:not([data-theme]) .hero-proof-card {
    border-color: rgba(168, 255, 96, 0.14);
    background:
      radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(168, 255, 96, 0.2), transparent 40%),
      linear-gradient(180deg, rgba(18, 27, 25, 0.96), rgba(9, 14, 13, 0.96)),
      #0b1110;
  }

}

html[data-theme="dark"] .service-card {
  background: rgba(23, 30, 34, 0.72);
}

@media (prefers-color-scheme: dark) and (max-width: 560px) {
  html:not([data-theme]) .service-card {
    background:
      linear-gradient(180deg, rgba(24, 32, 36, 0.96), rgba(22, 29, 34, 0.88)),
      var(--white);
  }
}

@media (max-width: 560px) {
  html[data-theme="dark"] .service-card {
    background:
      linear-gradient(180deg, rgba(24, 32, 36, 0.96), rgba(22, 29, 34, 0.88)),
      var(--white);
  }
}
