:root {
  --bg: #f7f3ed;
  --bg-soft: #ede8df;
  --ink: #050505;
  --muted: #77716d;
  --line: #d8d2ca;
  --card: #fffdfa;
  --orange: #e5653d;
  --orange-dark: #c75231;
  --gold: #f3bd34;
  --shadow: 0 20px 44px rgba(48, 32, 21, 0.12);
  --shadow-soft: 0 10px 24px rgba(48, 32, 21, 0.08);
  --radius: 8px;
  --wrap: min(1080px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.section-pad {
  padding: 120px 0;
}

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

#services,
#screening-standard,
#case-studies,
#contact,
.trust-cinema {
  scroll-margin-top: 120px;
}

.site-header {
  position: sticky;
  top: 22px;
  z-index: 20;
  width: var(--wrap);
  margin: 0 auto;
  padding-top: 8px;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 0 16px 0 24px;
  border: 1px solid rgba(232, 101, 61, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 14px 32px rgba(89, 48, 28, 0.12);
  backdrop-filter: blur(22px);
}

.brand img {
  width: 132px;
  height: auto;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.5vw, 34px);
}

.nav-links a {
  color: #16110f;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  transform: translateY(-1px);
}

.nav-actions {
  gap: 8px;
  margin-left: 22px;
}

.menu-toggle {
  display: none;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn-small {
  min-height: 32px;
  padding: 0 16px;
  font-size: 11px;
}

.btn span {
  transition: transform 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn:hover span {
  transform: translate(2px, -1px);
}

.btn-orange {
  background: var(--orange);
  color: white;
}

.btn-dark {
  background: #020202;
  color: white;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
}

.hero {
  position: relative;
  padding-top: 104px;
  padding-bottom: 110px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(229, 101, 61, 0.18) 0%, #14100d 45%, #0d0b09 100%);
}

.hero-video-layer,
.hero-video-bg,
.hero-video-overlay,
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-video-layer {
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1400ms ease;
}

.hero-video-bg.is-active {
  opacity: 1;
}

.hero-video-overlay {
  z-index: 1;
  background: rgba(0, 0, 0, 0.48);
}

.hero-canvas {
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
}

.hero > .wrap {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #ffffff;
}

.hero h1 em {
  color: var(--orange);
  font-style: italic;
}

.hero .hero-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

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

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

h1 {
  margin-bottom: 44px;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 720;
  letter-spacing: 0;
}

h1 em,
h2 em,
.footer-lead em {
  color: var(--orange);
  font-style: italic;
  font-weight: 520;
}

.mobile-break {
  display: inline;
}

.hero-copy p {
  max-width: 680px;
  margin-bottom: 64px;
  color: var(--muted);
  font-size: clamp(19px, 2.35vw, 31px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.talent-motion {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(229, 101, 61, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(260px 220px at 72% 18%, rgba(229, 101, 61, 0.28), transparent 68%),
    radial-gradient(220px 220px at 12% 82%, rgba(8, 8, 8, 0.1), transparent 68%),
    linear-gradient(145deg, #fffdf8 0%, #ece6dc 100%);
  box-shadow: 0 28px 72px rgba(59, 37, 20, 0.16);
  overflow: hidden;
  isolation: isolate;
}

.talent-motion::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    linear-gradient(115deg, transparent 0 43%, rgba(255, 255, 255, 0.5) 47%, transparent 53% 100%);
  animation: scanSweep 6s ease-in-out infinite;
  opacity: 0.7;
}

.motion-grid {
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(5, 5, 5, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.motion-ring,
.motion-line,
.motion-node,
.motion-pulse {
  position: absolute;
}

.motion-ring {
  inset: 16%;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 50%;
}

.ring-one {
  animation: orbitBreath 5.2s ease-in-out infinite;
}

.ring-two {
  inset: 27%;
  border-color: rgba(229, 101, 61, 0.34);
  animation: orbitBreath 5.2s ease-in-out -1.8s infinite;
}

.motion-line {
  left: 50%;
  top: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, rgba(229, 101, 61, 0), rgba(229, 101, 61, 0.64), rgba(5, 5, 5, 0));
  transform-origin: left center;
  animation: signalRotate 7s linear infinite;
}

.line-two {
  animation-duration: 9s;
  animation-direction: reverse;
  animation-delay: -1.5s;
}

.line-three {
  animation-duration: 12s;
  animation-delay: -3s;
}

.motion-node {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #020202;
  color: white;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(5, 5, 5, 0.18);
  animation: nodeFloat 4.8s ease-in-out infinite;
}

.node-core {
  left: calc(50% - 36px);
  top: calc(50% - 36px);
  width: 72px;
  height: 72px;
  background: var(--orange);
  font-size: 15px;
  animation: corePulse 3s ease-in-out infinite;
}

.node-engineer {
  left: 12%;
  top: 18%;
}

.node-data {
  right: 8%;
  top: 28%;
  animation-delay: -0.8s;
}

.node-product {
  left: 18%;
  bottom: 16%;
  animation-delay: -1.6s;
}

.node-design {
  right: 18%;
  bottom: 12%;
  animation-delay: -2.4s;
}

.motion-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(229, 101, 61, 0.36);
  animation: pulseDot 2.8s ease-out infinite;
}

.pulse-one {
  left: 28%;
  top: 34%;
}

.pulse-two {
  right: 30%;
  bottom: 28%;
  animation-delay: -1.4s;
}

.motion-card,
.motion-footer {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 18px 36px rgba(33, 22, 14, 0.12);
  backdrop-filter: blur(18px);
}

.motion-card {
  width: min(210px, 48%);
  padding: 18px;
}

.motion-card span,
.motion-footer span {
  display: block;
  color: #746e69;
  font-size: 11px;
  font-weight: 750;
}

.motion-card strong {
  display: block;
  margin: 8px 0;
  font-size: 36px;
  line-height: 1;
}

.motion-card small {
  display: block;
  color: #746e69;
  font-size: 11px;
  line-height: 1.35;
}

.match-card {
  left: 22px;
  top: 24px;
}

.queue-card {
  right: 22px;
  bottom: 86px;
}

.motion-footer {
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
}

.motion-footer div {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 28px;
}

.motion-footer i {
  display: block;
  width: 9px;
  border-radius: 999px;
  background: var(--orange);
  animation: barDance 1.4s ease-in-out infinite;
}

.motion-footer i:nth-child(1) { height: 9px; }
.motion-footer i:nth-child(2) { height: 18px; animation-delay: -0.2s; }
.motion-footer i:nth-child(3) { height: 26px; animation-delay: -0.4s; }
.motion-footer i:nth-child(4) { height: 15px; animation-delay: -0.6s; }
.motion-footer i:nth-child(5) { height: 22px; animation-delay: -0.8s; }

.pipeline-motion {
  position: relative;
  min-height: 500px;
  padding: 28px;
  border: 1px solid rgba(229, 101, 61, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(320px 240px at 86% 12%, rgba(229, 101, 61, 0.22), transparent 70%),
    radial-gradient(260px 240px at 10% 92%, rgba(5, 5, 5, 0.1), transparent 72%),
    linear-gradient(145deg, #fffdf8 0%, #ece7df 100%);
  box-shadow: 0 28px 72px rgba(59, 37, 20, 0.16);
  overflow: hidden;
  isolation: isolate;
}

.pipeline-motion::before {
  content: "";
  position: absolute;
  inset: 78px 24px 96px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(5, 5, 5, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
  opacity: 0.76;
}

.pipeline-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.pipeline-header span {
  color: #746e69;
  font-size: 12px;
  font-weight: 780;
}

.pipeline-header strong {
  padding: 8px 12px;
  border-radius: 999px;
  background: #020202;
  color: white;
  font-size: 12px;
}

.pipeline-track {
  position: relative;
  z-index: 1;
  height: 300px;
  overflow: visible;
}

.pipeline-rail {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 47%;
  height: 3px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.14);
  overflow: hidden;
}

.pipeline-rail::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: railSweep 4.8s ease-in-out infinite;
}

.pipeline-step {
  position: absolute;
  z-index: 3;
  top: calc(47% - 26px);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fffdf9;
  border: 1px solid rgba(5, 5, 5, 0.12);
  box-shadow: 0 14px 30px rgba(57, 37, 23, 0.1);
}

.pipeline-step b {
  color: var(--orange);
  font-size: 11px;
}

.pipeline-step span {
  position: absolute;
  top: 68px;
  color: #6f6964;
  font-size: 10px;
  font-weight: 760;
  white-space: nowrap;
}

.step-one { left: 1%; }
.step-two { left: 24%; }
.step-three { left: 48%; }
.step-four { left: 64%; }
.step-five { right: 0; background: var(--orange); color: white; }
.step-five b { color: white; }

.candidate-card {
  position: absolute;
  z-index: 2;
  width: min(235px, 56%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 18px 38px rgba(33, 22, 14, 0.14);
  backdrop-filter: blur(8px);
  opacity: 0.78;
  -webkit-backdrop-filter: blur(8px);
  animation: cardDrift 7s ease-in-out infinite;
}

.candidate-card small,
.candidate-card span {
  display: block;
  color: #756f6a;
  font-size: 11px;
  line-height: 1.35;
}

.candidate-card strong {
  display: block;
  margin: 7px 0 12px;
  font-size: 16px;
  line-height: 1.18;
}

.candidate-card span {
  display: inline-block;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(229, 101, 61, 0.12);
  color: var(--orange);
  font-weight: 800;
}

.card-platform {
  left: 6%;
  top: 7%;
  z-index: 5;
  animation: cardPlatformLift 8s ease-in-out infinite;
}

.card-data {
  right: 6%;
  top: 13%;
  z-index: 3;
  animation: cardDataLift 8s ease-in-out -1.8s infinite;
}

.card-product {
  left: 29%;
  bottom: 12%;
  z-index: 2;
  animation: cardProductLift 8s ease-in-out -3.4s infinite;
}

.pipeline-proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pipeline-proof div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(229, 101, 61, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 8px 24px rgba(33, 22, 14, 0.14);
}

.pipeline-proof strong,
.pipeline-proof span {
  display: block;
}

.pipeline-proof strong {
  margin-bottom: 8px;
  color: #050505;
  font-size: 25px;
  line-height: 1;
}

.pipeline-proof span {
  color: #746e69;
  font-size: 10px;
  font-weight: 720;
  line-height: 1.3;
}

.hero-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.95fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 124px;
}

.hero-proof-clean {
  grid-template-columns: minmax(280px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(229, 101, 61, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-proof-intro {
  max-width: 620px;
}

.hero-proof-intro .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof-intro .eyebrow::before {
  content: "";
  width: 38px;
  height: 8px;
  background:
    radial-gradient(circle at 4px 4px, var(--orange) 0 4px, transparent 4.5px),
    radial-gradient(circle at 19px 4px, #21c7c5 0 4px, transparent 4.5px),
    radial-gradient(circle at 34px 4px, #2477ff 0 4px, transparent 4.5px);
}

.hero-proof-intro h2 {
  max-width: 540px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-proof-intro p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
}

.hero-signal-board {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 14%, rgba(229, 101, 61, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(242, 238, 231, 0.94));
  color: #07111f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.hero-signal-board::before {
  content: "";
  position: absolute;
  inset: 26px 28px auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.08), transparent);
}

.signal-board-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.signal-board-top span,
.signal-board-footer span,
.signal-board-grid small {
  color: #7b8494;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-board-top strong {
  padding: 10px 14px;
  border-radius: 999px;
  background: #050b16;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

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

.signal-board-grid article {
  min-height: 174px;
  padding: 18px;
  border: 1px solid rgba(7, 17, 31, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56));
  box-shadow: 0 14px 36px rgba(31, 43, 56, 0.08);
}

.signal-board-grid small,
.signal-board-grid strong,
.signal-board-grid span {
  display: block;
}

.signal-board-grid strong {
  margin: 42px 0 10px;
  color: #07111f;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.05;
}

.signal-board-grid span {
  color: #687385;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.38;
}

.signal-board-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #07111f;
  color: #fff;
}

.signal-board-footer span {
  color: rgba(255, 255, 255, 0.58);
}

.signal-board-footer b {
  max-width: 360px;
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}

.screening-showcase {
  position: relative;
  scroll-margin-top: 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(36, 119, 255, 0.08), transparent 28%),
    radial-gradient(circle at 10% 82%, rgba(33, 199, 197, 0.12), transparent 30%),
    #eef4f6;
  color: #07111f;
}

.screening-showcase-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  min-height: 720px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 119, 255, 0.07), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 250, 0.88));
  box-shadow: 0 28px 86px rgba(38, 56, 78, 0.1);
}

.screening-showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #667085;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.screening-showcase-eyebrow::before {
  content: "";
  flex: 0 0 40px;
  width: 40px;
  height: 8px;
  background:
    radial-gradient(circle at 4px 4px, var(--orange) 0 4px, transparent 4.5px),
    radial-gradient(circle at 20px 4px, #21c7c5 0 4px, transparent 4.5px),
    radial-gradient(circle at 36px 4px, #2477ff 0 4px, transparent 4.5px);
}

.screening-showcase h2 {
  margin: 0;
  max-width: 610px;
  color: #07111f;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.screening-showcase h2 em {
  color: #2477ff;
  font-style: italic;
}

.screening-showcase-copy > p {
  max-width: 540px;
  margin: 28px 0 0;
  color: #667085;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.screening-showcase-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin-top: 32px;
}

.screening-showcase-signals span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(7, 17, 31, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #344054;
  font-size: 13px;
  font-weight: 760;
}

.screening-showcase-signals span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #21c7c5;
}

.screening-showcase-note {
  width: min(100%, 520px);
  margin-top: 54px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(38, 56, 78, 0.08);
}

.screening-showcase-note > strong {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #2477ff;
  color: white;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(36, 119, 255, 0.22);
}

.screening-showcase-note b {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.screening-showcase-note span {
  display: block;
  color: #667085;
  font-size: 14px;
  line-height: 1.45;
}

.screening-showcase-visual-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}

.screening-showcase-visual-wrap::before {
  content: "";
  position: absolute;
  inset: 12% -10% 4% 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(36, 119, 255, 0.13), transparent 65%);
  filter: blur(10px);
}

.screening-motion-visual {
  position: relative;
  isolation: isolate;
  width: min(100%, 560px);
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(237, 246, 249, 0.92)),
    url("./assets/screening-workspace-bg.jpg") center / cover;
  box-shadow: 0 26px 80px rgba(38, 56, 78, 0.14);
}

.screening-motion-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 72% 12%, rgba(36, 119, 255, 0.16), transparent 34%);
}

.screening-motion-header {
  position: absolute;
  inset: 24px 24px auto;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.screening-motion-dots {
  display: flex;
  gap: 8px;
}

.screening-motion-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.screening-motion-dots i:nth-child(1) { background: #21c7c5; }
.screening-motion-dots i:nth-child(2) { background: #2477ff; }
.screening-motion-dots i:nth-child(3) { background: var(--orange); }

.screening-motion-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #07111f;
  color: white;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.screening-motion-grid {
  position: absolute;
  inset: 80px 34px 158px;
  opacity: 0.2;
  background:
    linear-gradient(rgba(36, 119, 255, 0.14) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(90deg, rgba(36, 119, 255, 0.14) 1px, transparent 1px) 0 0 / 46px 46px;
  mask-image: linear-gradient(180deg, transparent, black 14%, black 72%, transparent);
}

.screening-motion-stack {
  position: absolute;
  left: 50%;
  top: 148px;
  z-index: 3;
  width: min(86%, 460px);
  height: 246px;
  transform: translateX(-50%);
}

.screening-motion-profile {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #07111f;
  box-shadow: 0 18px 42px rgba(38, 56, 78, 0.12);
  backdrop-filter: blur(18px);
  transition:
    transform 980ms cubic-bezier(.18, .88, .24, 1),
    opacity 980ms ease,
    filter 980ms ease;
  will-change: transform, opacity, filter;
}

.screening-motion-profile[data-pos="0"] {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  filter: blur(0);
  z-index: 4;
}

.screening-motion-profile[data-pos="1"] {
  opacity: 0.44;
  transform: translate(-50%, 90px) scale(.91);
  filter: blur(.2px);
  z-index: 3;
}

.screening-motion-profile[data-pos="2"] {
  opacity: 0.16;
  transform: translate(-50%, 146px) scale(.76);
  filter: blur(1.3px);
  z-index: 2;
}

.screening-motion-profile[data-pos="3"] {
  opacity: 0.05;
  transform: translate(-50%, 184px) scale(.62);
  filter: blur(2px);
  z-index: 1;
}

.screening-motion-profile.is-cycling-out {
  z-index: 5;
  animation: screeningFrontToBack 980ms cubic-bezier(.24, .78, .25, 1);
}

.screening-motion-profile.is-cycling-out.is-behind {
  z-index: 1;
}

.screening-motion-avatar {
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 999px;
  background: #2477ff;
  box-shadow: 0 0 0 1px rgba(7, 17, 31, 0.08), 0 10px 22px rgba(38, 56, 78, 0.16);
}

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

.screening-motion-main {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.screening-motion-role-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #667085;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.screening-motion-mini-dots {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 7px;
  width: 43px;
}

.screening-motion-mini-dots i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.screening-motion-mini-dots i:nth-child(1) { background: var(--orange); }
.screening-motion-mini-dots i:nth-child(2) { background: #21c7c5; }
.screening-motion-mini-dots i:nth-child(3) { background: #2477ff; }

.screening-motion-role {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.screening-motion-title {
  display: block;
  color: #07111f;
  font-size: 23px;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.screening-motion-sub {
  display: block;
  overflow: hidden;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.screening-motion-status {
  flex: 0 0 auto;
  min-width: 72px;
  min-height: 48px;
  display: grid;
  place-items: center;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(36, 119, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #eef4ff, rgba(255, 255, 255, 0.86));
  color: #1d4ed8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.screening-motion-status b,
.screening-motion-status span {
  display: block;
  line-height: 1;
}

.screening-motion-status b {
  color: #07111f;
  font-size: 19px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.screening-motion-status span {
  margin-top: 4px;
  color: #667085;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screening-motion-counter {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 4;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.screening-motion-digits {
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.screening-motion-digit {
  position: relative;
  width: 72px;
  height: 88px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(169, 178, 193, 0.5) 48%, rgba(47, 60, 78, 0.48) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -22px 36px rgba(7, 17, 31, 0.16),
    0 18px 36px rgba(38, 56, 78, 0.18);
  backdrop-filter: blur(18px) saturate(1.12);
}

.screening-motion-digit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 16%, rgba(255, 255, 255, 0.48), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 52%);
  pointer-events: none;
}

.screening-motion-digit-value {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 56px;
  font-weight: 420;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 2px 16px rgba(7, 17, 31, 0.28);
  transform: translateY(-1px);
}

.screening-motion-digit.is-updating .screening-motion-digit-value {
  animation: screeningDigitTick 460ms cubic-bezier(.2, .82, .25, 1);
}

.screening-motion-counter strong {
  display: block;
  color: #07111f;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.screening-motion-counter > div:last-child > span {
  display: block;
  margin-top: 4px;
  color: #667085;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes screeningFrontToBack {
  0% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    filter: blur(0);
  }
  38% {
    opacity: 0.7;
    transform: translate(-50%, -52px) scale(.94);
    filter: blur(.3px);
  }
  66% {
    opacity: 0.26;
    transform: translate(-50%, 90px) scale(.78);
    filter: blur(1.2px);
  }
  100% {
    opacity: 0.05;
    transform: translate(-50%, 184px) scale(.62);
    filter: blur(2px);
  }
}

@keyframes screeningDigitTick {
  0% {
    opacity: 0.35;
    transform: translateY(7px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(-1px) scale(1);
  }
}

.home-cinema {
  position: relative;
  z-index: 1;
  padding: 54px 0 0;
  overflow: clip;
  background:
    radial-gradient(circle at 88% 6%, rgba(229, 101, 61, 0.18), transparent 30rem),
    radial-gradient(circle at 12% 22%, rgba(35, 199, 197, 0.11), transparent 28rem),
    #101010;
  color: white;
}

.home-cinema-scroll-rail {
  --story-progress: 0;
  position: fixed;
  top: 50%;
  right: clamp(18px, 3vw, 48px);
  z-index: 18;
  width: 8px;
  height: 188px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 18px 48px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

.home-cinema.is-story-active .home-cinema-scroll-rail {
  opacity: 1;
}

.home-cinema-scroll-rail span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 8px;
  height: 62px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, calc(var(--story-progress) * 110px));
}

.home-cinema-strip {
  width: min(1500px, calc(100vw - 64px));
  min-height: 330vh;
  margin: 0 auto;
  position: relative;
}

.home-cinema-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 96px 0 44px;
}

.home-cinema-frame {
  position: relative;
  width: 100%;
  min-height: min(760px, calc(100vh - 122px));
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(520px, 1.1fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 42px;
  padding: clamp(34px, 5vw, 76px);
  background:
    radial-gradient(circle at 82% 18%, rgba(229, 101, 61, 0.16), transparent 24rem),
    linear-gradient(120deg, rgba(30, 43, 44, 0.96), rgba(37, 37, 37, 0.98) 48%, rgba(50, 38, 34, 0.96));
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.35);
}

.home-cinema-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 52%),
    radial-gradient(circle at 56% 88%, rgba(255, 255, 255, 0.08), transparent 24rem);
}

.home-cinema-copy,
.home-cinema-visual {
  position: relative;
  z-index: 1;
}

.home-cinema-copy {
  min-height: 0;
  display: grid;
  align-content: center;
}

.home-cinema-kicker {
  margin: 0 0 24px;
  color: #8790a0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-cinema h2 {
  margin: 0;
  max-width: 650px;
  color: #fff;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 0.96;
  letter-spacing: 0;
}

.home-cinema h2 em {
  color: var(--orange);
  font-style: italic;
}

.home-cinema-copy > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.45;
}

.home-cinema-meta {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-top: 32px;
}

.home-cinema-meta strong,
.home-cinema-meta span {
  display: block;
}

.home-cinema-meta strong {
  color: #fff;
  font-size: clamp(52px, 5vw, 70px);
  line-height: 0.88;
  letter-spacing: 0;
}

.home-cinema-meta span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 850;
}

.home-cinema-progress {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.home-cinema-progress span {
  width: 9px;
  height: 9px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.home-cinema-progress span.is-active {
  width: 44px;
  background: #fff;
}

.home-cinema-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.home-cinema-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
}

.home-cinema-tags span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #2ec6c8;
}

.home-cinema-visual {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: #dce7ea;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.home-cinema-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.02);
  transition: opacity 520ms ease, transform 780ms ease;
}

.home-cinema-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 249, 250, 0.5), rgba(238, 246, 248, 0.9)),
    radial-gradient(circle at 70% 12%, rgba(44, 126, 247, 0.16), transparent 32rem);
}

.home-cinema-topbar {
  position: absolute;
  left: 44px;
  right: 44px;
  top: 44px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.home-cinema-dots {
  display: inline-flex;
  gap: 11px;
}

.home-cinema-dots i {
  width: 13px;
  height: 13px;
  border-radius: 999px;
}

.home-cinema-dots i:nth-child(1) { background: #2ec6c8; }
.home-cinema-dots i:nth-child(2) { background: #2c7ef7; }
.home-cinema-dots i:nth-child(3) { background: var(--orange); }

.home-cinema-topbar strong {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: #071120;
  color: white;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.home-cinema-stage {
  position: absolute;
  inset: 96px 42px 34px;
  z-index: 4;
  opacity: 1;
  transition: opacity 240ms ease, transform 360ms ease;
}

.home-cinema-stage.is-fading {
  opacity: 0;
  transform: translateY(8px) scale(0.99);
}

.home-artifact-panel {
  width: min(100%, 760px);
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.96fr 0.86fr;
  gap: 18px;
}

.home-artifact-hero,
.home-artifact-tile,
.home-path-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 70px rgba(7, 17, 32, 0.16);
  backdrop-filter: blur(22px) saturate(130%);
}

.home-artifact-hero {
  min-height: 520px;
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.04), rgba(7, 17, 32, 0.76)),
    radial-gradient(circle at 28% 12%, rgba(229, 101, 61, 0.18), transparent 13rem),
    linear-gradient(135deg, #fbf4e8, #fff 42%, #e9eef5);
}

.home-artifact-doc {
  position: absolute;
  inset: 26px 28px 124px;
  border-radius: 22px;
  padding: 22px;
  color: #071120;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 28px 74px rgba(7, 17, 32, 0.18);
  transform: rotate(-2deg);
}

.home-artifact-doc::before {
  content: none;
}

.home-artifact-doc::after {
  content: "SIGNED";
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 8px 11px;
  border: 2px solid rgba(229, 101, 61, 0.44);
  border-radius: 999px;
  color: rgba(229, 101, 61, 0.74);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  transform: rotate(-8deg);
}

.home-doc-title small,
.home-doc-title b,
.home-doc-meta span,
.home-doc-meta strong,
.home-doc-section span,
.home-doc-section p {
  display: block;
}

.home-doc-title small {
  color: #768092;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-doc-title b {
  margin-top: 5px;
  color: #071120;
  font-size: 23px;
  line-height: 0.95;
}

.home-doc-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 13px 0;
  padding: 9px 0;
  border-block: 1px solid rgba(7, 17, 32, 0.08);
}

.home-doc-meta span,
.home-doc-section span {
  color: #768092;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-doc-meta strong {
  font-size: 11px;
}

.home-doc-section {
  margin-top: 10px;
}

.home-doc-section p {
  margin: 5px 0 0;
  color: #344054;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.27;
}

.home-signature-line {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.home-signature-line span {
  min-height: 28px;
  border-bottom: 2px solid rgba(7, 17, 32, 0.22);
  color: #768092;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-artifact-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 19px;
  color: #071120;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(7, 17, 32, 0.14);
  backdrop-filter: blur(18px) saturate(135%);
}

.home-artifact-caption.is-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(7, 17, 32, 0.74);
  box-shadow: 0 22px 56px rgba(7, 17, 32, 0.24);
}

.home-artifact-caption span {
  display: block;
  color: #768092;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-artifact-caption.is-dark span {
  color: rgba(255, 255, 255, 0.66);
}

.home-artifact-caption strong {
  display: block;
  margin-top: 5px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

.home-artifact-caption small {
  display: block;
  margin-top: 5px;
  color: #687285;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
}

.home-artifact-caption.is-dark small {
  color: rgba(255, 255, 255, 0.72);
}

.home-artifact-side {
  display: grid;
  gap: 18px;
}

.home-artifact-tile {
  min-height: 251px;
  border-radius: 28px;
  color: #071120;
  background: rgba(255, 255, 255, 0.9);
}

.home-payroll-sheet,
.home-search-board {
  position: absolute;
  inset: 16px 16px 98px;
  border: 1px solid rgba(7, 17, 32, 0.08);
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  box-shadow: 0 18px 44px rgba(7, 17, 32, 0.1);
}

.home-payroll-sheet::before {
  content: none;
}

.home-payroll-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: #778091;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-payroll-head b {
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 24px;
  border-radius: 999px;
  background: rgba(46, 198, 200, 0.16);
  color: #071120;
  letter-spacing: 0;
}

.home-payroll-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 4px 0;
  border-bottom: 1px solid rgba(7, 17, 32, 0.06);
}

.home-payroll-row span {
  color: #667085;
  font-size: 10px;
  font-weight: 820;
}

.home-payroll-row i {
  height: 11px;
  border-radius: 999px;
  background: rgba(7, 17, 32, 0.1);
}

.home-payroll-row b {
  color: #071120;
  font-size: 11px;
}

.home-payroll-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(7, 17, 32, 0.08);
  color: #768092;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-payroll-total b {
  color: #071120;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.home-search-board {
  display: grid;
  gap: 5px;
}

.home-search-input {
  position: relative;
  min-height: 40px;
  display: grid;
  gap: 2px;
  padding: 8px 12px 8px 36px;
  border-radius: 16px;
  background: rgba(7, 17, 32, 0.05);
  color: #071120;
  font-size: 12px;
  font-weight: 850;
}

.home-search-input::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 14px;
  width: 11px;
  height: 11px;
  border: 2px solid #778091;
  border-radius: 999px;
  box-shadow: 8px 8px 0 -6px #778091;
  transform: rotate(-15deg);
}

.home-search-input b,
.home-search-input span {
  display: block;
}

.home-search-input b {
  color: #768092;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-search-result {
  min-height: 30px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 6px 8px;
  border: 1px solid rgba(7, 17, 32, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.home-search-result i {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2ec6c8, #2c7ef7);
}

.home-search-result span {
  color: #344054;
  font-size: 8.5px;
  font-weight: 800;
  line-height: 1.15;
}

.home-search-result b {
  min-width: 48px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(229, 101, 61, 0.16);
  color: #071120;
  font-size: 8px;
  font-weight: 900;
}

.home-people-stack {
  position: absolute;
  left: 50%;
  top: 178px;
  z-index: 5;
  width: min(84%, 520px);
  min-height: 300px;
  transform: translateX(-50%);
}

.home-cinema-stage--packet .home-people-stack {
  top: 112px;
  width: min(78%, 480px);
}

.home-person-card {
  position: absolute;
  left: 50%;
  width: 100%;
  min-height: 96px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(7, 17, 32, 0.07);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.86);
  color: #071120;
  box-shadow: 0 20px 52px rgba(7, 17, 32, 0.16);
  backdrop-filter: blur(18px) saturate(120%);
}

.home-cinema-stage--packet .home-person-card {
  min-height: 82px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 13px;
  padding: 13px 16px;
}

.home-cinema-stage--packet .home-person-card:nth-child(2) {
  top: 70px;
}

.home-cinema-stage--packet .home-person-card:nth-child(3) {
  top: 126px;
}

.home-person-card:nth-child(1) {
  top: 0;
  z-index: 4;
  transform: translateX(-50%) scale(1);
}

.home-person-card:nth-child(2) {
  top: 82px;
  z-index: 3;
  opacity: 0.72;
  transform: translateX(-50%) scale(0.93);
}

.home-person-card:nth-child(3) {
  top: 148px;
  z-index: 2;
  opacity: 0.38;
  transform: translateX(-50%) scale(0.82);
  filter: blur(0.7px);
}

.home-person-card img {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  object-fit: cover;
}

.home-cinema-stage--packet .home-person-card img {
  width: 48px;
  height: 48px;
}

.home-person-card strong {
  display: block;
  color: #071120;
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: 0;
}

.home-cinema-stage--packet .home-person-card strong {
  font-size: 19px;
}

.home-person-card span {
  display: block;
  margin-top: 4px;
  color: #667085;
  font-size: 14px;
  font-weight: 750;
}

.home-cinema-stage--packet .home-person-card span {
  font-size: 12px;
}

.home-person-card b {
  display: grid;
  place-items: center;
  width: 46px;
  height: 38px;
  border-radius: 999px;
  background: #071120;
  color: #fff;
  font-size: 15px;
}

.home-cinema-stage--packet .home-person-card b {
  width: 40px;
  height: 34px;
  font-size: 13px;
}

.home-counter-block {
  position: absolute;
  left: 50%;
  bottom: 118px;
  z-index: 6;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  transform: translateX(-50%);
}

.home-cinema-stage--packet .home-counter-block {
  bottom: 78px;
  z-index: 6;
  gap: 8px;
}

.home-counter-digits {
  display: flex;
  gap: 8px;
}

.home-counter-digits span {
  width: 80px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 23px;
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(37, 48, 64, 0.66));
  color: white;
  font-size: 60px;
  font-weight: 420;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -24px 36px rgba(7, 17, 31, 0.17),
    0 20px 42px rgba(38, 56, 78, 0.2);
  backdrop-filter: blur(18px) saturate(1.12);
}

.home-cinema-stage--packet .home-counter-digits span {
  width: 66px;
  height: 78px;
  border-radius: 21px;
  font-size: 48px;
}

.home-counter-block strong {
  color: white;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 10px 28px rgba(7, 17, 32, 0.24);
}

.home-cinema-stage--packet .home-counter-block strong {
  font-size: 21px;
}

.home-counter-block small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-cinema-stage--packet .home-counter-block small {
  font-size: 9px;
}

.home-app-dock {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(7, 17, 32, 0.18);
  backdrop-filter: blur(18px) saturate(130%);
  transform: translateX(-50%);
}

.home-app-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(7, 17, 32, 0.12);
}

