:root {
  color-scheme: dark;
  --bg: #111;
  --panel: rgba(255, 255, 255, 0.025);
  --panel-strong: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.66);
  --dim: rgba(255, 255, 255, 0.42);
  --red: #ed3042;
  --red-dark: #b41e1e;
  --green: #3ddc85;
  --yellow: #e8ce16;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.app-shell {
  min-height: 100vh;
  position: relative;
  overflow: clip;
  background:
    radial-gradient(800px 520px at 94% 0%, rgba(180, 30, 30, 0.07), transparent 72%),
    radial-gradient(620px 520px at -6% 28%, rgba(180, 30, 30, 0.04), transparent 68%),
    radial-gradient(760px 560px at 74% 32%, rgba(230, 225, 216, 0.035), transparent 67%),
    #111;
}

.app-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.36) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}

.app-shell::after {
  content: "";
  position: fixed;
  inset: -18% -12% auto auto;
  width: min(72vw, 980px);
  height: 620px;
  pointer-events: none;
  opacity: 0.46;
  background:
    radial-gradient(ellipse at 48% 42%, rgba(237, 48, 66, 0.08), transparent 64%),
    radial-gradient(ellipse at 72% 18%, rgba(255, 255, 255, 0.035), transparent 58%);
  filter: blur(28px);
  transform: translate3d(0, 0, 0);
  animation: ambientDrift 18s ease-in-out infinite alternate;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  animation: pageEnter 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.wrap {
  width: min(88vw, 1240px);
  margin: 0 auto;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
  padding: 20px 0;
  background: rgba(17, 17, 17, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.nav.scrolled {
  padding: 12px 0;
  background: rgba(17, 17, 17, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.brand span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--dim);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: var(--dim);
  font-size: 14px;
}

.nav-link {
  position: relative;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, rgba(237, 48, 66, 0.72), transparent);
  transition: transform 0.24s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-button.active span {
  opacity: 0;
}

.menu-button.active::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.active::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  flex-direction: column;
  padding: 92px 5vw 36px;
  background: #111;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  width: 100%;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 24px;
  text-align: left;
  padding: 18px 0;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--red);
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(237, 48, 66, 0.12);
  transform: translate3d(0, 0, 0);
  transition: transform 0.24s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.16) 42%, transparent 72%);
  transform: translateX(-70%);
  transition: transform 0.52s ease, opacity 0.3s ease;
}

.btn span,
.nav-cta span {
  position: relative;
  transition: transform 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
  background: #e02b3c;
  box-shadow: 0 18px 42px rgba(237, 48, 66, 0.18);
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(80%);
}

.btn:hover span {
  transform: translateX(3px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.btn:disabled::before {
  display: none;
}

.btn.small {
  min-height: 36px;
  padding: 0 18px;
  font-size: 13px;
}

.btn.large {
  min-height: 60px;
  padding: 0 38px;
  font-size: 17px;
}

.btn.ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.28);
  font-weight: 600;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.48);
}

.btn.dark {
  color: #0a0a0a;
  border-color: rgba(10, 10, 10, 0.18);
}

.btn.dark:hover {
  background: rgba(10, 10, 10, 0.05);
  border-color: rgba(10, 10, 10, 0.36);
}

.hero {
  position: relative;
  min-height: 800px;
  height: 92svh;
  max-height: 980px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 144px 20px 104px;
}

.hero-ambient {
  position: absolute;
  inset: 12% 8% 8%;
  pointer-events: none;
  opacity: 0.58;
  background:
    radial-gradient(ellipse at 54% 40%, rgba(255, 255, 255, 0.045), transparent 46%),
    radial-gradient(ellipse at 65% 70%, rgba(237, 48, 66, 0.065), transparent 56%);
  filter: blur(22px);
  transform: translate3d(0, 0, 0);
  animation: heroGlowShift 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  width: min(54vw, 760px);
  aspect-ratio: 1.25;
  right: 8%;
  bottom: 11%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.035);
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.055), transparent 64%);
  filter: blur(2px);
  opacity: 0.6;
  animation: heroRingDrift 16s ease-in-out infinite alternate;
}

.network {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.06) 42.1%, transparent 42.3% 100%),
    linear-gradient(68deg, transparent 0 58%, rgba(237, 48, 66, 0.12) 58.1%, transparent 58.3% 100%);
  mask-image: radial-gradient(circle at 50% 46%, black 0, transparent 54%);
  animation: networkBreath 16s ease-in-out infinite alternate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  padding: 18px 0 22px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -42px -88px -34px;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 36%, rgba(255, 255, 255, 0.055), transparent 58%),
    radial-gradient(ellipse at 54% 64%, rgba(237, 48, 66, 0.065), transparent 64%);
  opacity: 0.78;
}

.hero-fade-in {
  animation: heroContentFadeIn 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-seq {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity var(--hero-duration, 0.66s) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--hero-duration, 0.66s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--hero-delay, 0ms);
  will-change: opacity, transform;
}

.hero.is-loaded .hero-seq {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-system {
  position: absolute;
  right: clamp(28px, 6vw, 104px);
  bottom: clamp(72px, 11vw, 128px);
  z-index: 1;
  width: 340px;
  height: 202px;
  pointer-events: auto;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.hero-system::before {
  content: "";
  position: absolute;
  inset: 24px 34px 34px;
  border: 1px solid rgba(237, 48, 66, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 70% 36%, rgba(237, 48, 66, 0.14), transparent 38%),
    linear-gradient(90deg, transparent 0 44%, rgba(237, 48, 66, 0.22) 44.2% 45%, transparent 45.2%),
    linear-gradient(145deg, transparent 0 54%, rgba(255, 255, 255, 0.08) 54.2% 55%, transparent 55.2%);
  opacity: 0.72;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), 0 0 54px rgba(237, 48, 66, 0.07);
}

.hero-system::after {
  content: "";
  position: absolute;
  inset: 22px 32px 32px;
  border-radius: 32px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 38%, rgba(237, 48, 66, 0.16) 45%, transparent 52% 100%);
  background-size: 24px 24px, 24px 24px, 180% 180%;
  mix-blend-mode: screen;
  opacity: 0.38;
  transform: translate3d(0, 0, 0);
  animation: heroSystemScan 8s ease-in-out infinite alternate;
}

@media (hover: hover) and (pointer: fine) {
  .hero-system:hover {
    transform: translate3d(0, -5px, 0);
  }
}

