:root {
  --white: #f8f8f5;
  --paper: #ffffff;
  --ink: #141519;
  --graphite: #282a30;
  --graphite-2: #3a3d45;
  --muted: #686b73;
  --line: rgba(20, 21, 25, 0.13);
  --fuchsia: #ff2f9c;
  --lilac: #9a6cff;
  --lime: #cfff2f;
  --shadow: 0 24px 80px rgba(12, 13, 16, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 248, 245, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.system-ribbon {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  padding: 0 clamp(18px, 4vw, 58px);
  background: var(--ink);
}

.system-ribbon span {
  min-height: 30px;
  padding: 8px 12px;
  color: rgba(248, 248, 245, 0.72);
  border-left: 1px solid rgba(248, 248, 245, 0.14);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  text-align: left;
}

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

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

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav button,
.nav a,
.top-cta {
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
}

.nav button {
  color: var(--muted);
  background: transparent;
}

.nav a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  background: transparent;
  text-decoration: none;
  font-weight: 800;
}

.nav button:hover,
.nav a:hover {
  color: var(--ink);
  background: rgba(20, 21, 25, 0.07);
}

.top-cta {
  color: var(--ink);
  background: var(--lime);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.system-login {
  min-width: 44px;
  min-height: 40px;
  padding: 0 12px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.system-login.muted {
  color: var(--ink);
  background: rgba(20, 21, 25, 0.08);
}

.visual-only {
  cursor: default;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: clamp(76px, 8vw, 128px) clamp(20px, 5vw, 72px) 42px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.74), rgba(8, 9, 12, 0.24) 58%, rgba(8, 9, 12, 0.68)),
    url("assets/hero-system-map.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.08), rgba(8, 9, 12, 0.82)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 20px);
}

.hero-orbit {
  position: absolute;
  top: clamp(92px, 11vw, 148px);
  right: clamp(330px, 30vw, 560px);
  z-index: 0;
  width: min(34vw, 460px);
  aspect-ratio: 1;
  opacity: 0.58;
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(248, 248, 245, 0.2);
  border-radius: 50%;
  animation: spin-slow 28s linear infinite;
}

.hero-orbit::after {
  inset: 27%;
  border-color: rgba(207, 255, 47, 0.22);
  animation-duration: 18s;
  animation-direction: reverse;
}

.orbit-node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 82px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(248, 248, 245, 0.92);
  border: 1px solid rgba(248, 248, 245, 0.36);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  animation: float-node 6s ease-in-out infinite;
}

.orbit-a {
  top: 12%;
  left: 18%;
}

.orbit-b {
  top: 32%;
  right: 8%;
  color: var(--white);
  background: rgba(255, 47, 156, 0.82);
  animation-delay: -1.8s;
}

.orbit-c {
  right: 22%;
  bottom: 14%;
  background: rgba(207, 255, 47, 0.9);
  animation-delay: -3.2s;
}

.orbit-d {
  left: 10%;
  bottom: 28%;
  color: var(--white);
  background: rgba(40, 42, 48, 0.88);
  animation-delay: -4.6s;
}

.orbit-line {
  position: absolute;
  left: 18%;
  right: 12%;
  top: 48%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 255, 47, 0.72), transparent);
  transform: rotate(21deg);
  transform-origin: center;
  animation: signal-line 4.8s ease-in-out infinite;
}

.line-b {
  transform: rotate(-33deg);
  animation-delay: -2.2s;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: clamp(34px, 6vw, 90px);
  min-height: 66vh;
}

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