.home-app-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.home-audience-workflow {
  width: min(100%, 760px);
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.home-path-card {
  min-height: 0;
  display: grid;
  align-content: space-between;
  gap: 14px;
  border-radius: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.88);
  color: #071120;
}

.home-path-card.is-dark {
  background:
    radial-gradient(circle at 78% 10%, rgba(229, 101, 61, 0.16), transparent 16rem),
    #071120;
  color: #fff;
}

.home-path-card small {
  display: block;
  color: #768092;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-path-card h3 {
  margin: 12px 0 0;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 0.96;
  letter-spacing: 0;
}

.home-path-card p {
  margin: 14px 0 0;
  color: #697386;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.38;
}

.home-path-card.is-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.home-workflow-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.home-workflow-item {
  min-height: 50px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 15px;
  background: rgba(7, 17, 32, 0.07);
}

.home-path-card.is-dark .home-workflow-item {
  background: rgba(255, 255, 255, 0.08);
}

.home-workflow-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.home-workflow-item span,
.home-workflow-item strong {
  display: block;
}

.home-workflow-item span {
  color: #768092;
  font-size: 11px;
  font-weight: 900;
}

.home-workflow-item strong {
  margin-top: 2px;
  color: #071120;
  font-size: 15px;
  line-height: 1.08;
}

