:root {
  color-scheme: light;
  --ink: #090a0c;
  --ink-2: #20242a;
  --muted: #434a54;
  --paper: #ffffff;
  --panel: #f5f6f8;
  --panel-strong: #eef0f3;
  --line: #d6d9de;
  --dark: #08090b;
  --dark-2: #111318;
  --red: #c8102e;
  --red-dark: #970c22;
  --red-soft: #fff1f3;
  --green: #0f6b4f;
  --steel: #e8edf2;
  --shadow: 0 22px 55px rgba(9, 10, 12, 0.12);
  --shadow-soft: 0 16px 42px rgba(9, 10, 12, 0.09);
  --container: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  border: 0;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 1000;
  top: 12px;
  left: 12px;
  margin: 0;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(9, 10, 12, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 78px;
  height: 50px;
  object-fit: contain;
  background: #000;
}

.brand-copy {
  display: grid;
  gap: 1px;
  padding-left: 12px;
  border-left: 2px solid var(--red);
}

.brand-copy strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
}

.brand-copy span {
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.nav-list a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-list a.active::after {
  transform: scaleX(1);
}

.nav-list a:focus-visible,
.button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(200, 16, 46, 0.22);
  outline-offset: 3px;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    color 180ms var(--ease),
    border-color 180ms var(--ease);
}

.nav-cta,
.button-primary {
  color: #fff;
  background: var(--red);
}

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

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-secondary:hover {
  color: var(--red);
  border-color: var(--red);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.button-light:hover {
  color: var(--red);
}

.button::after,
.text-link::after {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.4' d='M5 12h13M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.4' d='M5 12h13M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 180ms var(--ease);
}

.button:hover::after,
.text-link:hover::after {
  transform: translateX(3px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 4px;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 21px;
  height: 2px;
  background: #fff;
}

.home-hero {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
  padding: clamp(58px, 6vw, 76px) 0 50px;
}

.home-hero-copy {
  max-width: 680px;
}

.hero-kicker {
  margin-bottom: 18px !important;
}

.home-hero-copy p strong,
.page-hero-copy p strong {
  color: var(--ink);
  font-weight: 850;
}

h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
}

.home-hero-copy p,
.page-hero-copy p {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.home-hero-media img {
  width: 100%;
  height: min(640px, 70vh);
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.proof-strip {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px 32px;
}

.proof-strip article + article {
  border-left: 1px solid var(--line);
}

.proof-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--red);
}

.proof-icon svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.proof-strip h2 {
  margin-bottom: 6px;
  font-size: 19px;
  line-height: 1.2;
}

.proof-strip p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.section {
  padding: clamp(76px, 9vw, 118px) 0;
}

.section-heading {
  width: var(--container);
  max-width: 820px;
  margin: 0 auto 42px;
}

.section-heading h2,
.split-copy h2,
.cta-copy h2,
.contact-aside h2,
.contact-details h2,
.principles-panel h2,
.legal-copy h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.02;
}

.section-heading p,
.split-copy p,
.cta-copy p,
.contact-aside p,
.contact-details p,
.legal-copy p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.overview-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.overview-card,
.detail-card {
  min-height: 290px;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid var(--line);
  background: #fff;
}

.overview-card:hover,
.detail-card:hover {
  box-shadow: var(--shadow);
}

.card-number,
.service-row > span,
.process-grid article > span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.overview-card h3,
.detail-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
}

.overview-card p,
.detail-card p {
  margin: 0;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--red);
  font-weight: 850;
  text-decoration: none;
}

.cta-band {
  width: var(--container);
  margin: 0 auto clamp(76px, 9vw, 118px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(34px, 5vw, 52px);
  color: #fff;
  background: var(--red);
}

.cta-copy h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}

.page-hero-inner {
  width: var(--container);
  min-height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: center;
  padding: clamp(58px, 6.5vw, 88px) 0;
}

.page-hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.page-hero > .page-hero-copy {
  width: var(--container);
  min-height: 420px;
  margin: 0 auto;
  padding: clamp(62px, 8vw, 92px) 0;
}

.page-hero-copy h1 {
  max-width: 1060px;
  font-size: clamp(42px, 4.6vw, 66px);
}