.system-node {
  position: absolute;
  min-width: 146px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(15, 15, 15, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: systemFloat 6s ease-in-out infinite alternate;
}

.system-node span,
.system-node strong {
  display: block;
}

.system-node span {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-node strong {
  margin-top: 5px;
  font-size: 14px;
}

.node-source {
  top: 0;
  left: 0;
}

.node-core {
  right: 8px;
  top: 55px;
  border-color: rgba(237, 48, 66, 0.3);
  box-shadow: 0 18px 46px rgba(237, 48, 66, 0.1), 0 18px 40px rgba(0, 0, 0, 0.28);
  animation-delay: 0.45s;
}

.node-core::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: 14px;
  top: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(237, 48, 66, 0.42), 0 0 20px rgba(237, 48, 66, 0.24);
  animation: heroCorePulse 3.8s ease-in-out infinite;
}

.node-sync {
  left: 58px;
  bottom: 0;
  animation-delay: 0.9s;
}

.mini-progress {
  height: 5px;
  margin: 9px 0 5px;
  border-radius: 99px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.mini-progress i {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transform-origin: left;
  animation: miniProgress 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}

.wordmark {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.14em;
  margin: 0 0 30px;
  font-size: clamp(3.35rem, 8vw, 7.35rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.wordmark span {
  background:
    linear-gradient(100deg, transparent 0 34%, rgba(255, 255, 255, 0.92) 46%, transparent 58% 100%),
    linear-gradient(180deg, #fff 0%, #b9b9b9 45%, #777 100%);
  background-size: 240% 100%, 100% 100%;
  background-position: 120% 0, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: wordmarkSheen 7.5s ease-in-out infinite;
}

.wordmark .pilot {
  font-weight: 760;
  letter-spacing: 0;
}

.wordmark .automation {
  font-weight: 230;
  letter-spacing: 0;
  animation-delay: 0.8s;
}

.eyebrow {
  display: block;
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237, 48, 66, 0.76);
}

.hero h1:not(.wordmark) {
  max-width: 1180px;
  margin: 0 auto 34px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  font-weight: 780;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

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

.lead {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.64;
}

.hero .lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  font-weight: 400;
  line-height: 1.58;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
}

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

.mini-lead {
  max-width: 620px;
  margin: 18px auto 36px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.section {
  position: relative;
  padding: clamp(88px, 8vw, 120px) 0;
  scroll-margin-top: 86px;
}

.section.divided::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06) 20%, rgba(180, 30, 30, 0.34) 50%, rgba(255, 255, 255, 0.06) 80%, transparent);
}

.section.theme-light {
  color: #101113;
  background:
    radial-gradient(760px 420px at 88% 12%, rgba(237, 48, 66, 0.07), transparent 62%),
    radial-gradient(640px 380px at 6% 92%, rgba(17, 17, 17, 0.035), transparent 68%),
    linear-gradient(180deg, #f8f6f1 0%, #f1eee7 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), inset 0 -1px 0 rgba(17, 17, 17, 0.07);
}

.section.theme-light::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}

.section.theme-light.divided::before {
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.08) 20%, rgba(237, 48, 66, 0.26) 50%, rgba(17, 17, 17, 0.08) 80%, transparent);
}

.section.theme-light > .wrap {
  position: relative;
  z-index: 1;
}

.section.theme-light h2,
.section.theme-light h3 {
  color: #070709;
}

.section.theme-light .lead,
.section.theme-light .section-head .lead,
.section.theme-light .diagnostic-head p,
.section.theme-light p {
  color: rgba(16, 17, 19, 0.72);
}

.section.theme-light .eyebrow {
  color: rgba(237, 48, 66, 0.86);
}

.section.theme-light .gap-map {
  border-color: rgba(160, 31, 43, 0.32);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    radial-gradient(ellipse at 85% 6%, rgba(237, 48, 66, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: 0 30px 76px rgba(25, 22, 20, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.section.theme-light .gap-map-top {
  border-bottom-color: rgba(17, 17, 17, 0.13);
  color: rgba(16, 17, 19, 0.58);
  background: rgba(255, 255, 255, 0.52);
}

.section.theme-light .gap-map-top strong {
  color: rgba(16, 17, 19, 0.5);
}

.section.theme-light .gap-list {
  background: rgba(17, 17, 17, 0.08);
}

.section.theme-light .gap-row {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(237, 48, 66, 0.07), transparent 48%),
    rgba(255, 255, 255, 0.9);
}

.section.theme-light .gap-row:hover {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(237, 48, 66, 0.1), transparent 50%),
    rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(237, 48, 66, 0.16), 0 18px 38px rgba(25, 22, 20, 0.08);
}

.section.theme-light .gap-copy h3 {
  color: #070709;
}

.section.theme-light .gap-copy p {
  color: rgba(16, 17, 19, 0.76);
}

.section.theme-light .gap-row > strong {
  background: rgba(237, 48, 66, 0.1);
  border-color: rgba(237, 48, 66, 0.34);
  color: rgba(105, 12, 22, 0.94);
}

.section.theme-light .diagnostic-close {
  border-color: rgba(237, 48, 66, 0.2);
  background:
    radial-gradient(ellipse at 90% 50%, rgba(237, 48, 66, 0.075), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54));
  box-shadow: 0 22px 58px rgba(20, 18, 16, 0.1);
}

.section.theme-light .diagnostic-close p {
  color: rgba(16, 17, 19, 0.68);
}

.section-head {
  margin-bottom: 52px;
}

.section h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  font-weight: 790;
}

#problem .section-head .lead {
  margin: 22px 0 0;
  max-width: 780px;
}

.signal-grid,
.case-grid,
.expert-grid,
.portal-grid,
.client-metrics,
.trend-grid {
  display: grid;
  gap: 16px;
}

.section-head .lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.62;
}

.nowrap {
  white-space: nowrap;
}

#problem {
  padding-bottom: 58px;
}

#services {
  padding-top: 74px;
}

.problem-diagnostic .wrap {
  max-width: 1120px;
}

.diagnostic-head {
  max-width: 860px;
  margin-bottom: 42px;
}

.diagnostic-head h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  line-height: 1.04;
  font-weight: 820;
}

.diagnostic-title-line {
  display: block;
}

.diagnostic-head p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.62;
}

.gap-map {
  position: relative;
  border: 1px solid rgba(237, 48, 66, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(237, 48, 66, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(ellipse at 82% 8%, rgba(237, 48, 66, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018));
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 60px rgba(237, 48, 66, 0.055);
  overflow: hidden;
}

.gap-map::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(237, 48, 66, 0.08), transparent);
}

.gap-map-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.gap-map-top span {
  color: rgba(237, 48, 66, 0.9);
}

.gap-map-top strong {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
}

.gap-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.055);
}

.gap-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px 20px;
  align-items: start;
  min-width: 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(237, 48, 66, 0.06), transparent 46%),
    rgba(17, 17, 17, 0.92);
  padding: 24px;
  transition: transform 0.24s ease, background 0.24s ease;
}

.gap-row:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(237, 48, 66, 0.1), transparent 48%),
    rgba(22, 22, 22, 0.98);
  box-shadow: inset 0 0 0 1px rgba(237, 48, 66, 0.1);
}

.gap-code {
  display: flex;
  align-items: center;
  min-width: 48px;
}

.gap-code span {
  color: rgba(237, 48, 66, 0.88);
  font-family: var(--mono);
  font-size: 22px;
  line-height: 1;
  font-weight: 850;
}

.gap-copy {
  grid-row: 2;
  grid-column: 1 / -1;
  min-width: 0;
}

.gap-copy h3 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.16;
}

.gap-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.52;
}

.gap-row > strong {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  white-space: nowrap;
  border: 1px solid rgba(237, 48, 66, 0.26);
  border-radius: 999px;
  background: rgba(237, 48, 66, 0.075);
  color: rgba(255, 255, 255, 0.84);
  padding: 7px 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.diagnostic-close {
  margin-top: 28px;
  border: 1px solid rgba(237, 48, 66, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 90% 50%, rgba(237, 48, 66, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  padding: clamp(24px, 3vw, 34px);
}

.diagnostic-close h3 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.16;
}

.diagnostic-close p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  line-height: 1.58;
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(22px, 2.2vw, 28px);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.card::before,
.service-item::before,
.metric::before,
.signal::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(237, 48, 66, 0.09), transparent 42%, rgba(255, 255, 255, 0.035));
  transition: opacity 0.24s ease;
}

.card:hover {
  border-color: rgba(237, 48, 66, 0.25);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(237, 48, 66, 0.08);
}

.card:hover::before,
.service-item:hover::before,
.metric:hover::before,
.signal:hover::before {
  opacity: 1;
}

.kicker {
  display: block;
  margin-bottom: 13px;
  color: rgba(237, 48, 66, 0.58);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.16;
}

.card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.56;
}