.eyebrow {
  margin: 0 0 15px;
  color: var(--fuchsia);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 1080px;
  font-size: clamp(52px, 8.4vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 820px;
  margin: 28px 0 0;
  color: rgba(248, 248, 245, 0.84);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions,
.diagnostic-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn.primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 50px rgba(207, 255, 47, 0.14);
}

.btn:hover,
.top-cta:hover,
.system-login:hover,
.situation-grid button:hover,
.solutions-grid button:hover {
  transform: translateY(-2px);
}

.btn.primary:hover,
.top-cta:hover {
  box-shadow: 0 18px 44px rgba(207, 255, 47, 0.28);
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.btn.outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.btn.dark {
  width: fit-content;
  margin-top: auto;
  color: var(--white);
  background: var(--ink);
}

.btn.full {
  width: 100%;
}

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.micro-trust span {
  padding: 8px 12px;
  color: rgba(248, 248, 245, 0.78);
  background: rgba(248, 248, 245, 0.1);
  border: 1px solid rgba(248, 248, 245, 0.18);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 22px;
  background: rgba(248, 248, 245, 0.1);
  border: 1px solid rgba(248, 248, 245, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  animation: panel-enter 0.9s ease both;
}

.panel-label {
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(248, 248, 245, 0.16);
}

.signal-row strong {
  color: var(--fuchsia);
  font-size: 20px;
}

.signal-row span {
  color: rgba(248, 248, 245, 0.78);
}

.panel-btn {
  width: 100%;
  margin-top: 18px;
  color: var(--ink);
  background: var(--white);
}

.decision-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.decision-strip article {
  position: relative;
  min-height: 190px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
  overflow: hidden;
}

.decision-strip article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fuchsia), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s ease;
}

.decision-strip article:hover::after {
  transform: scaleX(1);
}

.decision-strip span,
.service-index,
.proof-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--fuchsia);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-strip strong {
  display: block;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.08;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-head {
  max-width: 900px;
  margin-bottom: 30px;
}

.section-head.light {
  color: var(--white);
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-size: clamp(21px, 2.1vw, 30px);
  line-height: 1.08;
}

.section-head p:not(.eyebrow),
.diagnostic-copy p,
.cabinet-copy p {
  color: var(--muted);
  font-size: 18px;
}

.pain-section,
.proof-section,
.seo-preview {
  background: #f2f2ee;
}

.pain-grid,
.why-grid,
.services-grid,
.situation-grid,
.proof-grid,
.outcomes-grid,
.case-grid,
.objection-grid,
.solutions-grid,
.expertise-grid,
.faq-grid,
.seo-grid {
  display: grid;
  gap: 14px;
}

.pain-grid,
.why-grid,
.proof-grid,
.case-grid,
.solutions-grid,
.expertise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pain-grid article,
.why-grid article,
.proof-grid article,
.outcomes-grid article,
.case-grid article,
.objection-grid article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pain-grid article,
.why-grid article,
.proof-grid article,
.outcomes-grid article,
.case-grid article,
.objection-grid article,
.service-card,
.solutions-grid article,
.expertise-grid article,
.faq-grid article,
.seo-grid article,
.evaluate-map article,
.situation-grid article,
.diagnostic-card,
.dashboard-mock {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pain-grid article:hover,
.why-grid article:hover,
.proof-grid article:hover,
.outcomes-grid article:hover,
.case-grid article:hover,
.objection-grid article:hover,
.service-card:hover,
.solutions-grid article:hover,
.expertise-grid article:hover,
.faq-grid article:hover,
.seo-grid article:hover,
.diagnostic-card:hover,
.dashboard-mock:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 21, 25, 0.24);
  box-shadow: 0 20px 58px rgba(20, 21, 25, 0.1);
}

.evaluate-map article:hover,
.situation-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(207, 255, 47, 0.38);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.pain-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.pain-grid p,
.why-grid p,
.services-grid p,
.proof-grid p,
.outcomes-grid p,
.case-grid p,
.objection-grid p,
.process-line p {
  color: var(--muted);
}

.why-section,
.outcomes-section,
.solutions-base,
.faq-section {
  background: var(--white);
}

.why-grid article {
  border-top: 4px solid var(--graphite);
}

.why-grid article:nth-child(2) {
  border-top-color: var(--fuchsia);
}

.why-grid article:nth-child(3) {
  border-top-color: var(--lime);
}

.why-grid span,
.outcomes-grid span,
.case-grid span,
.solutions-grid span,
.expertise-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--fuchsia);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evaluate-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 47, 156, 0.18), transparent 44%),
    var(--graphite);
}