.home-path-card.is-dark .home-workflow-item strong {
  color: #fff;
}

.home-candidate-pass {
  min-height: 72px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.home-candidate-pass.is-light {
  border-color: rgba(7, 17, 32, 0.08);
  background: rgba(7, 17, 32, 0.05);
}

.home-candidate-pass img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
}

.home-candidate-pass strong,
.home-candidate-pass span {
  display: block;
}

.home-candidate-pass strong {
  color: inherit;
  font-size: 14px;
  line-height: 1.05;
}

.home-candidate-pass span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.24;
}

.home-candidate-pass.is-light span {
  color: #667085;
}

.placement-card,
.metric-card,
.audience-card,
.service-card,
.case-card,
.quote-card,
.final-cta {
  border-radius: var(--radius);
}

.placement-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.placement-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
  z-index: 1;
}

.placement-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(0.95);
  transform: scale(1.01);
}

.placement-overlay {
  position: absolute;
  inset: 18px;
  z-index: 2;
  display: grid;
  align-content: space-between;
  color: white;
}

.placement-overlay span,
.placement-overlay small,
.eyebrow,
.metric-card span,
.audience-card > span,
.final-cta span,
.footer-lead span {
  font-size: 11px;
  font-weight: 650;
  color: inherit;
}

.placement-overlay strong {
  max-width: 440px;
  font-size: 19px;
  line-height: 1.2;
}