.service-list {
  display: grid;
  gap: 1px;
  margin-bottom: 28px;
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 42px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  padding: 34px;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-item:hover {
  border-color: rgba(237, 48, 66, 0.24);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.service-item:first-child {
  border-top-color: rgba(237, 48, 66, 0.28);
}

.roman {
  color: rgba(237, 48, 66, 0.62);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
}

.service-item h3 {
  margin: 0 0 10px;
  font-size: clamp(1.26rem, 2.4vw, 1.75rem);
}

.service-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.6;
}

.service-item .detail {
  min-width: 160px;
  text-align: right;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.9;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  opacity: 0.68;
  transform: translateX(0);
  transition: opacity 0.24s ease, transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
  transition-delay: var(--chip-delay, 0ms);
}

.service-item:hover .service-chip {
  opacity: 1;
  transform: translateX(-4px);
  border-color: rgba(237, 48, 66, 0.18);
  background: rgba(237, 48, 66, 0.055);
}

.service-visual-list {
  display: grid;
  gap: 28px;
  margin-bottom: 34px;
}

.service-visual-block {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 88% 10%, rgba(237, 48, 66, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  transform: translate3d(0, 0, 0);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-visual-block:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 48, 66, 0.24);
  background:
    radial-gradient(ellipse at 88% 10%, rgba(237, 48, 66, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.022));
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.31), 0 0 50px rgba(237, 48, 66, 0.045);
}

.service-visual-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 26px;
}

.service-visual-copy .roman {
  padding-top: 0;
}

.service-visual-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.service-visual-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.18vw, 1.1rem);
  line-height: 1.54;
}

.service-tags {
  grid-column: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-visual-block:hover .service-chip {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(237, 48, 66, 0.18);
  background: rgba(237, 48, 66, 0.055);
}

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

.service-shot {
  margin: 0;
  min-width: 0;
}

.service-shot-media {
  position: relative;
  aspect-ratio: 16 / 9.4;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.service-shot-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
  z-index: 1;
}

.service-shot-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-shot figcaption {
  display: grid;
  gap: 7px;
  padding: 14px 2px 0;
}

.service-shot figcaption strong {
  color: rgba(237, 48, 66, 0.85);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-shot figcaption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.signal {
  position: relative;
  display: block;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.028));
  padding: clamp(22px, 2.2vw, 28px) clamp(22px, 2.2vw, 28px) clamp(22px, 2.2vw, 28px) clamp(42px, 3.4vw, 50px);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  font-weight: 700;
  line-height: 1.5;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.signal:hover {
  transform: translateY(-3px);
  border-color: rgba(237, 48, 66, 0.3);
  background: linear-gradient(180deg, rgba(237, 48, 66, 0.06), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.dot {
  width: 8px;
  height: 8px;
  margin-top: 0;
  border-radius: 999px;
  background: var(--red);
  flex: 0 0 auto;
  box-shadow: 0 0 0 rgba(237, 48, 66, 0);
  animation: statusPulse 3.4s ease-in-out infinite;
}

.signal .dot {
  position: absolute;
  left: clamp(22px, 2.2vw, 28px);
  top: clamp(28px, 2.7vw, 34px);
}

.dashboard-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.dashboard-demo {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, #121212, #0d0d0d);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 58px rgba(61, 220, 133, 0.035);
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.dashboard-demo:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 48, 66, 0.22);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 0 0 50px rgba(237, 48, 66, 0.06);
}

.demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--mono);
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.status-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #74f1ac;
  border: 1px solid rgba(74, 222, 128, 0.32);
  border-radius: 999px;
  padding: 3px 8px;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #74f1ac;
  box-shadow: 0 0 12px rgba(116, 241, 172, 0.7);
  animation: syncPulse 2.4s ease-in-out infinite;
}

.progress-block {
  padding: 18px 16px 4px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--mono);
  font-size: 11px;
}

.bar {
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  width: 67%;
  border-radius: inherit;
  background: var(--yellow);
}

.progress-bar span {
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
}

.is-visible .progress-bar span {
  transform: scaleX(var(--progress, 1));
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px 16px 16px;
}

.metric {
  position: relative;
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.metric:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 48, 66, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.metric label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.3;
}

.metric strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
}

.metric-chart {
  display: block;
  width: 100%;
}

.chart-metric {
  min-height: 88px;
}

.spark-chart {
  color: var(--green);
  height: 42px;
  margin-top: 6px;
}

.spark-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.spark-compact {
  height: 48px;
  margin-top: 8px;
  padding-right: 2px;
}

.spark-compact .spark-grid {
  stroke: rgba(255, 255, 255, 0.1);
}

.spark-compact .spark-area {
  opacity: 0.16;
}

.spark-compact .spark-line {
  stroke-width: 2.8;
}

.spark-compact .spark-point {
  r: 1.7;
}

.spark-grid {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.spark-area {
  fill: currentColor;
  opacity: 0.12;
}

.spark-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  transform: none;
  transform-origin: center;
}

.spark-point,
.spark-end {
  fill: currentColor;
  opacity: 1;
  transform-origin: center;
}

.is-visible .spark-line,
.dashboard-demo.is-visible .spark-line {
  animation: none;
}

.is-visible .spark-end,
.dashboard-demo.is-visible .spark-end {
  animation: none;
}

.client-page .spark-line {
  opacity: 1;
  transform: none;
}

.client-page .spark-end {
  opacity: 1;
}

.wide-metric {
  grid-column: 1 / -1;
}

.green-fill {
  background: rgba(27, 179, 96, 0.28);
}

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

.check-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 650;
}

.check-list .dot {
  position: relative;
  left: auto;
  top: auto;
  margin-top: 8px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

.reveal-block.is-visible .timeline::before {
  transform: scaleX(1);
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
  padding: 76px 28px 28px;
  transition: transform 0.24s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.badge {
  position: absolute;
  top: 24px;
  left: 28px;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: var(--red);
  font-family: var(--mono);
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  font-weight: 800;
  line-height: 0.8;
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.44s ease, transform 0.44s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.24s ease;
}

.reveal-block.is-visible .badge {
  opacity: 1;
  transform: scale(1);
}

.step:hover .badge {
  border-color: rgba(237, 48, 66, 0.58);
  box-shadow: 0 0 24px rgba(237, 48, 66, 0.1);
}

.step h3 {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.14;
}

.step p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  line-height: 1.58;
}

.process-head h2 {
  max-width: 700px;
}

.process-head h2 .red {
  display: block;
}

.process-substeps {
  display: grid;
  gap: 10px;
  margin: 2px 0 22px;
}

.process-substep {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  padding: 14px 15px;
}

.process-substep span {
  color: rgba(237, 48, 66, 0.86);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.process-substep strong {
  color: rgba(255, 255, 255, 0.93);
  font-size: 15.5px;
  line-height: 1.25;
}

.step .detail {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.5;
}

.step .detail span {
  color: rgba(237, 48, 66, 0.88);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audit-clarity-card {
  margin-top: 30px;
  border: 1px solid rgba(237, 48, 66, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(520px 260px at 100% 0%, rgba(237, 48, 66, 0.09), transparent 64%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.18);
  padding: clamp(24px, 3vw, 34px);
}

.audit-clarity-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.3rem, 1.9vw, 2rem);
  line-height: 1.12;
}

.audit-clarity-card p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.6;
}

.audit-clarity-card span {
  display: block;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.case-grid {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
}

.case-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 48, 66, 0.42), transparent);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.75;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}

.reveal-block.is-visible .case-grid::before {
  transform: scaleX(1);
}

.case-grid .card {
  z-index: 1;
}

.case-grid .card:nth-child(2) {
  border-color: rgba(237, 48, 66, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 40px rgba(160, 20, 20, 0.06);
}

.white-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 6%, rgba(237, 48, 66, 0.075), transparent 45%),
    #f6f6f4;
  color: #0a0a0a;
  padding: clamp(82px, 8vw, 108px) 0 clamp(78px, 7vw, 96px);
  text-align: center;
}