.evaluate-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.evaluate-map article {
  min-height: 180px;
  padding: 18px;
  background: rgba(248, 248, 245, 0.08);
  border: 1px solid rgba(248, 248, 245, 0.16);
  border-radius: var(--radius);
}

.evaluate-map strong {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 22px;
}

.evaluate-map span {
  color: rgba(248, 248, 245, 0.74);
}

.situation-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(154, 108, 255, 0.18), transparent 42%),
    var(--ink);
}

.situation-section .section-head p:not(.eyebrow) {
  color: rgba(248, 248, 245, 0.72);
}

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

.situation-grid article {
  display: grid;
  gap: 14px;
  min-height: 310px;
  padding: 24px;
  background: rgba(248, 248, 245, 0.08);
  border: 1px solid rgba(248, 248, 245, 0.16);
  border-radius: var(--radius);
}

.situation-grid p {
  color: rgba(248, 248, 245, 0.72);
}

.situation-grid button {
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: 0 14px;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.services-section {
  background: var(--white);
}

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

.service-card {
  display: grid;
  align-content: start;
  min-height: 380px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 50px rgba(20, 21, 25, 0.05);
}

.service-card.fuchsia {
  border-top: 5px solid var(--fuchsia);
}

.service-card.lilac {
  border-top: 5px solid var(--lilac);
}

.service-card.lime {
  border-top: 5px solid var(--lime);
}

.service-card.graphite {
  border-top: 5px solid var(--graphite);
}

.diagnostic-section,
.cabinet-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #ececea;
}

.diagnostic-copy h2,
.cabinet-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.diagnostic-card,
.dashboard-mock {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.diagnostic-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--fuchsia);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnostic-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.diagnostic-stack {
  display: grid;
  gap: 10px;
}

.diagnostic-stack article {
  padding: 14px;
  background: #f7f7f3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.diagnostic-stack strong {
  display: block;
  margin-bottom: 6px;
}

.diagnostic-stack p {
  margin: 0;
  color: var(--muted);
}

.diagnostic-result {
  margin-top: 14px;
  padding: 14px;
  color: var(--ink);
  background: rgba(207, 255, 47, 0.32);
  border-radius: var(--radius);
  font-weight: 850;
}

.report-preview {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(207, 255, 47, 0.18), transparent 56%),
    #f7f7f3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.report-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.report-top strong,
.report-top em {
  font-style: normal;
  font-weight: 950;
}

.report-top em {
  color: var(--fuchsia);
  font-size: 26px;
}

.report-bars {
  display: grid;
  gap: 8px;
}

.report-bars i {
  position: relative;
  height: 9px;
  overflow: hidden;
  background: rgba(20, 21, 25, 0.09);
  border-radius: 999px;
}

.report-bars i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: linear-gradient(90deg, var(--fuchsia), var(--lime));
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
}

.report-preview.is-visible .report-bars i::before,
.is-visible .report-preview .report-bars i::before {
  animation: fill-bar 1s ease forwards;
}

.report-next {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.proof-grid article {
  border-left: 5px solid var(--graphite);
}

.proof-grid article:nth-child(2) {
  border-left-color: var(--fuchsia);
}

.proof-grid article:nth-child(3) {
  border-left-color: var(--lime);
}

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

.outcomes-grid article {
  min-height: 250px;
  border-top: 4px solid var(--graphite);
}

.methodology-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background: #ececea;
}