.placement-overlay small {
  justify-self: end;
  align-self: end;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--orange);
}

.proof-stack {
  display: grid;
  gap: 18px;
}

.metric-card {
  display: grid;
  align-content: start;
  min-height: 143px;
  padding: 24px;
  border: 1px solid var(--line);
}

.light-card {
  background: #faf9f6;
  color: #080808;
  border: 1px solid #d7d2cb;
}

.dark-card {
  background:
    radial-gradient(240px 180px at 92% 18%, rgba(229, 101, 61, 0.32), transparent 62%),
    #020202;
  color: #fff;
}

.metric-card strong {
  margin: 13px 0 12px;
  font-size: 35px;
  line-height: 1;
  font-weight: 560;
}

.metric-card strong em {
  color: var(--orange);
  font-size: 22px;
  font-style: normal;
}

.metric-card p {
  margin-bottom: 0;
  color: #7b7672;
  font-size: 12px;
  line-height: 1.45;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.68);
}

.client-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) 1fr;
  gap: 96px;
  align-items: center;
}

.clients h2,
.split-heading h2,
.section-title-row h2,
.stats h2,
.final-cta h2,
.footer-lead h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 650;
}

.clients h2 {
  margin-bottom: 18px;
  max-width: 360px;
}

.capacity-grid {
  position: relative;
}

.clients p,
.split-heading p {
  max-width: 520px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.35;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 30px 70px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #1b1b1b;
}

.logo-cloud li {
  font-weight: 800;
  opacity: 0.84;
  transition: opacity 180ms ease, transform 180ms ease;
}

.logo-cloud li:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.northwind {
  font-family: Georgia, serif;
  font-style: italic;
  color: #1d405b;
}

.acme {
  color: #596b37;
  font-size: 21px;
  line-height: 0.92;
  letter-spacing: 2px;
}

.vector {
  color: #396ab4;
  font-size: 28px;
}

.helios {
  font-family: Georgia, serif;
  color: #294036;
  font-size: 36px;
}

.lumen {
  grid-column: 1 / -1;
  justify-self: center;
  color: #31204b;
  font-size: 44px;
  font-weight: 460;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.audience-card {
  min-height: 340px;
  padding: 28px;
  display: grid;
  align-content: space-between;
}

.audience-card h2 {
  max-width: 360px;
  margin: 20px 0 28px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 600;
}

.audience-card p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.68);
}

.audience-card.light-card p {
  color: #5f5a55;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 34px;
}

.tags span {
  min-height: 22px;
  padding: 4px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.light-card .tags span {
  color: #7d7874;
}

.audience-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 760;
}

.audience-card b,
.case-card a {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 22px;
}

.light-card b,
.case-card a {
  background: #000;
}

.match-intelligence {
  position: relative;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(237, 232, 223, 0.48), rgba(247, 243, 237, 0));
}

.match-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.92fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.match-copy h2 {
  max-width: 560px;
  margin-bottom: 26px;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.08;
  font-weight: 650;
}

.match-copy p {
  max-width: 590px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.4;
}

.signal-list {
  display: grid;
  gap: 14px;
  max-width: 590px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: #2f2a27;
  font-weight: 720;
}

.signal-list span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #020202;
  color: white;
  font-size: 11px;
}

.match-motion {
  min-height: 470px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 84px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  color: #8d8781;
}

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

.service-card {
  position: relative;
  min-height: 220px;
  padding: 92px 26px 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.98), rgba(246, 242, 234, 0.94));
  box-shadow: 0 16px 36px rgba(57, 37, 23, 0.08);
  overflow: hidden;
}

.service-card.muted-top::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 84px;
  background: #d7d7d7;
}

.service-card.premium-service::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 101, 61, 0.16), transparent 68%);
  pointer-events: none;
}

.service-card.has-media {
  min-height: 316px;
  padding: 0;
}