.page-kicker {
  margin-bottom: 18px !important;
  color: var(--red) !important;
  font-size: 13px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1 !important;
  text-transform: uppercase;
}

.dark-hero {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 16, 46, 0.22), transparent 32%),
    linear-gradient(135deg, #08090b, #151820);
}

.dark-hero h1,
.dark-hero .page-hero-copy p:not(.page-kicker) {
  color: #fff;
}

.dark-hero .page-hero-copy p:not(.page-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.dark-hero .hero-proof-list li {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
}

.page-hero-visual > .screen-panel,
.page-hero-visual > .ai-flow-visual,
.page-hero-visual > .principles-panel,
.page-hero-visual > .contact-aside {
  min-height: 620px;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 62%, rgba(8, 9, 11, 0.72));
  pointer-events: none;
}

.visual-note {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(18px, 2.6vw, 26px) clamp(20px, 3vw, 30px);
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.78) 36%, rgba(8, 9, 11, 0.94));
  backdrop-filter: blur(2px);
}

.visual-note span,
.proof-stat span,
.comparison-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visual-note strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.15;
}

.visual-note p {
  display: none;
}

@media (min-width: 1280px) {
  .visual-note p {
    display: block;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13.5px;
    line-height: 1.55;
  }
}

[data-cursor-card] {
  --pointer-x: 50%;
  --pointer-y: 50%;
  transform-style: preserve-3d;
}


.hero-proof-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-proof-list + .button {
  margin-top: 26px;
}

.hero-proof-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-2);
  font-weight: 750;
}

.hero-proof-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--red);
}

.proof-stat-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-stat {
  min-height: 166px;
  padding: clamp(26px, 4vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.proof-stat p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.volume-section {
  background: linear-gradient(180deg, #fff, var(--panel));
}

.home-stat-row {
  width: var(--container);
  margin: clamp(48px, 6vw, 72px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.home-stat {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(26px, 4vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background 220ms var(--ease);
}

.home-stat:hover {
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 16, 46, 0.06), transparent 60%),
    #fff;
}

.home-stat > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-stat strong span {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.home-stat strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 760;
  line-height: 0.95;
  letter-spacing: -0.012em;
  font-variant-numeric: tabular-nums;
}

.home-stat em {
  color: var(--ink-2);
  font-size: 0.34em;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-stat p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1060px) {
  .home-stat-row {
    grid-template-columns: 1fr;
  }
}

.comparison-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.comparison-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  background: #fff;
}

.comparison-card.is-weak {
  background: var(--panel);
}

.comparison-card h3 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3.2vw, 40px);
  line-height: 1.05;
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-weight: 700;
  line-height: 1.55;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--red);
}

.comparison-card.is-weak li::before {
  background: var(--muted);
}

.comparison-card .text-link {
  margin-top: 22px;
}

.process-map {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.process-node {
  position: relative;
  min-height: 300px;
  padding: 32px;
  background: #fff;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background 180ms var(--ease);
}

.process-node + .process-node {
  border-left: 1px solid var(--line);
}

.process-node::after {
  content: "";
  position: absolute;
  top: 54px;
  right: -16px;
  z-index: 2;
  width: 32px;
  height: 1px;
  background: var(--red);
}

.process-node:last-child::after {
  display: none;
}

.node-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 54px;
  color: var(--red);
  background: var(--red-soft);
}

.node-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-node h2 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.1;
}

.process-node > span:not(.node-icon) {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-node p {
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .process-node[data-cursor-card].is-pointer-active {
    z-index: 3;
    transform: translateY(-6px) scale(1.012);
    background:
      radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(200, 16, 46, 0.12), transparent 34%),
      #fff;
    box-shadow: var(--shadow);
  }
}