.method-map {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 21, 25, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 21, 25, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.method-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.method-lines path {
  fill: none;
  stroke: rgba(255, 47, 156, 0.72);
  stroke-width: 2;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}

.method-map.is-visible .method-lines path,
.is-visible .method-map .method-lines path {
  animation: draw-line 1.15s ease forwards;
}

.method-lines path:nth-child(2) {
  stroke: rgba(154, 108, 255, 0.72);
  animation-delay: 0.12s;
}

.method-lines path:nth-child(3) {
  stroke: rgba(207, 255, 47, 0.86);
  animation-delay: 0.24s;
}

.method-lines path:nth-child(4) {
  animation-delay: 0.36s;
}

.method-node,
.method-core {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 112px;
  min-height: 52px;
  padding: 10px;
  border-radius: var(--radius);
  font-weight: 950;
}

.method-node {
  color: var(--white);
  background: var(--graphite);
  box-shadow: 0 14px 36px rgba(20, 21, 25, 0.14);
}

.method-core {
  top: 50%;
  left: 50%;
  width: 174px;
  height: 82px;
  color: var(--ink);
  background: var(--lime);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 48px rgba(207, 255, 47, 0.2);
}

.node-people {
  top: 50px;
  left: 44px;
  border-bottom: 4px solid var(--fuchsia);
}

.node-roles {
  top: 70px;
  right: 44px;
  border-bottom: 4px solid var(--lilac);
}

.node-team {
  bottom: 64px;
  left: 64px;
  border-bottom: 4px solid var(--lime);
}

.node-process {
  right: 52px;
  bottom: 48px;
  border-bottom: 4px solid var(--fuchsia);
}

.method-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.method-copy p {
  color: var(--muted);
  font-size: 18px;
}

.process-section {
  background: var(--white);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid rgba(20, 21, 25, 0.16);
}

.process-line::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--fuchsia), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
}

.process-line.is-visible::before,
.is-visible .process-line::before {
  animation: grow-line 1.25s ease forwards;
}

.process-line article {
  position: relative;
  padding: 26px 22px 0 0;
}

.process-line article::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--fuchsia);
  border: 3px solid var(--white);
  border-radius: 50%;
}

.process-line span {
  color: var(--fuchsia);
  font-weight: 950;
}

.objection-section {
  background: #f7f7f4;
}

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

.objection-grid article {
  border-top: 4px solid var(--graphite);
}

.objection-grid article:nth-child(2) {
  border-top-color: var(--fuchsia);
}

.objection-grid article:nth-child(3) {
  border-top-color: var(--lime);
}

.cases-section,
.expertise-section {
  background: #f2f2ee;
}

.case-grid article {
  min-height: 310px;
  border-top: 4px solid var(--graphite);
}

.case-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
}

.cabinet-preview {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 47, 156, 0.18), transparent 42%),
    var(--ink);
}

.cabinet-copy p {
  color: rgba(248, 248, 245, 0.72);
}

.dashboard-mock {
  color: var(--ink);
}

.mock-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.mock-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-head strong {
  font-size: 26px;
  line-height: 1.05;
}

.dashboard-alert {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(207, 255, 47, 0.36);
  border: 1px solid rgba(207, 255, 47, 0.7);
  border-radius: var(--radius);
}

.dashboard-alert strong {
  font-size: 15px;
}

.dashboard-alert span {
  color: var(--graphite);
  font-size: 13px;
}

.stage-list,
.mock-grid {
  gap: 8px;
}

.stage-list {
  display: flex;
  flex-wrap: wrap;
}

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

.stage-list {
  margin-bottom: 18px;
}

.dashboard-progress {
  height: 8px;
  margin: -6px 0 18px;
  overflow: hidden;
  background: rgba(20, 21, 25, 0.08);
  border-radius: 999px;
}

.dashboard-progress span {
  display: block;
  width: 56%;
  height: 100%;
  background: linear-gradient(90deg, var(--fuchsia), var(--lime));
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
}

.dashboard-mock.is-visible .dashboard-progress span,
.is-visible .dashboard-mock .dashboard-progress span {
  animation: fill-bar 1s ease 0.25s forwards;
}

.stage-list span,
.mock-grid div {
  min-height: 58px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(20, 21, 25, 0.07);
  border-radius: var(--radius);
  font-weight: 850;
}

.mock-grid strong,
.mock-grid span {
  display: block;
}

.mock-grid strong {
  color: var(--ink);
}

.mock-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.stage-list .done {
  color: var(--ink);
  background: rgba(207, 255, 47, 0.42);
}

.stage-list .active {
  color: var(--white);
  background: var(--graphite);
}

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

.solutions-grid article,
.expertise-grid article,
.faq-grid article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.solutions-grid article {
  display: grid;
  min-height: 300px;
}

.solutions-grid p,
.expertise-grid p,
.faq-grid p {
  color: var(--muted);
}