.white-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.white-cta::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.18), transparent);
}

.white-cta .wrap {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 22px 60px rgba(0, 0, 0, 0.08));
}

.white-cta h2 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(2.15rem, 4.6vw, 3.75rem);
  line-height: 1.06;
}

.white-cta p {
  max-width: 680px;
  margin: 28px auto 0;
  color: rgba(10, 10, 10, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.audit-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1160px;
  margin: 52px auto 42px;
}

.audit-card {
  position: relative;
  min-height: 232px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    rgba(10, 10, 10, 0.035);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  overflow: hidden;
  padding: 32px 30px 28px;
  text-align: left;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.audit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(237, 48, 66, 0.08));
  opacity: 0.8;
}

.audit-card::after {
  content: "";
  position: absolute;
  inset: auto -28px -42px auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 48, 66, 0.12), transparent 68%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.audit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 48, 66, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.48)),
    rgba(237, 48, 66, 0.035);
  box-shadow: 0 24px 58px rgba(10, 10, 10, 0.09), 0 0 0 1px rgba(237, 48, 66, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.audit-card:hover::after {
  opacity: 1;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.quote-mark {
  color: rgba(237, 48, 66, 0.8);
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 0.82;
}

.testimonial-card blockquote {
  margin: 22px 0 28px;
  color: #0a0a0a;
  font-size: clamp(1.05rem, 1.32vw, 1.28rem);
  line-height: 1.48;
  font-weight: 730;
  letter-spacing: -0.01em;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 10, 10, 0.09);
  color: rgba(10, 10, 10, 0.56);
  font-size: 13px;
  line-height: 1.25;
}

.testimonial-card figcaption span {
  color: #0a0a0a;
  font-weight: 820;
}

.testimonial-card figcaption strong {
  color: rgba(237, 48, 66, 0.78);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.audit-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.audit-num::after {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(237, 48, 66, 0.38);
}

.audit-card h3 {
  margin: 20px 0 8px;
  color: #0a0a0a;
  font-size: 16.5px;
  line-height: 1.32;
  letter-spacing: 0;
}

.audit-card p {
  max-width: none;
  margin: 0;
  color: rgba(10, 10, 10, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.white-cta .actions {
  margin-top: 42px;
}

.white-cta .btn.large {
  min-height: 58px;
  padding: 18px 32px;
  font-size: 16.5px;
  font-weight: 820;
}

.audit-points .dot {
  margin-top: 5px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--dim);
  font-size: 13px;
}

.copyright {
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--mono);
  font-size: 12px;
}

.page {
  min-height: 100vh;
  padding: 130px 0 64px;
}

.page-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 42px;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: 0.96;
  font-weight: 560;
}

.about-page {
  overflow: hidden;
  background: var(--bg);
}

.about-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 150px 0 104px;
  background:
    radial-gradient(900px 520px at 78% 18%, rgba(237, 48, 66, 0.15), transparent 62%),
    radial-gradient(720px 420px at 22% 78%, rgba(255, 255, 255, 0.055), transparent 70%),
    var(--bg);
}

.about-hero::before,
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.35;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(56px, 7vw, 104px);
  min-width: 0;
}

.about-hero-copy h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3.1rem, 5.8vw, 6.6rem);
  line-height: 0.94;
  font-weight: 790;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.about-hero-copy {
  min-width: 0;
}

.about-hero-copy .lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.42vw, 1.34rem);
}

.about-hero-copy .actions,
.about-final .actions {
  justify-content: flex-start;
  margin-top: 36px;
}

.about-stability-card {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(237, 48, 66, 0.2);
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 82% 0%, rgba(237, 48, 66, 0.11), transparent 48%),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  padding: clamp(28px, 3vw, 38px);
}

.about-stability-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(237, 48, 66, 0.08), transparent);
}

.about-stability-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-stability-head strong {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
}

.stability-summary {
  margin-top: 34px;
  border-left: 2px solid rgba(237, 48, 66, 0.5);
  padding-left: 22px;
}

.stability-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.6;
}

.stability-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.stability-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.78);
  padding: 13px 14px;
  font-size: 15px;
}

.stability-list span {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.stability-note {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.about-section {
  position: relative;
  padding: clamp(92px, 8vw, 132px) 0;
  scroll-margin-top: 92px;
}

.about-section > .wrap,
.about-final > .wrap {
  position: relative;
  z-index: 1;
}

.about-light {
  background:
    radial-gradient(760px 430px at 92% 10%, rgba(237, 48, 66, 0.095), transparent 66%),
    radial-gradient(680px 380px at 6% 90%, rgba(17, 17, 17, 0.055), transparent 70%),
    linear-gradient(180deg, #fbf9f4 0%, #f1eee7 100%);
  color: #0b0b0d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(17, 17, 17, 0.095);
}

.about-light::before {
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.055) 1px, transparent 1px);
  opacity: 0.2;
}

.about-dark {
  background:
    radial-gradient(760px 420px at 88% 20%, rgba(237, 48, 66, 0.08), transparent 64%),
    #111;
  color: #fff;
}

.about-split,
.about-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
}

.about-section-head h2,
.about-final h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.7rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-section-head .lead {
  margin: 26px 0 0;
  max-width: 780px;
}

.about-team-intro {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(12, 12, 14, 0.72);
  font-size: clamp(1.08rem, 1.32vw, 1.28rem);
  line-height: 1.58;
}

.about-veteran-line {
  display: inline-flex;
  max-width: 820px;
  margin: 18px 0 0;
  border: 1px solid rgba(237, 48, 66, 0.22);
  border-radius: 999px;
  background: rgba(237, 48, 66, 0.055);
  color: rgba(12, 12, 14, 0.78);
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.45;
}

.about-people {
  padding-top: clamp(110px, 8.8vw, 150px);
  padding-bottom: clamp(112px, 9vw, 156px);
  background:
    radial-gradient(820px 460px at 50% 4%, rgba(237, 48, 66, 0.1), transparent 64%),
    radial-gradient(760px 420px at 6% 96%, rgba(17, 17, 17, 0.055), transparent 70%),
    linear-gradient(180deg, #fbf9f4 0%, #f0ece4 100%);
}

.about-light .about-section-head .lead,
.about-light p {
  color: rgba(12, 12, 14, 0.78);
}

.about-story {
  display: grid;
  gap: 20px;
  border-left: 2px solid rgba(237, 48, 66, 0.42);
  padding-left: clamp(24px, 3vw, 42px);
}

.about-story p,
.lesson-lines p,
.trust-list div,
.about-card p,
.about-person p,
.about-final p {
  font-size: clamp(1.04rem, 1.18vw, 1.17rem);
  line-height: 1.68;
}

.about-story p {
  margin: 0;
}

.lesson-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.82fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
  margin-top: 52px;
}

.lesson-lines {
  display: grid;
  gap: 12px;
}

.lesson-lines p {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 0 15px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.3vw, 1.24rem);
}

.lesson-lines strong {
  display: block;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(1.28rem, 2vw, 2rem);
  line-height: 1.18;
}

.dependency-panel {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(237, 48, 66, 0.22);
  border-radius: 10px;
  background:
    radial-gradient(ellipse at center, rgba(237, 48, 66, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.026);
  overflow: hidden;
}

.dependency-panel::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.dependency-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(237, 48, 66, 0.44);
  border-radius: 50%;
  background: rgba(8, 8, 9, 0.9);
  color: #fff;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 820;
  line-height: 1.12;
}

.dependency-panel span {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.76);
  padding: 9px 11px;
  font-size: 12px;
  white-space: nowrap;
}