.service-card-media {
  width: 100%;
  height: 140px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.service-card-body {
  padding: 22px 26px 26px;
}

.service-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  min-height: 250px;
}

.service-card-wide .service-card-media {
  height: 100%;
  min-height: 250px;
}

.service-card-wide .service-card-body {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 44px);
}

.service-card .icon {
  position: absolute;
  left: 24px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #000;
  color: white;
  font-size: 22px;
}

.service-kicker {
  display: block;
  margin-bottom: 10px;
  color: #837b74;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.service-card p {
  min-height: 58px;
  color: #7a746f;
  font-size: 13px;
}

.service-card a,
.section-title-row a {
  font-size: 12px;
  font-weight: 760;
}

.service-lab {
  position: relative;
  padding-top: 104px;
  padding-bottom: 118px;
  color: #fff;
  background:
    radial-gradient(860px 420px at 12% 10%, rgba(229, 101, 61, 0.26), transparent 68%),
    radial-gradient(720px 520px at 90% 28%, rgba(42, 183, 190, 0.15), transparent 70%),
    linear-gradient(180deg, #050505 0%, #101010 100%);
  overflow: hidden;
}

.service-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 34%, black, transparent 74%);
  pointer-events: none;
}

.service-lab > .wrap {
  position: relative;
  z-index: 1;
}

.service-lab-head {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 86px);
}

.service-lab-head h2 {
  max-width: 690px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.98;
  font-weight: 700;
}

.service-lab-head p {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
}

.service-lab-chipline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.service-lab-chipline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 720;
}

.service-lab-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(360px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.service-feature-cinema,
.service-models-panel,
.service-domain-strip,
.trust-visual-stage {
  border-radius: var(--radius);
}

.service-feature-cinema {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  isolation: isolate;
}

.service-feature-cinema img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.02);
}

.service-feature-cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78)),
    radial-gradient(520px 360px at 72% 24%, rgba(255, 255, 255, 0.14), transparent 70%);
  z-index: 1;
}

.service-feature-overlay {
  position: absolute;
  inset: 28px;
  z-index: 2;
  display: grid;
  align-content: space-between;
  gap: 26px;
}

.service-window-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.service-window-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
}

.service-window-bar i:nth-child(2) {
  background: #2ec7c9;
}

.service-window-bar i:nth-child(3) {
  background: #2d7cff;
}

.service-window-bar span {
  margin-left: 8px;
}

.service-brief-card {
  width: min(440px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 28px 54px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.service-brief-card span,
.service-domain-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.service-brief-card strong {
  display: block;
  max-width: 320px;
  margin: 12px 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 0.98;
}

.service-brief-card p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.service-brief-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-brief-tags b {
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 11px;
}

.service-signal-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(2, 2, 2, 0.5);
  backdrop-filter: blur(18px);
}

.service-signal-rail span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.service-signal-rail .is-active {
  background: #fffefa;
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(255, 255, 255, 0.12);
}

.service-models-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.model-tile {
  position: relative;
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.model-tile::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 101, 61, 0.2), transparent 70%);
}

.model-tile.is-active {
  background: #fffefa;
  color: var(--ink);
}

.model-tile span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 24px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 850;
}

.model-tile.is-active span {
  background: var(--ink);
  color: #fff;
}

.model-tile strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.model-tile p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.45;
}

.model-tile.is-active p {
  color: #635d58;
}

.service-domain-strip {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(170px, 0.55fr) minmax(0, 1fr);
  min-height: 212px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
}

.service-domain-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.service-domain-strip div {
  display: grid;
  align-content: center;
  padding: 24px;
}

.service-domain-strip strong {
  display: block;
  margin: 10px 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.1;
}

.service-domain-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.dark-band {
  position: relative;
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(620px 220px at 48% 0%, rgba(204, 83, 46, 0.36), transparent 70%),
    #020202;
  overflow: hidden;
}

.stats h2 {
  max-width: 490px;
  margin-bottom: 70px;
}

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

.stat-grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  padding-top: 22px;
}

.stat-grid strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.stat-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 54px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case-card,
.quote-card {
  position: relative;
  background: #fffefa;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(57, 37, 23, 0.07);
  overflow: hidden;
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
}

.case-card h3 {
  min-height: 58px;
  margin: 18px 18px 14px;
  font-size: 15px;
  line-height: 1.3;
}

.case-card p {
  margin: 0 18px 22px;
  color: #9a938c;
  font-size: 11px;
}

.case-card a {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  font-size: 16px;
}

.testimonials {
  background: var(--bg-soft);
}

.standards-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: #2f2a27;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.quote-card {
  min-height: 292px;
  padding: 30px 28px;
  text-align: center;
}

.quote-card img {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-card .avatar-token {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--ink);
  color: #fffefa;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card strong {
  font-size: 13px;
}

.quote-card span {
  margin: 4px 0 24px;
  color: #8b857f;
  font-size: 10px;
}

.quote-card p {
  min-height: 58px;
  font-size: 11px;
  line-height: 1.55;
}

.quote-card b {
  color: var(--gold);
  letter-spacing: 3px;
}

.trust-cinema {
  position: relative;
  padding-top: 96px;
  padding-bottom: 112px;
  background:
    radial-gradient(720px 360px at 82% 8%, rgba(229, 101, 61, 0.13), transparent 70%),
    linear-gradient(180deg, #f7f3ed 0%, #ede8df 100%);
  overflow: hidden;
}

.trust-cinema::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(5, 5, 5, 0.08);
}

.trust-cinema-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.48fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.trust-cinema-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.trust-cinema-head h2 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.98;
  font-weight: 700;
}

.trust-cinema-head p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
}

.trust-cinema-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(360px, 0.78fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: stretch;
}

.trust-visual-stage {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.12);
  background: #050505;
  box-shadow: 0 34px 90px rgba(48, 32, 21, 0.16);
  isolation: isolate;
}

.trust-visual-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
  opacity: 0.82;
}

.trust-visual-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76)),
    radial-gradient(460px 280px at 38% 34%, rgba(255, 255, 255, 0.12), transparent 72%);
  z-index: 1;
}

.trust-stage-overlay {
  position: absolute;
  inset: 28px;
  z-index: 2;
}

.trust-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
}

.trust-review-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 36px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 26px 58px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.trust-review-card span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.trust-review-card strong {
  display: block;
  max-width: 540px;
  margin: 10px 0 22px;
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
}

.trust-review-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-review-card i {
  min-height: 32px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-style: normal;
  font-weight: 740;
}

.trust-mini-card {
  position: absolute;
  width: min(236px, 44%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.trust-mini-card b {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 24px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
}

.trust-mini-card span {
  display: block;
  font-size: 14px;
  font-weight: 820;
}

.trust-mini-one {
  left: 30px;
  top: 122px;
}

.trust-mini-two {
  right: 34px;
  top: 208px;
  animation: trustFloat 5.8s ease-in-out infinite;
}

.trust-steps {
  display: grid;
  align-content: center;
  gap: 0;
  border-top: 1px solid rgba(5, 5, 5, 0.14);
}

.trust-step {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.14);
}

.trust-step-number {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.92;
}

.trust-step small {
  display: block;
  margin-bottom: 10px;
  color: #8d8781;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trust-step h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.04;
}

.trust-step p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

@keyframes trustFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.cta-section {
  padding: 110px 0 160px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: 300px;
  padding: clamp(36px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(440px 240px at 92% 18%, rgba(229, 101, 61, 0.42), transparent 72%),
    radial-gradient(360px 260px at 5% 92%, rgba(51, 160, 180, 0.2), transparent 72%),
    linear-gradient(145deg, #0a1424 0%, #050505 58%, #1b0d08 100%);
  color: white;
  box-shadow: 0 28px 80px rgba(5, 5, 5, 0.24);
  overflow: hidden;
}

.final-cta h2 {
  max-width: 610px;
  margin: 26px 0;
}

.final-cta p {
  max-width: 570px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  font-weight: 560;
  line-height: 1.4;
}

.final-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.final-cta .btn {
  width: auto;
}

.final-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cta-intake-board {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 24px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.cta-intake-board::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent, black 18%, transparent 86%);
  pointer-events: none;
}

.cta-intake-board > * {
  position: relative;
  z-index: 1;
}

.cta-intake-board strong {
  display: block;
  margin: 10px 0 18px;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.02;
}

.cta-intake-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.cta-intake-tags i {
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-style: normal;
  font-weight: 740;
}

.cta-intake-board ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-intake-board li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 720;
}

.cta-intake-board li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.cta-actions {
  display: grid;
  gap: 16px;
}

.footer {
  padding: 74px 0 30px;
  background: #020202;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) 1fr;
  gap: 70px 90px;
}

.footer-lead h2 {
  max-width: 480px;
  margin: 32px 0 42px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 72px;
}

.footer-links strong,
.footer-links a {
  display: block;
  font-size: 12px;
}

.footer-links strong {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links a {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-social {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: -18px;
  padding: 18px 20px 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(229, 101, 61, 0.13));
}

.footer-social div {
  display: grid;
  gap: 4px;
}

.footer-social div > span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-social strong {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.45;
}

.footer-social-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fffdf9;
  color: #050505;
  font-size: 13px;
  font-weight: 850;
}

.footer-social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-mark {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #0a66c2;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.social-mark-linkedin {
  background: #0a66c2;
}

.social-mark-x {
  background: #050505;
  font-size: 12px;
}

.footer-social-link::after {
  content: "↗";
  color: var(--orange);
  font-size: 14px;
}

.footer-wordmark {
  grid-column: 1 / -1;
  margin: 0;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(78px, 12vw, 138px);
  line-height: 0.9;
}

.footer-wordmark span {
  color: var(--orange);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.interactive-card,
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.interactive-card:hover,
.tilt-card:hover {
  border-color: rgba(229, 101, 61, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

.page-hero {
  padding: 116px 0 96px;
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(229, 101, 61, 0.1);
  color: var(--orange);
  font-weight: 800;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 auto 28px;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.42;
}

.page-hero.dark-page {
  margin-top: -102px;
  padding-top: 210px;
  color: white;
  background:
    radial-gradient(720px 360px at 52% 20%, rgba(229, 101, 61, 0.28), transparent 68%),
    linear-gradient(145deg, #070b17, #121b34);
}

.page-hero.dark-page p {
  color: rgba(255, 255, 255, 0.68);
}

.hero-points,
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.dark-page .hero-points {
  color: rgba(255, 255, 255, 0.72);
}

.hero-points li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--orange);
}

.page-section {
  padding: 104px 0;
}

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

.page-section.dark {
  color: white;
  background:
    radial-gradient(520px 260px at 80% 10%, rgba(229, 101, 61, 0.32), transparent 64%),
    #020202;
}

.center-heading {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.center-heading h2,
.page-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  font-weight: 680;
}

.center-heading p,
.page-copy p {
  color: var(--muted);
  font-size: 18px;
}

.dark .center-heading p,
.dark .page-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.model-grid,
.benefit-grid,
.value-grid,
.role-grid,
.team-grid,
.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.model-grid.four,
.domain-grid {
  grid-template-columns: repeat(4, 1fr);
}

.page-card,
.form-card,
.info-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
  box-shadow: 0 10px 24px rgba(57, 37, 23, 0.07);
}

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

.trust-grid article {
  min-height: 124px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
  box-shadow: 0 8px 22px rgba(57, 37, 23, 0.06);
}

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

.trust-grid strong {
  margin-bottom: 10px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
}

.capacity-cards article {
  display: grid;
  align-content: start;
  min-height: 148px;
  background:
    radial-gradient(140px 90px at 92% 12%, rgba(229, 101, 61, 0.14), transparent 70%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(244, 240, 233, 0.92));
}

.capacity-cards strong {
  margin: 16px 0 8px;
}

.capacity-cards .capacity-index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fffefa;
  font-size: 10px;
  font-weight: 800;
}

.staffing-media-section {
  padding-top: 0;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.media-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: #020202;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  opacity: 0.88;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.72));
}

.media-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  color: white;
}