.solutions-grid button {
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: 0 14px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

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

.seo-grid article {
  min-height: 82px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 47, 156, 0.24), transparent 48%),
    var(--graphite);
}

.final-cta h2 {
  max-width: 860px;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  min-height: 78vh;
  padding: clamp(72px, 8vw, 120px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 78px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 47, 156, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(20, 21, 25, 0.72), rgba(20, 21, 25, 0.94)),
    var(--ink);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(248, 248, 245, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(248, 248, 245, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.page-hero-copy,
.score-panel {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(34px, 5.6vw, 78px);
  line-height: 0.94;
}

.score-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
  color: var(--ink);
  background: rgba(248, 248, 245, 0.92);
  border: 1px solid rgba(248, 248, 245, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.score-panel > span,
.diagnostic-option span,
.path-grid span {
  color: var(--fuchsia);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-panel strong {
  font-size: 20px;
  line-height: 1.05;
}

.score-number {
  color: var(--fuchsia);
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.9;
  font-weight: 950;
}

.score-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.diagnostic-options-section {
  background: var(--white);
}

.diagnostic-options,
.path-grid,
.report-grid {
  display: grid;
  gap: 14px;
}

.diagnostic-options {
  grid-template-columns: 1.15fr repeat(2, minmax(0, 0.9fr));
}

.diagnostic-option {
  display: grid;
  min-height: 340px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(20, 21, 25, 0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.diagnostic-option:hover,
.path-grid article:hover,
.report-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 21, 25, 0.24);
  box-shadow: 0 20px 58px rgba(20, 21, 25, 0.1);
}

.diagnostic-option.featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 47, 156, 0.26), transparent 52%),
    var(--graphite);
  border-color: rgba(248, 248, 245, 0.16);
}

.diagnostic-option.featured p {
  color: rgba(248, 248, 245, 0.74);
}

.diagnostic-option h3,
.path-grid h3 {
  margin: 10px 0 0;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.08;
}

.diagnostic-option p,
.path-grid p,
.report-card p {
  color: var(--muted);
}

.diagnostic-option.featured .btn.dark {
  color: var(--ink);
  background: var(--lime);
}

.diagnostic-flow {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(154, 108, 255, 0.18), transparent 42%),
    var(--ink);
}

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

.path-grid article {
  min-height: 250px;
  padding: 24px;
  background: rgba(248, 248, 245, 0.08);
  border: 1px solid rgba(248, 248, 245, 0.16);
  border-radius: var(--radius);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.path-grid p {
  color: rgba(248, 248, 245, 0.72);
}

.report-section {
  background: #ececea;
}

.report-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.report-card h2 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 46px);
  line-height: 0.98;
}

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

.report-grid article {
  min-height: 130px;
  padding: 18px;
  background: #f7f7f3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.report-grid strong,
.report-grid span {
  display: block;
}

.report-grid strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.report-grid span {
  color: var(--muted);
}

.diagnostics-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
}

.diagnostics-final h2 {
  max-width: 820px;
}

.service-mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.service-mini-list em {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: var(--ink);
  background: rgba(207, 255, 47, 0.38);
  border-radius: var(--radius);
  font-style: normal;
  font-weight: 900;
}

.services-catalog-section {
  background: var(--white);
}

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

.service-detail {
  display: grid;
  min-height: 330px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--graphite);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(20, 21, 25, 0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-detail:hover,
.fit-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 21, 25, 0.24);
  box-shadow: 0 20px 58px rgba(20, 21, 25, 0.1);
}

.service-detail.fuchsia {
  border-top-color: var(--fuchsia);
}

.service-detail.lilac {
  border-top-color: var(--lilac);
}

.service-detail.lime {
  border-top-color: var(--lime);
}

.service-detail.graphite {
  border-top-color: var(--graphite);
}

.service-detail span,
.fit-grid span {
  color: var(--fuchsia);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail h3,
.fit-grid h3 {
  margin: 12px 0 0;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.08;
}

.service-detail p,
.fit-grid p,
.services-final p {
  color: var(--muted);
}

.fit-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 47, 156, 0.18), transparent 42%),
    var(--ink);
}

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