.dependency-panel span:nth-of-type(1) { left: 50%; top: 10%; }
.dependency-panel span:nth-of-type(2) { left: 82%; top: 25%; }
.dependency-panel span:nth-of-type(3) { left: 86%; top: 62%; }
.dependency-panel span:nth-of-type(4) { left: 62%; top: 88%; }
.dependency-panel span:nth-of-type(5) { left: 28%; top: 84%; }
.dependency-panel span:nth-of-type(6) { left: 13%; top: 50%; }
.dependency-panel span:nth-of-type(7) { left: 24%; top: 20%; }

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.about-card,
.about-person {
  position: relative;
  border: 1px solid rgba(12, 12, 14, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 58px rgba(10, 10, 10, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  padding: clamp(22px, 2.4vw, 30px);
}

.about-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-family: var(--mono);
  font-weight: 800;
}

.about-card h3,
.about-person h3 {
  margin: 0 0 12px;
  color: #09090a;
  font-size: clamp(1.18rem, 1.4vw, 1.45rem);
  line-height: 1.12;
}

.about-card p,
.about-person p {
  margin: 0;
}

.about-person p + p {
  margin-top: 14px;
}

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

.trust-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.78);
  padding: 18px 20px;
}

.trust-list span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(237, 48, 66, 0.36);
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
  margin-top: 58px;
}

.about-person {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  min-height: 330px;
  padding: clamp(34px, 3.5vw, 48px);
  border-color: rgba(12, 12, 14, 0.16);
  box-shadow: 0 30px 74px rgba(10, 10, 10, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.about-person .avatar {
  width: 94px;
  height: 94px;
  margin: 0;
  border-color: rgba(237, 48, 66, 0.22);
  box-shadow: 0 16px 36px rgba(10, 10, 10, 0.12);
}

.support-network-card {
  grid-column: 1 / -1;
  min-height: auto;
  background:
    radial-gradient(420px 260px at 96% 0%, rgba(237, 48, 66, 0.065), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.support-network-card p {
  max-width: 940px;
}

.support-network-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(237, 48, 66, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(237, 48, 66, 0.13), transparent 58%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(10, 10, 10, 0.1);
}

.support-network-mark::before,
.support-network-mark::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(237, 48, 66, 0.32);
  transform-origin: center;
}

.support-network-mark::before {
  width: 44px;
  transform: rotate(26deg);
}

.support-network-mark::after {
  width: 42px;
  transform: rotate(-24deg);
}

.support-network-mark span {
  position: absolute;
  z-index: 1;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(237, 48, 66, 0.36);
  border-radius: 50%;
  background: #fbf9f4;
  box-shadow: 0 0 18px rgba(237, 48, 66, 0.12);
}

.support-network-mark span:nth-child(1) {
  left: 21px;
  top: 24px;
}

.support-network-mark span:nth-child(2) {
  right: 20px;
  top: 28px;
}

.support-network-mark span:nth-child(3) {
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

.about-person .kicker {
  margin-bottom: 12px;
  color: rgba(237, 48, 66, 0.74);
  font-size: 11px;
}

.credential-line {
  display: block;
  margin: 0 0 20px;
  color: rgba(12, 12, 14, 0.58);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
}

.about-final {
  position: relative;
  padding: clamp(92px, 8vw, 126px) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(237, 48, 66, 0.1), transparent 52%),
    #111;
  color: #fff;
  text-align: left;
}

.about-final p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.faq-page {
  overflow: hidden;
  background: var(--bg);
}

.faq-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 150px 0 104px;
  background:
    radial-gradient(920px 540px at 82% 14%, rgba(237, 48, 66, 0.14), transparent 62%),
    radial-gradient(720px 420px at 16% 78%, rgba(255, 255, 255, 0.052), transparent 70%),
    var(--bg);
}

.faq-hero::before,
.faq-section.faq-dark::before,
.faq-final::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.34;
}

.faq-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
  min-width: 0;
}

.faq-hero-copy {
  min-width: 0;
}

.faq-hero-copy h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(3rem, 5.35vw, 6.1rem);
  line-height: 0.96;
  font-weight: 820;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.faq-hero-copy .lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.04rem, 1.32vw, 1.26rem);
  line-height: 1.62;
}

.faq-hero-copy .actions,
.faq-final .actions {
  justify-content: flex-start;
  margin-top: 36px;
}

.faq-cover-card {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(237, 48, 66, 0.21);
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 86% 0%, rgba(237, 48, 66, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.026);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  overflow: hidden;
  padding: clamp(28px, 3vw, 40px);
}

.faq-cover-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(237, 48, 66, 0.1), transparent);
}

.question-map-card {
  min-height: 0;
  padding: clamp(24px, 2.4vw, 34px);
  background:
    radial-gradient(420px 280px at 100% 0%, rgba(237, 48, 66, 0.16), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%),
    rgba(255, 255, 255, 0.026);
}

.question-map-card::after {
  content: "";
  position: absolute;
  inset: 58px -28px auto auto;
  width: 210px;
  height: 210px;
  pointer-events: none;
  border: 1px solid rgba(237, 48, 66, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(237, 48, 66, 0.026),
    0 0 0 78px rgba(255, 255, 255, 0.018);
  opacity: 0.78;
}

.faq-cover-card .kicker {
  color: rgba(237, 48, 66, 0.74);
}

.faq-cover-card h2 {
  max-width: 360px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(1.65rem, 2.24vw, 2.22rem);
  line-height: 1.05;
}

.question-map-subtitle {
  max-width: 360px;
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14.5px;
  line-height: 1.58;
}

.question-map-rows {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.question-map-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 9px;
  background:
    linear-gradient(90deg, rgba(237, 48, 66, 0.055), transparent 38%),
    rgba(255, 255, 255, 0.036);
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 12px;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.question-map-row:hover {
  border-color: rgba(237, 48, 66, 0.28);
  background:
    linear-gradient(90deg, rgba(237, 48, 66, 0.09), transparent 42%),
    rgba(255, 255, 255, 0.048);
  transform: translateY(-1px);
}

.question-dot {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(237, 48, 66, 0.34);
  border-radius: 50%;
  background: rgba(237, 48, 66, 0.11);
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(237, 48, 66, 0.16);
}

.question-map-row strong {
  min-width: 0;
  font-size: 15px;
  line-height: 1.24;
}

.question-pill {
  justify-self: end;
  border: 1px solid rgba(237, 48, 66, 0.22);
  border-radius: 999px;
  background: rgba(237, 48, 66, 0.085);
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 7px 9px;
  text-transform: uppercase;
  white-space: nowrap;
}

.question-map-footer {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding-top: 18px;
}

.faq-cover-list {
  display: grid;
  gap: 11px;
}

.faq-cover-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.8);
  padding: 13px 14px;
  font-size: 15px;
}

.faq-cover-list span {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(237, 48, 66, 0.4);
}

.faq-cover-card p:not(.question-map-subtitle) {
  margin: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14.5px;
  line-height: 1.58;
}

.faq-cover-card .question-map-footer {
  margin-top: 24px;
  padding-top: 18px;
}

.faq-section,
.faq-final {
  position: relative;
  padding: clamp(92px, 8vw, 132px) 0;
  scroll-margin-top: 92px;
}

.faq-section > .wrap,
.faq-final > .wrap {
  position: relative;
  z-index: 1;
}