.split-section {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.metric-panel,
.principles-panel,
.contact-aside,
.screen-panel {
  border: 1px solid var(--line);
  background: #fff;
}

.metric-panel {
  display: grid;
}

.metric-panel div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.metric-panel div:last-child {
  border-bottom: 0;
}

.metric-panel span {
  color: var(--muted);
  font-weight: 750;
}

.metric-panel strong {
  text-align: right;
}

.detail-section,
.service-list-section {
  background: var(--panel);
}

.detail-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.industry-list {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry-list span {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: #fff;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition:
    border-color 160ms var(--ease),
    box-shadow 160ms var(--ease);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.12);
}

[data-contact-status] {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-weight: 850;
}

.service-list {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  position: relative;
  padding: clamp(28px, 5vw, 48px) clamp(20px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background 180ms var(--ease);
}

.service-row h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.service-row p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
  .service-row[data-cursor-card].is-pointer-active {
    transform: translateY(-6px) scale(1.01);
    background:
      radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(200, 16, 46, 0.14), transparent 32%),
      #fff;
    box-shadow: var(--shadow-soft);
  }
}

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

.process-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #fff;
}

.process-grid article {
  min-height: 330px;
  padding: 32px;
}

.process-grid article + article {
  border-left: 1px solid var(--line);
}

.process-grid h2 {
  margin: 84px 0 14px;
  font-size: 26px;
  line-height: 1.1;
}

.process-grid p {
  margin: 0;
}

.ai-flow-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  gap: 24px;
  min-height: 520px;
  padding: clamp(24px, 4vw, 34px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(200, 16, 46, 0.24), transparent 28%),
    radial-gradient(circle at 18% 0%, rgba(200, 16, 46, 0.34), transparent 30%),
    linear-gradient(145deg, #090a0c, #151820);
  box-shadow: var(--shadow);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.live-indicator {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.55);
  animation: live-pulse 1.8s var(--ease) infinite;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(200, 16, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0);
  }
}

.ai-funnel {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: stretch;
  gap: 0;
  padding: 18px 0 6px;
}

.funnel-stage {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.stage-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.candidate-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}

.candidate-grid span {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  animation: candidate-flicker 2.6s linear infinite;
}

.candidate-grid span:nth-child(3n) { animation-delay: -0.4s; background: rgba(255, 255, 255, 0.32); }
.candidate-grid span:nth-child(4n) { animation-delay: -0.9s; }
.candidate-grid span:nth-child(5n) { animation-delay: -1.4s; background: rgba(200, 16, 46, 0.55); }
.candidate-grid span:nth-child(7n) { animation-delay: -2.0s; }