.fit-grid article {
  min-height: 260px;
  padding: 24px;
  background: rgba(248, 248, 245, 0.08);
  border: 1px solid rgba(248, 248, 245, 0.16);
  border-radius: var(--radius);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.fit-grid p {
  color: rgba(248, 248, 245, 0.72);
}

.services-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #ececea;
}

.services-final h2 {
  max-width: 820px;
}

.solution-map-section {
  background: var(--white);
}

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

.solution-map article {
  display: grid;
  min-height: 330px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--graphite);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(20, 21, 25, 0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.solution-map article:nth-child(1),
.solution-map article:nth-child(5) {
  border-top-color: var(--fuchsia);
}

.solution-map article:nth-child(2),
.solution-map article:nth-child(6) {
  border-top-color: var(--lilac);
}

.solution-map article:nth-child(3) {
  border-top-color: var(--lime);
}

.solution-map article:hover,
.route-line article:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 21, 25, 0.24);
  box-shadow: 0 20px 58px rgba(20, 21, 25, 0.1);
}

.solution-map span,
.route-line span {
  color: var(--fuchsia);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-map h3,
.route-line h3 {
  margin: 12px 0 0;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.08;
}

.solution-map p,
.solution-final p {
  color: var(--muted);
}

.solution-route-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(154, 108, 255, 0.18), transparent 42%),
    var(--ink);
}

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

.route-line article {
  min-height: 260px;
  padding: 24px;
  background: rgba(248, 248, 245, 0.08);
  border: 1px solid rgba(248, 248, 245, 0.16);
  border-radius: var(--radius);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.route-line p {
  color: rgba(248, 248, 245, 0.72);
}

.solution-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #ececea;
}

.solution-final h2 {
  max-width: 820px;
}

.approach-principles-section {
  background: var(--white);
}

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

.principle-grid article {
  min-height: 290px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--graphite);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(20, 21, 25, 0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.principle-grid article:nth-child(1) {
  border-top-color: var(--fuchsia);
}

.principle-grid article:nth-child(2) {
  border-top-color: var(--lilac);
}

.principle-grid article:nth-child(3) {
  border-top-color: var(--lime);
}

.principle-grid article:hover,
.approach-proof-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 21, 25, 0.24);
  box-shadow: 0 20px 58px rgba(20, 21, 25, 0.1);
}

.principle-grid span,
.approach-proof-grid span {
  color: var(--fuchsia);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principle-grid h3,
.approach-proof-grid h3 {
  margin: 12px 0 0;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.08;
}

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

.method-system-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background: #ececea;
}

.approach-proof-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 47, 156, 0.18), transparent 42%),
    var(--ink);
}

.approach-proof-grid article {
  min-height: 270px;
  padding: 24px;
  background: rgba(248, 248, 245, 0.08);
  border: 1px solid rgba(248, 248, 245, 0.16);
  border-radius: var(--radius);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.approach-proof-grid p {
  color: rgba(248, 248, 245, 0.72);
}

.approach-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
}

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

.approach-final h2 {
  max-width: 820px;
}

.case-scenarios-section {
  background: var(--white);
}

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

.case-scenarios article {
  display: grid;
  min-height: 310px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--graphite);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(20, 21, 25, 0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.case-scenarios article:nth-child(1),
.case-scenarios article:nth-child(4) {
  border-top-color: var(--fuchsia);
}

.case-scenarios article:nth-child(2) {
  border-top-color: var(--lilac);
}

.case-scenarios article:nth-child(3) {
  border-top-color: var(--lime);
}

.case-scenarios article:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 21, 25, 0.24);
  box-shadow: 0 20px 58px rgba(20, 21, 25, 0.1);
}

.case-scenarios span {
  color: var(--fuchsia);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-scenarios h3 {
  margin: 12px 0 0;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.08;
}

.case-scenarios p,
.case-proof-section p,
.cases-final p {
  color: var(--muted);
}

.case-scenarios strong {
  display: block;
  margin-top: auto;
  color: var(--ink);
}

.case-format-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(154, 108, 255, 0.18), transparent 42%),
    var(--ink);
}

.case-proof-section {
  background: #ececea;
}

.cases-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
}