.faq-light {
  background:
    radial-gradient(800px 440px at 92% 8%, rgba(237, 48, 66, 0.085), transparent 66%),
    radial-gradient(700px 400px at 4% 92%, rgba(17, 17, 17, 0.052), transparent 70%),
    linear-gradient(180deg, #fbf9f4 0%, #f1eee7 100%);
  color: #0b0b0d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(17, 17, 17, 0.09);
}

.faq-dark {
  background:
    radial-gradient(780px 430px at 88% 18%, rgba(237, 48, 66, 0.08), transparent 64%),
    #111;
  color: #fff;
}

.faq-section-head {
  max-width: 870px;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.faq-section-head h2,
.faq-final h2 {
  max-width: 940px;
  margin: 0;
  color: inherit;
  font-size: clamp(2.25rem, 4vw, 4.6rem);
  line-height: 1.02;
  font-weight: 820;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.faq-section-head p,
.faq-final p {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.68;
}

.faq-light .faq-section-head p,
.faq-light .faq-look-card p,
.faq-light .faq-item p {
  color: rgba(12, 12, 14, 0.74);
}

.faq-dark .faq-section-head p,
.faq-dark .faq-item p,
.faq-final p {
  color: rgba(255, 255, 255, 0.72);
}

.faq-look-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.faq-look-card {
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(12, 12, 14, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 58px rgba(10, 10, 10, 0.095), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  padding: clamp(24px, 2.4vw, 32px);
}

.faq-look-card > span {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(237, 48, 66, 0.32);
}

.faq-look-card h3 {
  margin: 0 0 12px;
  color: #09090a;
  font-size: clamp(1.12rem, 1.35vw, 1.42rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.faq-look-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.62;
}

.faq-stack {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.faq-section:not(.faq-light) .faq-stack {
  max-width: 1040px;
}

.faq-split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: start;
}

.faq-split .faq-section-head {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.faq-split .faq-stack {
  max-width: none;
}

.faq-item {
  border-radius: 9px;
  overflow: hidden;
}

.faq-dark .faq-item {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(360px 180px at 94% 0%, rgba(237, 48, 66, 0.07), transparent 62%),
    rgba(255, 255, 255, 0.032);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.faq-light .faq-item {
  border: 1px solid rgba(12, 12, 14, 0.13);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(10, 10, 10, 0.075), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 24px 64px 24px clamp(22px, 2.6vw, 34px);
  cursor: pointer;
  color: inherit;
  font-size: clamp(1.04rem, 1.18vw, 1.22rem);
  font-weight: 790;
  line-height: 1.28;
  list-style: none;
}

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

.faq-item summary::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(237, 48, 66, 0.36);
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: clamp(22px, 2.4vw, 32px);
  top: 50%;
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.22s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 clamp(22px, 2.6vw, 34px) 28px calc(clamp(22px, 2.6vw, 34px) + 25px);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.68;
}

.faq-final {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(237, 48, 66, 0.12), transparent 52%),
    #111;
  color: #fff;
}

.faq-final > .wrap {
  max-width: 980px;
}

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

.faq-final p {
  max-width: 690px;
}

.rule {
  width: 40px;
  height: 1px;
  margin: 0 auto 22px;
  background: rgba(237, 48, 66, 0.5);
}

.intake {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  padding: clamp(28px, 5vw, 48px);
}

.contact-intro.is-hidden {
  display: none;
}

.intake.is-complete {
  display: grid;
  place-items: center;
  max-width: none;
  min-height: calc(100svh - 220px);
  border: 0;
  background: transparent;
  padding: clamp(84px, 12vw, 180px) 0;
}

.intake-content {
  width: 100%;
  animation: intakeSlideIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.intake.is-leaving .intake-content {
  animation: intakeSlideOut 0.18s cubic-bezier(0.4, 0, 1, 1) both;
}

.progress-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.progress-line .bar {
  flex: 1;
  margin: 0;
}

.question {
  min-height: 330px;
}

.completion-page {
  display: grid;
  justify-items: center;
  width: min(92vw, 560px);
  margin: 0 auto;
  text-align: center;
}

.question h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
}

.success-status-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 36px;
  border: 1px solid rgba(237, 48, 66, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 36%, rgba(237, 48, 66, 0.18), transparent 68%),
    rgba(237, 48, 66, 0.075);
  box-shadow: 0 18px 42px rgba(237, 48, 66, 0.12);
}

.success-status-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.completion-page h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.completion-page .lead {
  max-width: 520px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  font-weight: 700;
  line-height: 1.55;
}

.completion-status {
  margin: 34px 0 0;
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.completion-note {
  margin: 18px 0 36px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.verify-label {
  display: block;
  margin-bottom: 9px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field,
.textarea,
.select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 16px 18px;
  outline: none;
  font-size: 18px;
}

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

.field:focus,
.textarea:focus,
.select:focus {
  border-color: rgba(237, 48, 66, 0.54);
  background: rgba(255, 255, 255, 0.065);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  text-align: left;
  padding: 15px 16px;
  cursor: pointer;
}

.choice.active {
  border-color: rgba(237, 48, 66, 0.55);
  background: rgba(237, 48, 66, 0.09);
}

.error {
  min-height: 22px;
  margin-top: 14px;
  color: #ff6675;
  font-size: 14px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.summary {
  display: grid;
  gap: 12px;
}

.summary-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.summary-row label {
  display: block;
  margin-bottom: 6px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.expert-grid,
.portal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.expert-card {
  text-align: center;
  padding: 28px;
}

.avatar {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.credential-list {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 12px;
}

.login-card {
  max-width: 480px;
  margin: 0 auto;
}

.login-card .field {
  margin-bottom: 14px;
}

.hint {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
}

.client-page {
  background: #0a0a0a;
}

.portal-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.94);
}

.portal-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.client-main {
  padding: 34px 0 72px;
}

.client-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.client-title h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
}

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

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.tag.warn {
  color: #f3d369;
  border-color: rgba(232, 206, 22, 0.35);
  background: rgba(232, 206, 22, 0.08);
}

.client-progress,
.empty-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 22px;
}

.client-metrics {
  grid-template-columns: repeat(4, 1fr);
  margin: 18px 0 28px;
}

.trend-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 14px 0 28px;
}

.empty-panel {
  min-height: 180px;
}

.empty-panel h3 {
  margin: 0 0 24px;
}

.empty-panel p {
  color: var(--dim);
}

.chart-panel {
  min-height: 210px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-head h3 {
  margin: 0;
}

.panel-head span {
  border: 1px solid rgba(74, 222, 128, 0.24);
  border-radius: 999px;
  color: #74f1ac;
  padding: 4px 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.chart-panel .spark-chart {
  height: 86px;
  margin: 2px 0 18px;
}

.chart-panel p {
  margin: 0;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-block.is-visible .reveal-item,
.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes pageEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes intakeSlideIn {
  from {
    opacity: 0;
    transform: translate3d(34px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intakeSlideOut {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-34px, 0, 0);
  }
}

@keyframes heroContentFadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ambientDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-5%, 4%, 0) scale(1.04);
  }
}

@keyframes heroGlowShift {
  from {
    transform: translate3d(-2%, 1%, 0) scale(1);
    opacity: 0.42;
  }
  to {
    transform: translate3d(3%, -2%, 0) scale(1.05);
    opacity: 0.62;
  }
}

@keyframes heroRingDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-22px, 18px, 0) scale(1.03);
  }
}

@keyframes networkBreath {
  from {
    opacity: 0.16;
  }
  to {
    opacity: 0.24;
  }
}

@keyframes heroSystemScan {
  from {
    background-position: 0 0, 0 0, 10% 50%;
    opacity: 0.26;
  }
  to {
    background-position: 18px 12px, 12px 18px, 88% 50%;
    opacity: 0.48;
  }
}

@keyframes heroCorePulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.88);
    box-shadow: 0 0 0 0 rgba(237, 48, 66, 0.32), 0 0 18px rgba(237, 48, 66, 0.16);
  }
  50% {
    opacity: 0.96;
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(237, 48, 66, 0), 0 0 26px rgba(237, 48, 66, 0.24);
  }
}