.media-card h3 {
  max-width: 520px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.06;
}

.model-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
  box-shadow: 0 10px 24px rgba(57, 37, 23, 0.07);
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.article-card img.image-focus-low {
  object-position: center 68%;
}

.article-card div {
  padding: 24px;
}

.article-card h3 {
  font-size: 22px;
  line-height: 1.15;
}

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

.editorial-stories,
.insight-editorial-section {
  background:
    radial-gradient(760px 300px at 78% 6%, rgba(229, 101, 61, 0.12), transparent 70%),
    linear-gradient(180deg, #eee8de 0%, #f7f3ed 100%);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.story-feature,
.story-side-card,
.insight-lead-card,
.insight-strip-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 101, 61, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.74), rgba(255, 253, 249, 0.96)),
    #fffefa;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.46),
    0 24px 62px rgba(59, 37, 20, 0.1);
  isolation: isolate;
}

.story-feature::after,
.story-side-card::after,
.insight-lead-card::after,
.insight-strip-card::after,
.about-signal-media::after {
  display: none;
}

.story-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  min-height: 560px;
}

.story-feature img,
.story-side-card img,
.insight-lead-card img,
.insight-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: none;
  transition: none;
}

.story-feature:hover img,
.story-side-card:hover img,
.insight-lead-card:hover img,
.insight-strip-card:hover img {
  filter: none;
  transform: none;
}

.story-feature img {
  min-height: 100%;
}

.story-feature-copy,
.story-side-card div,
.insight-lead-card div,
.insight-strip-card div {
  position: relative;
  z-index: 2;
}

.story-feature-copy {
  display: grid;
  align-content: end;
  min-width: 0;
  padding: clamp(28px, 4vw, 46px);
}

.story-feature-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.05;
}

.story-feature-copy p,
.story-side-card p,
.insight-lead-card p,
.insight-strip-card p {
  color: var(--muted);
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.story-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
}

.story-stats dt {
  font-size: 26px;
  font-weight: 850;
}

.story-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 740;
}

.story-side-list,
.insight-stack {
  display: grid;
  gap: 24px;
}

.story-side-card,
.insight-strip-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 268px;
}

.story-side-card img,
.insight-strip-card img {
  min-height: 100%;
}

.story-side-card div,
.insight-strip-card div {
  display: grid;
  align-content: center;
  padding: 24px;
}

.story-side-card h3,
.insight-strip-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.08;
}

.client-proof-section {
  padding-top: 96px;
  background:
    radial-gradient(520px 320px at 50% 18%, rgba(77, 184, 168, 0.16), transparent 68%),
    radial-gradient(620px 300px at 78% 8%, rgba(229, 101, 61, 0.18), transparent 66%),
    linear-gradient(145deg, #07101f 0%, #10192d 52%, #07101f 100%);
}

.client-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.client-proof-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 360px;
  padding: 34px 28px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.client-proof-card img {
  width: 108px;
  height: 108px;
  margin-bottom: 24px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
}

.client-proof-card .avatar-token {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.12);
  color: #fffefa;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
}

.client-proof-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.client-proof-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.64;
}

.client-proof-card span {
  margin-top: auto;
  color: #ffd64a;
  font-size: 13px;
  font-weight: 850;
}

.insight-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 24px;
  align-items: stretch;
}

.insight-lead-card {
  display: grid;
  min-height: 620px;
}

.insight-lead-card img {
  height: 330px;
}

.insight-lead-card div {
  display: grid;
  align-content: end;
  padding: clamp(26px, 4vw, 42px);
}

.insight-lead-card h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
}

.insight-lead-card a,
.insight-strip-card a {
  justify-self: start;
  margin-top: 20px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
}

.field-notes-panel {
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(229, 101, 61, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(420px 240px at 92% 18%, rgba(229, 101, 61, 0.1), transparent 66%),
    #fffefa;
  box-shadow: 0 18px 42px rgba(59, 37, 20, 0.08);
}

.about-signal-section {
  padding-top: 28px;
  background:
    radial-gradient(680px 300px at 18% 100%, rgba(5, 5, 5, 0.05), transparent 66%),
    var(--bg);
}

.about-signal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.about-signal-media {
  position: relative;
  min-height: clamp(340px, 42vw, 470px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 101, 61, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(420px 220px at 82% 16%, rgba(229, 101, 61, 0.18), transparent 66%),
    #f6f1e9;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    inset 0 0 72px rgba(247, 243, 237, 0.55),
    0 24px 62px rgba(59, 37, 20, 0.11);
  isolation: isolate;
}

.about-signal-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.about-signal-media figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 490px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 18px 38px rgba(33, 22, 14, 0.14);
  backdrop-filter: blur(18px);
}

.about-signal-media figcaption span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.about-signal-media figcaption strong {
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.08;
}

.operator-grid .person-card {
  min-height: 290px;
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(229, 101, 61, 0.08), transparent 66%),
    #fffefa;
}

.operator-grid .avatar-token {
  width: 54px;
  height: 54px;
  background:
    radial-gradient(circle at 35% 28%, #ff946d, var(--orange) 60%, #be4728);
  box-shadow: 0 0 0 8px rgba(229, 101, 61, 0.12);
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 44px;
  font-size: 30px;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 17px;
}

.site-assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  font-family: inherit;
}

.assistant-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 166px;
  min-height: 58px;
  padding: 7px 18px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(2, 2, 2, 0.94);
  color: white;
  box-shadow: 0 18px 42px rgba(5, 5, 5, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.assistant-toggle-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ff946d, var(--orange) 58%, #be4728);
  box-shadow: 0 0 0 7px rgba(229, 101, 61, 0.16);
}

.assistant-toggle-icon svg {
  width: 23px;
  height: 23px;
  fill: rgba(255, 255, 255, 0.08);
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.assistant-avatar-bubble {
  fill: rgba(255, 255, 255, 0.12);
}

.assistant-toggle-text {
  line-height: 1;
  white-space: nowrap;
}

.assistant-toggle:hover {
  transform: translateY(-3px);
  background: #111;
  box-shadow: 0 22px 48px rgba(5, 5, 5, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-assistant.is-open .assistant-toggle {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  display: grid;
  grid-template-rows: auto minmax(170px, 1fr) auto auto;
  width: min(398px, calc(100vw - 28px));
  max-height: min(680px, calc(100vh - 114px));
  overflow: hidden;
  border: 1px solid rgba(216, 210, 202, 0.9);
  border-radius: 18px;
  background: #fffefa;
  box-shadow: 0 28px 70px rgba(48, 32, 21, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
}

.site-assistant.is-open .assistant-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.assistant-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(220px 120px at 16% 0%, rgba(229, 101, 61, 0.17), transparent 70%),
    #fff8f0;
}

.assistant-head strong,
.assistant-head span {
  display: block;
}

.assistant-head strong {
  font-size: 18px;
}

.assistant-head span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.assistant-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #020202;
  color: white;
  font: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.assistant-log {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 18px 18px 6px;
  overflow-y: auto;
}

.assistant-message {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.45;
}

.assistant-message p {
  margin: 0;
}

.assistant-message.user {
  justify-self: end;
  border-bottom-right-radius: 5px;
  background: #020202;
  color: white;
  font-weight: 750;
}

.assistant-message.bot {
  justify-self: start;
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
  background: white;
  color: #191411;
}

.assistant-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.assistant-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.assistant-links a {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(229, 101, 61, 0.11);
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
}

.assistant-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 18px 14px;
}

.assistant-prompts button {
  flex: 0 0 auto;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #2c2824;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: #fffefa;
}

.assistant-form input {
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font: inherit;
  font-size: 13px;
}

.assistant-form button {
  height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.page-card {
  min-height: 220px;
  padding: 28px;
}

.page-card > span,
.role-card > span,
.mini-label {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.page-card h3,
.role-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.12;
}

.page-card p,
.role-card p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #413b37;
  font-size: 13px;
}

.check-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--orange);
  font-weight: 900;
}