.cases-final h2 {
  max-width: 820px;
}

.resource-catalog-section,
.topic-section,
.about-position-section {
  background: var(--white);
}

.resource-grid,
.topic-grid,
.cluster-grid {
  display: grid;
  gap: 14px;
}

.resource-grid,
.topic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.resource-grid article,
.topic-grid article,
.cluster-grid article {
  display: grid;
  min-height: 280px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--graphite);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(20, 21, 25, 0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.resource-grid article:nth-child(1),
.topic-grid article:nth-child(1),
.topic-grid article:nth-child(5) {
  border-top-color: var(--fuchsia);
}

.resource-grid article:nth-child(2),
.topic-grid article:nth-child(2),
.topic-grid article:nth-child(6) {
  border-top-color: var(--lilac);
}

.resource-grid article:nth-child(3),
.topic-grid article:nth-child(3) {
  border-top-color: var(--lime);
}

.resource-grid article:hover,
.topic-grid article:hover,
.cluster-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 21, 25, 0.24);
  box-shadow: 0 20px 58px rgba(20, 21, 25, 0.1);
}

.resource-grid span,
.topic-grid span,
.cluster-grid span {
  color: var(--fuchsia);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-grid h3,
.topic-grid h3 {
  margin: 12px 0 0;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.08;
}

.resource-grid p,
.topic-grid p,
.cluster-grid p,
.resources-final p,
.blog-final p,
.about-final p {
  color: var(--muted);
}

.resource-access-section,
.content-cluster-section,
.about-fit-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(154, 108, 255, 0.18), transparent 42%),
    var(--ink);
}

.content-cluster-section .cluster-grid article {
  min-height: 220px;
  background: rgba(248, 248, 245, 0.08);
  border: 1px solid rgba(248, 248, 245, 0.16);
  box-shadow: none;
}

.content-cluster-section .cluster-grid p {
  color: rgba(248, 248, 245, 0.72);
}

.about-system-section {
  background: #ececea;
}

.resources-final,
.blog-final,
.about-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
}

.resources-final h2,
.blog-final h2,
.about-final h2 {
  max-width: 820px;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(46px, 7vw, 84px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(100deg, rgba(255, 47, 156, 0.2), transparent 46%),
    var(--graphite);
  border-bottom: 1px solid rgba(248, 248, 245, 0.14);
}

.footer-cta h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 0.98;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(150px, 1fr));
  gap: clamp(20px, 4vw, 54px);
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px);
}

.footer-brand h3 {
  margin: 18px 0 10px;
  font-size: 30px;
}

.footer-brand p {
  max-width: 340px;
  color: rgba(248, 248, 245, 0.68);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-badges span {
  padding: 7px 10px;
  color: var(--lime);
  background: rgba(248, 248, 245, 0.08);
  border: 1px solid rgba(248, 248, 245, 0.14);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h4 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column button,
.footer-column a {
  width: fit-content;
  padding: 0;
  color: rgba(248, 248, 245, 0.66);
  background: transparent;
  border: 0;
  text-align: left;
  text-decoration: none;
  font: inherit;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: rgba(248, 248, 245, 0.5);
  border-top: 1px solid rgba(248, 248, 245, 0.12);
  font-size: 13px;
}

.lead-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.lead-panel.is-open {
  display: block;
}

.panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 14, 0.58);
}