@keyframes wordmarkSheen {
  0%,
  46% {
    background-position: 120% 0, 0 0;
  }
  76%,
  100% {
    background-position: -70% 0, 0 0;
  }
}

@keyframes systemFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -7px, 0);
  }
}

@keyframes miniProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(237, 48, 66, 0);
  }
  45% {
    box-shadow: 0 0 18px rgba(237, 48, 66, 0.25);
  }
}

@keyframes syncPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes sparkLineIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sparkPointIn {
  from {
    opacity: 0;
    transform: scale(0.72);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes barIn {
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (min-width: 1200px) {
  .wrap {
    width: min(92vw, 1380px);
  }

  .section {
    padding: clamp(78px, 6.4vw, 116px) 0;
  }

  .section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(430px, 0.9fr);
    column-gap: clamp(56px, 7vw, 104px);
    row-gap: 18px;
    align-items: end;
    margin-bottom: 50px;
  }

  .section h2 {
    font-size: clamp(2.25rem, 3.25vw, 3.55rem);
  }

  .section-head .eyebrow,
  .section-head h2 {
    grid-column: 1;
  }

  .section-head .lead {
    grid-column: 2;
    max-width: 660px;
    margin: 0;
  }

  .hero {
    height: min(92svh, 980px);
    min-height: 760px;
    place-items: center;
    text-align: left;
    padding: 118px 0 86px;
  }

  .hero-copy {
    width: min(92vw, 1380px);
    max-width: 1380px;
    margin: 0 auto;
    padding: 14px clamp(390px, 34vw, 520px) 18px 0;
  }

  .hero-copy::before {
    inset: -46px clamp(280px, 28vw, 460px) -38px -80px;
    border-radius: 42%;
    background:
      radial-gradient(ellipse at 34% 40%, rgba(255, 255, 255, 0.052), transparent 58%),
      radial-gradient(ellipse at 46% 64%, rgba(237, 48, 66, 0.07), transparent 62%);
  }

  .wordmark {
    justify-content: flex-start;
    margin-bottom: 28px;
    font-size: clamp(4.75rem, 6.85vw, 7.55rem);
  }

  .hero h1:not(.wordmark) {
    max-width: 920px;
    margin: 0 0 32px;
    font-size: clamp(2.9rem, 3.98vw, 3.95rem);
    line-height: 0.98;
  }

  .hero .lead {
    max-width: 640px;
    margin: 0;
  }

  .hero .actions {
    justify-content: flex-start;
    margin-top: 36px;
  }

  .hero-system {
    right: max(4vw, calc((100vw - 1380px) / 2));
    bottom: auto;
    top: 58%;
    width: clamp(340px, 26vw, 438px);
    height: clamp(218px, 16vw, 276px);
    transform: translateY(-32%);
  }

  @media (hover: hover) and (pointer: fine) {
    .hero-system:hover {
      transform: translateY(calc(-32% - 5px));
    }
  }

  .system-node {
    min-width: 158px;
  }

  .node-core {
    right: 0;
    top: 70px;
  }

  .node-sync {
    left: 72px;
  }

  .problem-diagnostic .wrap {
    max-width: 1380px;
  }

  .diagnostic-head {
    display: block;
    max-width: none;
    margin-bottom: 54px;
  }

  .diagnostic-head .eyebrow,
  .diagnostic-head h2 {
    grid-column: auto;
  }

  .diagnostic-head p {
    grid-column: auto;
    margin: 28px 0 0;
    max-width: 780px;
  }

  .diagnostic-head h2 {
    max-width: 1180px;
    font-size: clamp(3.15rem, 4.35vw, 4.2rem);
    line-height: 1.02;
  }

  .diagnostic-title-line {
    white-space: nowrap;
  }

  .gap-map {
    border-radius: 10px;
  }

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

  .gap-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    min-height: 212px;
    padding: 32px 30px 30px;
  }

  .gap-code span {
    font-size: 30px;
  }

  .gap-copy h3 {
    font-size: clamp(1.2rem, 1.42vw, 1.52rem);
  }

  .gap-copy p {
    font-size: 16px;
  }

  .gap-row > strong {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-top: 2px;
  }

  .diagnostic-close {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.82fr);
    gap: clamp(54px, 7vw, 96px);
    align-items: center;
    margin-top: 26px;
    padding: 42px 48px;
  }

  .diagnostic-close p {
    margin: 0;
  }

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

  .service-visual-block {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(28px, 2.2vw, 36px);
  }

  .service-visual-copy {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 18px;
    row-gap: 16px;
    min-height: 160px;
    margin-bottom: 24px;
  }

  .service-visual-copy h3 {
    font-size: clamp(1.45rem, 1.75vw, 1.92rem);
  }

  .service-visual-copy p {
    font-size: 1rem;
    max-width: 560px;
  }

  .service-tags {
    grid-column: 2;
  }

  .service-compare {
    margin-top: auto;
    gap: 16px;
  }

  .service-shot-media {
    aspect-ratio: 16 / 9.2;
  }

  .service-shot figcaption {
    padding-top: 12px;
  }

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

  .signal {
    min-height: 150px;
    padding: 32px 32px 32px 58px;
    font-size: clamp(1.08rem, 1.18vw, 1.24rem);
  }

  .dashboard-section {
    grid-template-columns: minmax(0, 1.24fr) minmax(460px, 0.76fr);
    gap: clamp(64px, 7vw, 112px);
  }

  .dashboard-demo {
    max-width: 830px;
  }

  .dashboard-section h2 {
    max-width: 620px;
    font-size: clamp(2.45rem, 3.7vw, 3.8rem);
  }

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

  .timeline {
    gap: 34px;
  }

  .step {
    min-height: 430px;
    padding: 84px 32px 32px;
  }

  .step h3 {
    font-size: clamp(1.35rem, 1.55vw, 1.72rem);
  }

  .step p {
    font-size: 16px;
  }

  .white-cta {
    padding: clamp(96px, 6.8vw, 126px) 0 clamp(90px, 6.2vw, 112px);
  }

  .white-cta .wrap {
    max-width: 1240px;
  }

  .white-cta h2 {
    max-width: 980px;
    font-size: clamp(2.8rem, 4vw, 4.45rem);
  }

  .audit-points {
    max-width: none;
    gap: 24px;
    margin-top: 52px;
  }

  .audit-card {
    min-height: 260px;
    padding: 34px 32px 30px;
  }
}

@media (min-width: 1600px) {
  .wrap,
  .hero-copy {
    width: min(90vw, 1480px);
  }

  .hero-system {
    right: max(5vw, calc((100vw - 1480px) / 2));
  }

  .problem-diagnostic .wrap {
    max-width: 1480px;
  }

  .service-visual-list {
    gap: 32px;
  }

  .dashboard-demo {
    max-width: 900px;
  }
}