@keyframes candidate-flicker {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.stage-count {
  display: grid;
  gap: 2px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stage-count strong {
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stage-count span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.funnel-connector {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
}

.connector-track {
  position: relative;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(200, 16, 46, 0.7), rgba(255, 255, 255, 0.05));
  overflow: visible;
}

.connector-pulse {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 14px rgba(200, 16, 46, 0.85);
  animation: connector-travel 2.8s var(--ease) infinite;
}

.connector-pulse.pulse-b { animation-delay: -0.95s; }
.connector-pulse.pulse-c { animation-delay: -1.9s; }

@keyframes connector-travel {
  0% { transform: translateX(-4px); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(calc(100% - 4px)); opacity: 0; }
}

.connector-caption {
  position: absolute;
  top: calc(50% + 14px);
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ring-meter {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 150px;
  margin: 0 auto;
}

.ring-meter svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 6;
}

.ring-progress {
  fill: none;
  stroke: var(--red);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 238.76;
  stroke-dashoffset: 238.76;
  transition: stroke-dashoffset 1600ms var(--ease);
  filter: drop-shadow(0 0 6px rgba(200, 16, 46, 0.55));
}

.ring-center {
  position: absolute;
  display: grid;
  gap: 2px;
  text-align: center;
}

.ring-center strong {
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ring-center span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage-meta {
  margin-top: auto;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shortlist-stack {
  display: grid;
  gap: 6px;
}

.shortlist-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease);
}

.shortlist-card:nth-child(1) { animation: shortlist-rise 4.4s var(--ease) infinite; }
.shortlist-card:nth-child(2) { animation: shortlist-rise 4.4s var(--ease) -1.4s infinite; }
.shortlist-card:nth-child(3) { animation: shortlist-rise 4.4s var(--ease) -2.8s infinite; }

@keyframes shortlist-rise {
  0%, 100% { transform: translateY(0); border-color: rgba(255, 255, 255, 0.14); }
  35% { transform: translateY(-2px); border-color: rgba(200, 16, 46, 0.45); }
  60% { transform: translateY(0); }
}

.shortlist-card span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shortlist-card strong {
  color: #fff;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.capacity-section {
  background: linear-gradient(180deg, var(--panel) 0%, #fff 100%);
}

.human-edge-section {
  background: linear-gradient(180deg, #fff 0%, var(--panel) 100%);
}

.division-band {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 4vw, 40px);
}

.division-band .section-heading {
  margin: 0;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.division-grid > div {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 168px;
  padding: clamp(22px, 3vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.division-grid > div:nth-child(4) {
  background: var(--ink);
  color: #fff;
}

.division-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.division-grid > div:nth-child(4) span {
  color: #fff;
  opacity: 0.7;
}

.division-grid strong {
  color: var(--ink);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 760;
  line-height: 1.25;
}

.division-grid > div:nth-child(4) strong {
  color: #fff;
}

@media (max-width: 1060px) {
  .division-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .division-grid {
    grid-template-columns: 1fr;
  }
}

.capacity-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.capacity-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.capacity-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 16, 46, 0.4);
  box-shadow: var(--shadow-soft);
}

.capacity-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.capacity-number {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 760;
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.capacity-number span {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.capacity-number em {
  color: var(--ink-2);
  font-size: 0.42em;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.capacity-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 1060px) {
  .ai-funnel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .funnel-connector {
    height: 56px;
  }

  .connector-track {
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(200, 16, 46, 0.7), rgba(255, 255, 255, 0.05));
  }

  .connector-pulse {
    top: 0;
    left: -3px;
    animation-name: connector-travel-v;
  }

  @keyframes connector-travel-v {
    0% { transform: translateY(-4px); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(calc(100% - 4px)); opacity: 0; }
  }

  .connector-caption {
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
  }

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

@media (max-width: 720px) {
  .capacity-grid {
    grid-template-columns: 1fr;
  }
}

.ai-flow-visual.is-pointer-active {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.ai-flow-header span,
.ai-flow-grid span,
.lane-label {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.ai-flow-header span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ai-flow-header strong {
  display: block;
  max-width: 460px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.screening-lanes {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(255, 255, 255, 0.06) 69px 70px);
}

.screening-lanes::before,
.screening-lanes::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(200, 16, 46, 0.86), rgba(255, 255, 255, 0.2));
}

.screening-lanes::after {
  top: calc(50% + 32px);
  opacity: 0.48;
}

.lane-dot {
  position: absolute;
  top: calc(50% - 7px);
  left: 7%;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.08),
    0 0 26px rgba(200, 16, 46, 0.72);
  animation: lane-travel 5.8s var(--ease) infinite;
}

.dot-two {
  top: calc(50% + 25px);
  animation-delay: -1.4s;
}

.dot-three {
  animation-delay: -2.8s;
}

.dot-four {
  top: calc(50% + 25px);
  animation-delay: -4.1s;
}

.lane-label {
  position: absolute;
  bottom: 18px;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lane-label-left {
  left: 18px;
}

.lane-label-mid {
  left: 50%;
  transform: translateX(-50%);
}

.lane-label-right {
  right: 18px;
  text-align: right;
}

.ai-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.ai-flow-grid div {
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ai-flow-grid span {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ai-flow-grid strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.22;
}

@keyframes lane-travel {
  0% {
    transform: translateX(0) scale(0.82);
    opacity: 0;
  }

  12%,
  78% {
    opacity: 1;
  }

  100% {
    transform: translateX(min(510px, 72vw)) scale(1);
    opacity: 0;
  }
}

.screen-panel {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 16, 46, 0.34), transparent 30%),
    linear-gradient(145deg, #090a0c, #151820);
  box-shadow: var(--shadow);
}

.screen-panel-top,
.screen-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.screen-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

.score-layout {
  display: grid;
  place-items: center;
  min-height: 210px;
  text-align: center;
}

.score-layout strong {
  color: #fff;
  font-size: 82px;
  line-height: 0.9;
}

.score-layout span {
  display: block;
  margin-top: 10px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--red);
}

.principles-panel,
.contact-aside,
.contact-details {
  padding: clamp(28px, 4vw, 42px);
}

.principles-panel h2,
.contact-aside h2,
.contact-details h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.contact-details {
  display: grid;
  gap: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-method {
  display: grid;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-method span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-method p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.contact-aside a,
.contact-details a,
.legal-copy a {
  color: var(--red);
  font-weight: 850;
}

.legal-section {
  background: var(--panel);
}

.legal-copy {
  width: min(880px, calc(100vw - 48px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  background: #fff;
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: clamp(26px, 3vw, 36px);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  max-width: none;
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 5% 0%, rgba(200, 16, 46, 0.14), transparent 28%),
    var(--dark);
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 48px;
  padding: 58px 0;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy span {
  color: #fff;
}

.footer-intro p {
  max-width: 330px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  text-decoration: none;
}

.footer-grid a:not(.brand):hover,
.footer-grid a:not(.brand):focus-visible {
  color: #fff;
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 650;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
}

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

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

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

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

@media (max-width: 1060px) {
  .nav-shell {
    min-height: 70px;
  }

  .nav-toggle {
    display: grid;
  }

  .primary-menu {
    position: fixed;
    z-index: 90;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    min-height: calc(100vh - 70px);
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px 24px 40px;
    overflow: auto;
    background: #fff;
    box-shadow: 0 24px 60px rgba(9, 10, 12, 0.12);
  }

  .primary-menu.is-open {
    display: flex;
  }

  .nav-list {
    display: grid;
    width: 100%;
  }

  .nav-list li {
    border-bottom: 1px solid var(--line);
  }

  .nav-list a {
    min-height: 60px;
    padding: 0;
    font-size: 20px;
  }

  .nav-list a::after {
    right: auto;
    bottom: 0;
    left: 0;
    width: 42px;
  }

  .nav-cta {
    width: 100%;
  }

  .home-hero,
  .split-section,
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

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

  .home-hero-media img {
    height: 500px;
    min-height: 0;
  }

  .proof-strip,
  .overview-grid,
  .detail-grid,
  .process-grid,
  .process-map,
  .proof-stat-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip article:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .process-node:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-node:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .process-node:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .brand-logo {
    width: 70px;
    height: 46px;
  }

  .brand-copy span {
    display: none;
  }

  .home-hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .page-hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .home-hero-copy p,
  .page-hero-copy p {
    font-size: 17px;
  }

  .action-row,
  .action-row .button,
  .cta-band .button {
    width: 100%;
  }

  .home-hero-media::before {
    display: none;
  }

  .home-hero-media img {
    height: 360px;
  }

  .proof-strip,
  .overview-grid,
  .detail-grid,
  .industry-list,
  .process-grid,
  .process-map,
  .proof-stat-grid,
  .comparison-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip article,
  .proof-strip article:nth-child(3),
  .process-grid article + article,
  .process-grid article:nth-child(3),
  .process-grid article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-strip article:first-child {
    border-top: 0;
  }

  .page-hero:not(.dark-hero) {
    background: #fff;
  }

  .page-hero-inner,
  .page-hero > .page-hero-copy {
    min-height: auto;
    padding: 68px 0;
  }

  .page-hero-inner {
    gap: 28px;
  }

  .page-hero-visual,
  .ai-flow-visual,
  .hero-image-frame,
  .hero-image-frame img {
    min-height: 340px;
  }

  .ai-flow-grid {
    grid-template-columns: 1fr;
  }

  .screening-lanes {
    min-height: 160px;
  }

  .lane-label {
    max-width: 34%;
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .visual-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -1px;
    background: var(--dark);
  }

  .cta-band,
  .footer-bottom,
  .metric-panel div,
  .screen-panel-top,
  .screen-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-grid article {
    min-height: auto;
  }

  .process-grid h2 {
    margin-top: 44px;
  }

  .process-node {
    min-height: auto;
    border-left: 0 !important;
  }

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

  .process-node::after {
    display: none;
  }

  .node-icon {
    margin-bottom: 34px;
  }

  .legal-copy {
    width: var(--container);
    padding: 28px;
  }
}