.process-list {
  display: grid;
  max-width: 760px;
  margin: 0 auto;
  gap: 22px;
}

.process-item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.process-item:first-child {
  border-top: 0;
}

.process-item b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
}

.process-item span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.domain-grid article,
.metric-tile {
  min-height: 98px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fffefa;
  border: 1px solid var(--line);
}

.domain-grid strong,
.metric-tile strong {
  display: block;
  margin-bottom: 7px;
}

.domain-grid small,
.metric-tile span {
  color: var(--muted);
  font-size: 12px;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #050505;
}

.metric-band article {
  min-height: 126px;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  background: var(--orange);
}

.metric-band strong {
  display: block;
  font-size: 30px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-card {
  padding: 22px 24px;
}

.faq-card summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.split-page-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 64px;
  align-items: start;
}

.form-card {
  padding: clamp(24px, 4vw, 42px);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.field {
  display: grid;
  gap: 8px;
  color: #413b37;
  font-size: 13px;
  font-weight: 760;
}

.field.full {
  grid-column: 1 / -1;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field input,
.field select,
.field textarea,
.subscribe-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8d2ca;
  border-radius: 8px;
  background: #fffefa;
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input[type="file"] {
  min-height: 56px;
  padding: 12px;
  cursor: pointer;
}

.field input[type="file"]::file-selector-button {
  margin-right: 14px;
  border: 0;
  border-radius: 999px;
  background: #0c0c0c;
  color: #fffefa;
  padding: 10px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.field textarea {
  min-height: 138px;
  padding: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.subscribe-row input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(229, 101, 61, 0.1);
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.form-status {
  min-height: 18px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: #217a51;
}

.form-status.is-error {
  color: #b64128;
}

.form-note a,
.legal-copy a,
.contact-item a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-card > .btn {
  width: 100%;
  margin-top: 22px;
}

.admin-panel {
  display: grid;
  gap: 24px;
}

.admin-auth-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
  box-shadow: 0 10px 24px rgba(57, 37, 23, 0.07);
}

.admin-auth-card .field {
  margin: 0;
}

.admin-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.admin-data-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.admin-record {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
  box-shadow: 0 10px 24px rgba(57, 37, 23, 0.06);
}

.admin-record header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.admin-record h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.admin-record small {
  color: var(--muted);
  font-weight: 700;
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(229, 101, 61, 0.1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.admin-payload div {
  min-width: 0;
  padding: 12px;
  border-radius: 12px;
  background: var(--bg-soft);
}

.admin-payload dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-payload dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.admin-empty {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.role-card {
  display: grid;
  gap: 12px;
  min-height: 252px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
  box-shadow: 0 8px 22px rgba(57, 37, 23, 0.07);
}

.role-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.role-card strong {
  color: var(--orange);
}

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

.person-card {
  padding: 26px;
}

.avatar-token {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #020202;
  color: white;
  font-size: 13px;
  font-weight: 850;
}

.person-card > .avatar-token {
  display: grid;
  place-items: center;
  color: #ffffff;
  line-height: 1;
  text-transform: none;
}

.info-stack {
  display: grid;
  gap: 22px;
}

.info-card {
  padding: 28px;
}

.info-card h3 {
  font-size: 30px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 22px;
}

.contact-item b,
.contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(229, 101, 61, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(229, 101, 61, 0.09)),
    rgba(229, 101, 61, 0.11);
  color: var(--orange);
  box-shadow: 0 10px 22px rgba(111, 73, 48, 0.08);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.x-icon svg {
  fill: currentColor;
  stroke: none;
}

.contact-item strong,
.contact-item div > span,
.contact-item a {
  display: block;
}

.contact-item strong {
  font-size: 12px;
  text-transform: uppercase;
}

.contact-item div > span {
  color: var(--muted);
}

.contact-item a {
  margin-top: 2px;
}

.promise-card {
  background: var(--orange);
  color: white;
}

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

.subscribe-row {
  display: flex;
  gap: 8px;
  max-width: 380px;
}

@keyframes scanSweep {
  0%, 44% {
    transform: translateX(-24%) rotate(0deg);
  }
  72%, 100% {
    transform: translateX(24%) rotate(0deg);
  }
}

@keyframes orbitBreath {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.56;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes signalRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes nodeFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes corePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(229, 101, 61, 0.28), 0 16px 30px rgba(229, 101, 61, 0.18);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 18px rgba(229, 101, 61, 0), 0 22px 42px rgba(229, 101, 61, 0.28);
  }
}

@keyframes pulseDot {
  0% {
    transform: scale(0.86);
    box-shadow: 0 0 0 0 rgba(229, 101, 61, 0.42);
    opacity: 1;
  }
  100% {
    transform: scale(1.55);
    box-shadow: 0 0 0 24px rgba(229, 101, 61, 0);
    opacity: 0.1;
  }
}

@keyframes barDance {
  0%, 100% {
    transform: scaleY(0.62);
    opacity: 0.58;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes railSweep {
  0% {
    transform: translateX(-120%);
  }
  48%, 100% {
    transform: translateX(300%);
  }
}

@keyframes cardDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -8px, 0);
  }
}

@keyframes cardPlatformLift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  35%, 52% {
    transform: translate3d(-30px, -55px, 0);
  }
  75% {
    transform: translate3d(30px, 50px, 0);
  }
}

@keyframes cardDataLift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  33%, 50% {
    transform: translate3d(30px, -50px, 0);
  }
  72% {
    transform: translate3d(-30px, 50px, 0);
  }
}

@keyframes cardProductLift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  30% {
    transform: translate3d(-30px, -50px, 0);
  }
  55%, 72% {
    transform: translate3d(30px, 60px, 0);
  }
}

@media (max-width: 980px) {
  :root {
    --wrap: min(calc(100vw - 32px), 760px);
  }

  .site-header {
    top: 12px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 14px 0 20px;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: #000;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
  }

  .nav-links,
  .nav-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    display: none;
    margin: 0;
    padding: 22px;
    background: rgba(255, 253, 249, 0.98);
  }

  .nav-links {
    top: 92px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px 20px 0 0;
  }

  .nav-actions {
    top: 284px;
    border-radius: 0 0 20px 20px;
  }

  body.nav-open .nav-links,
  body.nav-open .nav-actions {
    display: flex;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-proof,
  .hero-stage,
  .screening-showcase-panel,
  .match-grid,
  .client-grid,
  .service-lab-head,
  .service-lab-grid,
  .audience-grid,
  .split-heading,
  .trust-cinema-head,
  .trust-cinema-grid,
  .final-cta,
  .footer-grid,
  .split-page-grid,
  .story-layout,
  .insight-editorial-grid,
  .about-signal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 82px;
  }

  .hero-proof-clean {
    padding: 22px;
    border-radius: 24px;
  }

  .signal-board-grid {
    grid-template-columns: 1fr;
  }

  .signal-board-grid article {
    min-height: 134px;
  }

  .signal-board-grid strong {
    margin-top: 24px;
  }

  .signal-board-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-board-footer b {
    text-align: left;
  }

  .screening-showcase-panel {
    min-height: auto;
  }

  .screening-showcase-visual-wrap {
    min-height: auto;
  }

  .talent-motion,
  .pipeline-motion {
    min-height: 430px;
  }

  .service-grid,
  .case-grid,
  .quote-grid,
  .stat-grid,
  .trust-grid,
  .media-grid,
  .article-grid,
  .model-grid,
  .model-grid.four,
  .benefit-grid,
  .value-grid,
  .role-grid,
  .team-grid,
  .domain-grid,
  .client-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-feature {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    min-height: 500px;
  }

  .insight-lead-card {
    min-height: auto;
  }

  .about-signal-section {
    padding-top: 0;
  }

  .footer-links {
    padding-top: 0;
  }

  .footer-social {
    margin-top: 0;
  }

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

  .service-feature-cinema {
    min-height: 620px;
  }

  .service-models-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-domain-strip {
    grid-column: auto;
  }

  .trust-visual-stage {
    min-height: 580px;
  }

  .home-cinema-strip {
    width: min(calc(100vw - 32px), 820px);
    min-height: 310vh;
  }

  .home-cinema-pin {
    padding: 86px 0 34px;
  }

  .home-cinema-frame {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px;
  }

  .home-cinema-copy {
    min-height: auto;
  }

  .home-cinema-visual {
    min-height: 660px;
  }

  .home-artifact-panel,
  .home-audience-workflow {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-artifact-side {
    grid-template-columns: 1fr 1fr;
  }

  .home-artifact-hero {
    min-height: 500px;
  }

  .home-audience-workflow {
    height: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: min(calc(100vw - 24px), 520px);
  }

  .section-pad {
    padding: 82px 0;
  }

  .page-hero {
    padding: 76px 0 74px;
    text-align: left;
  }

  .page-hero.dark-page {
    margin-top: -84px;
    padding-top: 152px;
  }

  .page-hero h1,
  .page-hero p,
  .center-heading {
    margin-left: 0;
    text-align: left;
  }

  .page-section {
    padding: 76px 0;
  }

  .story-feature,
  .story-side-card,
  .insight-strip-card,
  .client-proof-grid {
    grid-template-columns: 1fr;
  }

  .story-feature,
  .insight-lead-card {
    min-height: auto;
  }

  .story-feature img,
  .story-side-card img,
  .insight-strip-card img,
  .insight-lead-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.48 / 1;
  }

  .story-feature-copy,
  .story-side-card div,
  .insight-lead-card div,
  .insight-strip-card div {
    padding: 22px;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .home-cinema {
    padding-top: 34px;
  }

  .home-cinema-scroll-rail {
    display: none;
  }

  .home-cinema-strip {
    width: min(calc(100vw - 24px), 520px);
    min-height: 290vh;
  }

  .home-cinema-pin {
    padding: 74px 0 26px;
  }

  .home-cinema-frame {
    border-radius: 28px;
    padding: 20px;
  }

  .home-cinema h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .home-cinema-copy > p {
    font-size: 17px;
  }

  .home-cinema-meta {
    align-items: flex-start;
    gap: 24px;
  }

  .home-cinema-visual {
    min-height: 560px;
    border-radius: 24px;
  }

  .home-cinema-topbar {
    left: 20px;
    right: 20px;
    top: 22px;
  }

  .home-cinema-topbar strong {
    min-height: 44px;
    padding: 0 16px;
    font-size: 12px;
  }

  .home-cinema-stage {
    inset: 82px 16px 22px;
  }

  .home-artifact-panel,
  .home-artifact-side,
  .home-audience-workflow {
    grid-template-columns: 1fr;
  }

  .home-artifact-panel {
    min-height: auto;
  }

  .home-artifact-hero {
    min-height: 430px;
  }

  .home-artifact-tile {
    min-height: 225px;
  }

  .home-artifact-doc {
    inset: 20px 18px 116px;
    padding: 20px;
  }

  .home-artifact-caption strong {
    font-size: 21px;
  }

  .home-payroll-sheet,
  .home-search-board {
    inset: 14px 14px 92px;
    padding: 14px;
  }

  .home-people-stack {
    top: 112px;
    width: 94%;
  }

  .home-person-card {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 88px;
    padding: 14px;
  }

  .home-person-card img {
    width: 50px;
    height: 50px;
  }

  .home-person-card strong {
    font-size: 18px;
  }

  .home-person-card b {
    grid-column: 2;
    justify-self: start;
    width: 40px;
    height: 30px;
    font-size: 13px;
  }

  .home-counter-block {
    bottom: 94px;
  }

  .home-counter-digits span {
    width: 64px;
    height: 78px;
    border-radius: 19px;
    font-size: 46px;
  }

  .home-counter-block strong {
    font-size: 22px;
  }

  .home-app-dock {
    bottom: 18px;
    padding: 9px;
    border-radius: 20px;
  }

  .home-app-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .home-app-icon img {
    width: 26px;
    height: 26px;
  }

  .home-path-card {
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
  }

  .home-path-card h3 {
    font-size: 32px;
  }

  .client-proof-card {
    min-height: auto;
  }

  .about-signal-media {
    min-height: 318px;
  }

  .about-signal-media figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 15px;
  }

  .site-assistant {
    right: 12px;
    bottom: 12px;
  }

  .assistant-toggle {
    width: 58px;
    min-width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
  }

  .assistant-toggle-icon {
    width: 44px;
    height: 44px;
  }

  .assistant-toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .assistant-panel {
    bottom: 64px;
    width: calc(100vw - 24px);
    max-height: min(620px, calc(100vh - 96px));
  }

  .assistant-head {
    padding: 16px;
  }

  .assistant-log {
    padding: 14px 14px 4px;
  }

  .assistant-prompts {
    padding: 8px 14px 12px;
  }

  .assistant-form {
    grid-template-columns: 1fr;
  }

  .section-line {
    padding: 64px 0;
  }

  .brand img {
    width: 116px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 86px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  .mobile-break {
    display: block;
  }

  .hero-copy p {
    font-size: 20px;
  }

  .hero-actions,
  .nav-actions,
  .footer-bottom,
  .footer-social,
  .section-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-social {
    border-radius: 22px;
  }

  .footer-social-actions {
    display: grid;
    width: 100%;
  }

  .footer-social-link {
    justify-content: center;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    margin-top: 64px;
    gap: 16px;
  }

  .hero-proof-intro h2 {
    font-size: 36px;
  }

  .hero-proof-intro p {
    font-size: 16px;
  }

  .signal-board-top {
    flex-direction: column;
  }

  .signal-board-top strong {
    align-self: flex-start;
  }

  .hero-signal-board {
    padding: 18px;
    border-radius: 18px;
  }

  .screening-showcase-panel {
    padding: 22px;
    border-radius: 20px;
  }

  .screening-showcase h2 {
    font-size: 44px;
    line-height: 1.02;
  }

  .screening-showcase-note {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    margin-top: 36px;
    padding: 14px;
  }

  .screening-showcase-note > strong {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }

  .screening-motion-visual {
    min-height: 590px;
  }

  .screening-motion-header {
    inset: 20px 20px auto;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .screening-motion-pill {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .screening-motion-stack {
    top: 154px;
    width: 88%;
  }

  .screening-motion-profile {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    min-height: 124px;
    padding: 14px;
  }

  .screening-motion-avatar {
    width: 44px;
    height: 44px;
  }

  .screening-motion-role-line {
    gap: 9px;
    font-size: 11px;
  }

  .screening-motion-mini-dots {
    gap: 6px;
    width: 36px;
  }

  .screening-motion-mini-dots i {
    width: 8px;
    height: 8px;
  }

  .screening-motion-title {
    font-size: 20px;
  }

  .screening-motion-status {
    grid-column: 2;
    justify-self: start;
    min-width: 66px;
    min-height: 42px;
    margin-top: 4px;
    border-radius: 15px;
  }

  .screening-motion-status b {
    font-size: 17px;
  }

  .screening-motion-status span {
    font-size: 8px;
  }

  .screening-motion-digit {
    width: 64px;
    height: 82px;
  }

  .screening-motion-digit-value {
    font-size: 52px;
  }

  .talent-motion,
  .pipeline-motion {
    min-height: 500px;
  }

  .pipeline-motion {
    padding: 22px;
  }

  .pipeline-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .pipeline-track {
    height: 430px;
  }

  .pipeline-step {
    width: 46px;
    height: 46px;
  }

  .pipeline-step span {
    top: 54px;
    font-size: 9px;
  }

  .candidate-card {
    width: min(218px, 62%);
    padding: 13px;
  }

  .candidate-card strong {
    font-size: 14px;
  }

  .card-data {
    top: 18%;
  }

  .card-product {
    left: 18%;
    bottom: 13%;
    animation-name: cardProductMobileLift;
  }

  .pipeline-proof {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .pipeline-proof div {
    min-height: 76px;
    padding: 11px;
  }

  .pipeline-proof strong {
    font-size: 20px;
  }

  @keyframes cardProductMobileLift {
    0%, 100% {
      transform: translate3d(0, 0, 0);
    }
    34% {
      transform: translate3d(6px, -18px, 0);
    }
    66% {
      transform: translate3d(-6px, 46px, 0);
    }
  }

  .motion-card {
    padding: 14px;
  }

  .motion-card strong {
    font-size: 30px;
  }

  .motion-node {
    width: 48px;
    height: 48px;
  }

  .node-core {
    left: calc(50% - 31px);
    top: calc(50% - 31px);
    width: 62px;
    height: 62px;
  }

  .placement-card,
  .placement-card img {
    min-height: 280px;
  }

  .placement-overlay strong {
    font-size: 16px;
  }

  .placement-overlay small {
    justify-self: start;
  }

  .client-grid,
  .match-grid,
  .split-heading {
    gap: 34px;
  }

  .service-lab-head,
  .trust-cinema-head {
    gap: 22px;
  }

  .service-lab-head h2,
  .trust-cinema-head h2 {
    font-size: 42px;
    line-height: 1.02;
  }

  .service-lab-head p,
  .trust-cinema-head p {
    font-size: 17px;
  }

  .service-lab-chipline {
    gap: 8px;
  }

  .service-feature-cinema {
    min-height: 610px;
  }

  .service-feature-overlay {
    inset: 18px;
  }

  .service-brief-card {
    padding: 20px;
  }

  .service-brief-card strong {
    font-size: 34px;
  }

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

  .service-models-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .model-tile {
    min-height: auto;
    padding: 18px;
  }

  .model-tile span {
    margin-bottom: 18px;
  }

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

  .service-domain-strip img {
    height: 190px;
  }

  .trust-cinema-head .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .trust-visual-stage {
    min-height: 590px;
  }

  .trust-stage-overlay {
    inset: 18px;
  }

  .trust-review-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px;
  }

  .trust-review-card strong {
    font-size: 32px;
  }

  .trust-mini-card {
    width: min(198px, 52%);
    padding: 14px;
  }

  .trust-mini-one {
    left: 18px;
    top: 84px;
  }

  .trust-mini-two {
    right: 18px;
    top: 166px;
  }

  .trust-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .match-copy h2 {
    font-size: 36px;
  }

  .signal-list {
    margin-top: 30px;
  }

  .signal-list li {
    align-items: flex-start;
  }

  .logo-cloud,
  .service-grid,
  .case-grid,
  .quote-grid,
  .stat-grid,
  .trust-grid,
  .media-grid,
  .article-grid,
  .footer-links,
  .model-grid,
  .model-grid.four,
  .benefit-grid,
  .value-grid,
  .role-grid,
  .team-grid,
  .domain-grid,
  .metric-band,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 38px 1fr;
  }

  .process-item span {
    grid-column: 2;
  }

  .subscribe-row {
    flex-direction: column;
  }

  .admin-auth-card,
  .admin-record header {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .admin-auth-card .btn {
    width: 100%;
  }

  .admin-payload {
    grid-template-columns: 1fr;
  }

  .lumen {
    grid-column: auto;
    justify-self: start;
  }

  .audience-card,
  .final-cta {
    padding: 26px;
  }

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

  .service-card-wide .service-card-media {
    height: 150px;
    min-height: 0;
  }

  .final-cta .btn {
    width: 100%;
  }

  .final-cta .cta-actions {
    display: grid;
  }

  .cta-intake-board {
    padding: 20px;
  }

  .final-cta p {
    font-size: 17px;
  }

  .cta-section {
    padding-bottom: 96px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