@media (max-width: 1180px) {
  .wrap {
    width: min(90vw, 1240px);
  }

  .about-hero-grid,
  .faq-hero-grid,
  .about-split,
  .about-trust,
  .lesson-grid,
  .faq-split {
    grid-template-columns: 1fr;
  }

  .about-stability-card,
  .dependency-panel {
    min-height: 360px;
  }

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

  .faq-split .faq-section-head {
    position: relative;
    top: auto;
    margin-bottom: 0;
  }

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

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

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

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .signal-grid,
  .case-grid,
  .timeline,
  .dashboard-section,
  .expert-grid,
  .portal-grid,
  .client-metrics,
  .trend-grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-person {
    min-height: auto;
  }

  .service-item {
    grid-template-columns: 44px 1fr;
    gap: 20px;
  }

  .service-item .detail {
    grid-column: 2;
    text-align: left;
    align-items: flex-start;
    white-space: normal;
  }

  .service-visual-copy {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .service-tags {
    grid-column: 1 / -1;
  }

  .service-compare {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .case-grid::before {
    display: none;
  }

  .step {
    min-height: auto;
    padding: 78px 26px 26px;
  }

  .badge {
    top: 24px;
    left: 26px;
  }

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

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

  .gap-row {
    grid-template-columns: 72px minmax(0, 1fr) auto;
  }

  .footer-inner,
  .client-title {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-system {
    display: none;
  }

  .reveal-item {
    transform: translate3d(0, 20px, 0);
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(92vw, 1440px);
  }

  .app-shell::after,
  .hero-ambient,
  .hero::after,
  .network {
    display: none;
  }

  .nav.scrolled {
    backdrop-filter: none;
  }

  .wordmark {
    display: block;
    flex-wrap: wrap;
    max-width: 100%;
    row-gap: 0.02em;
    margin-bottom: 24px;
    gap: 0.09em;
    font-size: clamp(2.35rem, 9.2vw, 3.2rem);
    line-height: 0.94;
    text-align: center;
  }

  .wordmark span {
    display: inline-block;
  }

  .wordmark .automation {
    display: block;
    margin-top: 8px;
    font-size: 0.78em;
  }

  .hero {
    padding-top: 116px;
    min-height: 760px;
    height: auto;
    max-height: none;
  }

  .hero-copy {
    width: min(72vw, 280px);
    max-width: 280px;
    padding-bottom: 8px;
    overflow: hidden;
  }

  .hero-copy::before {
    inset: -28px -24px -26px;
    opacity: 0.52;
    filter: none;
  }

  .dot,
  .status-pill::before {
    animation: none;
  }

  .hero-seq {
    transform: translate3d(0, 12px, 0);
  }

  .hero h1:not(.wordmark) {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 26px;
    font-size: clamp(1.18rem, 4.7vw, 1.55rem);
    line-height: 1;
  }

  .hero-line {
    white-space: normal;
  }

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

  .hero .lead {
    max-width: 280px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .mini-lead {
    margin-bottom: 28px;
  }

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

  .btn {
    width: 100%;
  }

  .brand span {
    display: none;
  }

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

  .diagnostic-head {
    margin-bottom: 34px;
  }

  .diagnostic-head h2 {
    font-size: clamp(2.05rem, 9vw, 2.8rem);
  }

  .diagnostic-head p {
    font-size: 1rem;
  }

  .gap-map-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
  }

  .gap-row {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 22px 20px;
  }

  .gap-code {
    align-items: center;
  }

  .gap-row > strong {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .gap-copy {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .gap-copy h3 {
    font-size: 1.12rem;
  }

  .gap-copy p {
    font-size: 14.5px;
  }

  .service-visual-block {
    padding: 24px;
  }

  .service-visual-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-tags {
    grid-column: auto;
  }

  .service-shot figcaption span {
    font-size: 14px;
  }

  .signal {
    min-height: auto;
    padding: 24px 24px 24px 42px;
    font-size: 1rem;
  }

  .signal .dot {
    left: 24px;
    top: 31px;
  }

  .section {
    padding: 76px 0;
  }

  .about-hero {
    min-height: auto;
    padding: 122px 0 78px;
  }

  .faq-hero {
    padding: 122px 0 78px;
  }

  .faq-hero-grid {
    width: min(70vw, 280px);
    overflow: visible;
  }

  .about-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.32rem);
    line-height: 0.98;
  }

  .faq-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.4vw, 1.95rem);
    line-height: 1;
    overflow-wrap: break-word;
    text-wrap: auto;
    white-space: normal;
  }

  .about-hero-copy,
  .about-stability-card,
  .faq-hero-copy,
  .faq-cover-card {
    width: 100%;
    max-width: 100%;
  }

  .about-hero-copy .actions,
  .faq-hero-copy .actions,
  .faq-final .actions {
    width: 100%;
  }

  .about-hero-copy .lead,
  .faq-hero-copy .lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

  .faq-hero .btn.large,
  .faq-final .btn.large {
    min-height: 58px;
    padding: 0 20px;
    font-size: 15px;
  }

  .about-stability-card {
    width: 100%;
    min-height: 320px;
  }

  .about-section,
  .about-final,
  .faq-section,
  .faq-final {
    padding: 76px 0;
  }

  .about-people {
    padding-top: 86px;
    padding-bottom: 88px;
  }

  .about-section-head h2,
  .about-final h2,
  .faq-section-head h2,
  .faq-final h2 {
    font-size: clamp(2.05rem, 9vw, 3rem);
  }

  .faq-section-head {
    margin-bottom: 34px;
  }

  .faq-look-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-look-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .faq-look-card > span {
    margin-bottom: 26px;
  }

  .faq-cover-card {
    width: 100%;
    min-height: auto;
  }

  .faq-cover-list div,
  .question-map-row,
  .faq-cover-card p {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .question-map-card {
    min-height: auto;
  }

  .question-map-card::after {
    width: 160px;
    height: 160px;
    opacity: 0.5;
  }

  .question-map-subtitle {
    max-width: 100%;
    margin: 14px 0 24px;
    font-size: 14px;
  }

  .question-map-row {
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: start;
    min-height: 74px;
    padding: 13px;
  }

  .question-pill {
    grid-column: 2;
    justify-self: start;
  }

  .faq-item summary {
    min-height: 68px;
    padding: 22px 54px 22px 20px;
    font-size: 1rem;
  }

  .faq-item p {
    padding: 0 20px 24px 42px;
    font-size: 0.96rem;
  }

  .about-story {
    padding-left: 20px;
  }

  .lesson-grid,
  .about-card-grid,
  .about-team-grid {
    gap: 16px;
    margin-top: 34px;
  }

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

  .dependency-panel {
    min-height: 360px;
  }

  .dependency-core {
    width: 124px;
    height: 124px;
    font-size: 0.92rem;
  }

  .dependency-panel span {
    font-size: 11px;
    padding: 8px 9px;
  }

  .about-person {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
  }

  .about-person .avatar {
    width: 76px;
    height: 76px;
  }

  #problem {
    padding-bottom: 44px;
  }

  #services {
    padding-top: 56px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .section h2 {
    font-size: clamp(2rem, 8.8vw, 2.85rem);
  }

  .section-head .lead,
  #problem .section-head .lead {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .white-cta {
    padding: 82px 0 78px;
  }

  .white-cta h2 {
    font-size: clamp(2rem, 8.8vw, 2.8rem);
  }

  .audit-points {
    grid-template-columns: 1fr;
  }

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

  .testimonial-grid {
    display: grid;
    max-width: 430px;
    margin: 42px auto 34px;
  }

  .testimonial-grid .testimonial-card {
    grid-area: 1 / 1;
    min-height: 360px;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, 8px, 0);
    transition: none;
  }

  .white-cta.is-visible .testimonial-grid .testimonial-card {
    animation: testimonialRotate 15s cubic-bezier(0.22, 1, 0.36, 1) infinite both;
  }

  .white-cta.is-visible .testimonial-grid .testimonial-card:nth-child(2) {
    animation-delay: 5s;
  }

  .white-cta.is-visible .testimonial-grid .testimonial-card:nth-child(3) {
    animation-delay: 10s;
  }

  .testimonial-card blockquote {
    font-size: 1.08rem;
  }

  .testimonial-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@keyframes testimonialRotate {
  0%,
  5% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  10%,
  30% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  36%,
  100% {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }

  .hero-seq,
  .hero-fade-in,
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .progress-bar span {
    transform: scaleX(var(--progress, 1));
  }

  .app-shell::after,
  .hero-ambient,
  .hero-system {
    display: none;
  }

  .testimonial-grid .testimonial-card {
    animation: none !important;
  }

  .testimonial-grid .testimonial-card:not(:first-child) {
    display: none;
  }
}