.lead-card {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  gap: 16px;
  width: min(100%, 460px);
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.lead-head span,
label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-head strong {
  display: block;
  font-size: 28px;
}

.lead-head button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(20, 21, 25, 0.08);
  font-size: 24px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

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

.messengers a {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: var(--ink);
  background: rgba(20, 21, 25, 0.07);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

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

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  max-width: 360px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}

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

.reveal:nth-child(2) {
  transition-delay: 0.05s;
}

.reveal:nth-child(3) {
  transition-delay: 0.1s;
}

.reveal:nth-child(4) {
  transition-delay: 0.15s;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-node {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes signal-line {
  0%,
  100% {
    opacity: 0.2;
    filter: blur(0);
  }

  50% {
    opacity: 0.95;
    filter: blur(0.4px);
  }
}

@keyframes panel-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fill-bar {
  to {
    transform: scaleX(1);
  }
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes grow-line {
  to {
    transform: scaleX(1);
  }
}

main,
.site-footer {
  font-size: 100%;
}

main .orbit-node {
  font-size: 10px;
}

main .eyebrow,
main .panel-label,
main .diagnostic-card span,
main .service-index,
.site-footer .eyebrow,
.footer-column h4,
.footer-badges span {
  font-size: 10px;
}

main .hero h1 {
  font-size: clamp(31px, 5vw, 71px);
}

main .lead {
  font-size: clamp(15px, 1.45vw, 18px);
}

main .micro-trust span,
main .report-next,
main .mock-grid span,
.site-footer .footer-bottom {
  font-size: 12px;
}

main .signal-row strong,
main .evaluate-map strong {
  font-size: 16px;
}

main .section h2,
main .diagnostic-copy h2,
main .cabinet-copy h2,
main .method-copy h2 {
  font-size: clamp(20px, 3vw, 41px);
}

main .section h3 {
  font-size: clamp(13px, 1.26vw, 18px);
}

main .section-head p:not(.eyebrow),
main .diagnostic-copy p,
main .cabinet-copy p,
main .method-copy p {
  font-size: 15px;
}

main .report-top em,
main .mock-head strong {
  font-size: 21px;
}

main .dashboard-alert strong {
  font-size: 13px;
}

main .dashboard-alert span {
  font-size: 12px;
}

.site-footer .footer-brand h3 {
  font-size: 24px;
}

main .btn,
main .situation-grid button,
main .solutions-grid button,
.site-footer button {
  font-size: 14px;
}

main p,
main li,
main .signal-row span,
main .evaluate-map span,
main .stage-list span,
main .mock-grid div,
.site-footer p,
.site-footer button {
  font-size: 14px;
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .header-actions {
    justify-content: end;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: start;
    overflow-x: auto;
  }

  .hero-grid,
  .page-hero,
  .diagnostic-section,
  .cabinet-preview,
  .methodology-section,
  .method-system-section,
  .report-card {
    grid-template-columns: 1fr;
  }

  .decision-strip,
  .evaluate-map,
  .situation-grid,
  .services-grid,
  .outcomes-grid,
  .process-line,
  .solutions-grid,
  .expertise-grid,
  .faq-grid,
  .seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diagnostic-options,
  .path-grid,
  .services-catalog,
  .fit-grid,
  .solution-map,
  .route-line,
  .principle-grid,
  .approach-proof-grid,
  .case-scenarios,
  .resource-grid,
  .topic-grid,
  .cluster-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-orbit {
    top: 132px;
    right: -130px;
    width: 500px;
    opacity: 0.42;
  }
}

@media (max-width: 760px) {
  .topbar {
    gap: 10px;
    min-height: auto;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-column: 1 / -1;
    order: 2;
  }

  .top-cta {
    width: 100%;
    min-width: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-orbit {
    display: none;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 74px);
  }

  .hero-actions,
  .diagnostic-actions,
  .final-actions {
    display: grid;
  }

  .decision-strip,
  .pain-grid,
  .why-grid,
  .evaluate-map,
  .situation-grid,
  .services-grid,
  .proof-grid,
  .outcomes-grid,
  .case-grid,
  .process-line,
  .objection-grid,
  .solutions-grid,
  .expertise-grid,
  .faq-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .method-map {
    min-height: 340px;
  }

  .method-node,
  .method-core {
    min-width: 92px;
    font-size: 13px;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero h1 {
    font-size: clamp(38px, 12vw, 66px);
  }

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

  .diagnostics-final {
    align-items: stretch;
    flex-direction: column;
  }

  .services-final {
    align-items: stretch;
    flex-direction: column;
  }

  .solution-final {
    align-items: stretch;
    flex-direction: column;
  }

  .approach-final {
    align-items: stretch;
    flex-direction: column;
  }

  .cases-final {
    align-items: stretch;
    flex-direction: column;
  }

  .resources-final,
  .blog-final,
  .about-final {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-cta,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-actions {
    display: grid;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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