:root {
  --ink: #07080d;
  --soft-ink: #1d1f27;
  --paper: #f5f5f7;
  --white: #ffffff;
  --muted: #697181;
  --blue: #0071e3;
  --cyan: #20c8ee;
  --green: #20c978;
  --amber: #ffb23f;
  --red: #ff6b6b;
  --line: rgba(7, 8, 13, 0.1);
  --shadow: 0 34px 120px rgba(24, 34, 52, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.86), rgba(245, 247, 250, 0));
  pointer-events: none;
}

.nav-shell {
  display: grid;
  width: min(860px, 100%);
  min-height: 62px;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 70px rgba(24, 34, 52, 0.12);
  backdrop-filter: saturate(180%) blur(22px);
  pointer-events: auto;
}

.brand,
.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 820;
}

.brand {
  gap: 11px;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  line-height: 1;
}

.brand-accent {
  color: #0b7df0;
  font-weight: 840;
  background: linear-gradient(110deg, #0877ee 0%, #14bfd6 48%, #6b5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-mark,
.footer-mark {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(0, 113, 227, 0.16);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: #171b23;
  font-size: 15px;
  font-weight: 680;
}

.nav-links a {
  padding: 10px 15px;
  border-radius: 999px;
  color: rgba(7, 8, 13, 0.72);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(0, 113, 227, 0.08);
  color: var(--ink);
}

.nav-cta {
  min-width: 148px;
  padding: 13px 20px;
  border: 1px solid rgba(7, 8, 13, 0.92);
  border-radius: 999px;
  background: #07080d;
  color: #ffffff;
  font-size: 15px;
  font-weight: 780;
  text-align: center;
  box-shadow: 0 14px 32px rgba(7, 8, 13, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(7, 8, 13, 0.24);
}

.story-section {
  position: relative;
  display: grid;
  min-height: 100vh;
  scroll-margin-top: 86px;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  overflow: hidden;
  background: var(--white);
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 70% 40%, rgba(32, 200, 238, 0.14), transparent 42%);
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.story-section.is-visible::before {
  opacity: 1;
}

.is-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 30%, rgba(32, 200, 238, 0.18), transparent 40%),
    linear-gradient(145deg, #07080d, #101827 62%, #07080d);
}

.hero-scene {
  display: grid;
  min-height: 112vh;
  padding-top: 132px;
  grid-template-columns: 1fr;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 52% 23%, rgba(255, 81, 174, 0.18), transparent 12%),
    radial-gradient(circle at 46% 26%, rgba(0, 113, 227, 0.12), transparent 18%),
    #ffffff;
}

.story-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
}

.story-copy.centered {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy {
  width: min(100%, 940px);
  max-width: 940px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: #0b7797;
  font-size: 13px;
  font-weight: 840;
  text-transform: uppercase;
}

.is-dark .eyebrow {
  color: var(--cyan);
}

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

h1 {
  max-width: 1120px;
  margin: 0 auto 26px;
  font-size: clamp(58px, 8.5vw, 132px);
  line-height: 0.92;
  font-weight: 760;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.hero-copy h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(54px, 6.5vw, 88px);
  line-height: 1.02;
  font-weight: 560;
}

.hero-headline .hero-line-main,
.hero-headline .hero-line-accent {
  display: block;
}

.hero-headline .hero-line-accent {
  margin-top: 10px;
  padding-bottom: 0.08em;
  font-size: clamp(52px, 6.6vw, 92px);
  line-height: 1.14;
  font-weight: 760;
  color: #0b7df0;
  background: linear-gradient(90deg, #0877ee 0%, #14bfd6 52%, #6b5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(19px, 1.65vw, 23px);
  line-height: 1.38;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #172033;
  box-shadow: 0 16px 42px rgba(24, 34, 52, 0.09);
  backdrop-filter: blur(18px);
  font-size: 14px;
  font-weight: 760;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(46px, 6.2vw, 94px);
  line-height: 0.96;
  font-weight: 760;
  letter-spacing: 0;
}

.story-copy p {
  color: var(--muted);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.42;
}

.is-dark .story-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 21px;
  border-radius: 999px;
  font: inherit;
  font-weight: 720;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--blue);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(0, 113, 227, 0.25);
}

.button-light {
  color: #07080d;
  border: 1px solid rgba(7, 8, 13, 0.24);
  background: rgba(255, 255, 255, 0.78);
}

.hero-word-grid {
  position: absolute;
  inset: auto 0 8vh;
  display: grid;
  opacity: 0.09;
  grid-template-columns: repeat(4, 1fr);
  color: #ffffff;
  font-size: clamp(60px, 9vw, 160px);
  font-weight: 780;
  letter-spacing: 0;
  pointer-events: none;
}

.hero-word-grid span {
  animation: heroWord 7s ease-in-out infinite;
}

.hero-word-grid span:nth-child(2) {
  animation-delay: 0.8s;
}

.hero-word-grid span:nth-child(3) {
  animation-delay: 1.6s;
}

.hero-word-grid span:nth-child(4) {
  animation-delay: 2.4s;
}

.hero-product-stage {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100vw - 48px));
  min-height: 520px;
  margin: 72px auto 0;
  perspective: 1600px;
}

.spatial-bar {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 4;
  display: flex;
  width: min(760px, 78%);
  height: 54px;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(28, 30, 33, 0.34);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(7, 8, 13, 0.16);
  backdrop-filter: blur(24px);
  transform: translateX(-50%) rotateX(14deg);
}

.spatial-bar span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.spatial-bar b {
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

.spatial-window {
  position: absolute;
  inset: 58px 0 0;
  overflow: hidden;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at 72% 24%, rgba(32, 200, 238, 0.2), transparent 24%);
  box-shadow: 0 44px 110px rgba(24, 34, 52, 0.18);
  transform: rotateX(10deg) rotateY(-8deg) rotateZ(1deg);
  transform-origin: 50% 18%;
  animation: heroWindow 9s ease-in-out infinite;
}

.window-top {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-bottom: 1px solid rgba(7, 8, 13, 0.08);
}

.window-top b {
  font-size: 26px;
}

.window-top span {
  color: var(--muted);
  font-weight: 680;
}

.window-grid {
  display: grid;
  padding: 34px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.window-grid article {
  min-height: 126px;
  padding: 22px;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 12px;
  background: #ffffff;
}

.window-grid small,
.hero-job span,
.scan-metrics small {
  color: var(--muted);
  font-weight: 760;
  text-transform: uppercase;
}

.window-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 54px;
}

.hero-job {
  position: absolute;
  right: 34px;
  width: 280px;
  padding: 18px;
  border: 1px solid rgba(7, 8, 13, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(24, 34, 52, 0.12);
  backdrop-filter: blur(16px);
  animation: heroJob 7s ease-in-out infinite;
}

.hero-job b,
.hero-job small {
  display: block;
  margin-top: 8px;
}

.hero-job-one { top: 230px; }
.hero-job-two { top: 330px; animation-delay: 1.1s; }
.hero-job-three { top: 430px; animation-delay: 2.2s; }

.hero-flow-stage {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100vw - 48px));
  min-height: 500px;
  margin: 64px auto 0;
}

.flow-panel {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 48%, rgba(20, 191, 214, 0.2), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(107, 92, 255, 0.14), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 252, 255, 0.92));
  box-shadow: 0 44px 120px rgba(24, 34, 52, 0.16);
}

.flow-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(7, 8, 13, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 8, 13, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.flow-panel-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 34px 0;
}

.flow-panel-top span,
.flow-column > small,
.filter-core small {
  color: #0877ee;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-panel-top b {
  color: var(--ink);
  font-size: 16px;
}

.flow-columns {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 342px;
  align-items: center;
  padding: 38px 52px 72px;
  grid-template-columns: 1.05fr 0.75fr 1.05fr;
  gap: 44px;
}

.flow-column {
  position: relative;
  min-height: 330px;
  text-align: left;
}

.flow-card,
.ready-card {
  position: absolute;
  width: min(260px, 100%);
  padding: 14px 16px;
  border: 1px solid rgba(7, 8, 13, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 52px rgba(24, 34, 52, 0.12);
  backdrop-filter: blur(18px);
}

.flow-card span,
.ready-card span {
  display: block;
  color: #0b7df0;
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.flow-card b,
.ready-card b {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
}

.flow-card em,
.ready-card em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 680;
}

.flow-card {
  --flow-delay: 0s;
  left: 0;
  opacity: 0;
  will-change: transform, opacity;
  animation: incomingJob 5.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: var(--flow-delay);
}

.card-one { top: 42px; --flow-delay: -0.2s; }
.card-two { top: 106px; left: 42px; --flow-delay: -2s; }
.card-three { top: 170px; --flow-delay: -3.8s; }

.flow-incoming.is-refreshing .flow-card {
  opacity: 0;
}

.flow-card.is-noise {
  color: rgba(7, 8, 13, 0.54);
  background: rgba(255, 255, 255, 0.58);
  filter: saturate(0.65);
}

.flow-card.is-noise::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 79, 129, 0.75);
  transform: scaleX(0);
  transform-origin: left;
  animation: strikeNoise 5.4s ease-in-out infinite;
  animation-delay: var(--flow-delay);
}

.flow-count {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  width: 214px;
  height: 62px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 18px;
  background: #07111f;
  color: #ffffff;
  box-shadow: 0 26px 60px rgba(7, 17, 31, 0.22);
}

.flow-count b {
  display: inline-block;
  min-width: 82px;
  font-size: 42px;
  line-height: 1;
  text-align: right;
}

.flow-count b.is-ticking {
  animation: scanCountTick 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-count span {
  max-width: 80px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.flow-filter {
  position: relative;
  display: grid;
  min-height: 292px;
  place-items: center;
}

.filter-orbit {
  position: absolute;
  width: 236px;
  height: 236px;
  border: 1px solid rgba(20, 191, 214, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(20, 191, 214, 0.18), transparent 60%),
    conic-gradient(from 90deg, transparent, rgba(11, 125, 240, 0.42), transparent 40%, rgba(20, 191, 214, 0.4), transparent 70%);
  animation: filterSpin 11s linear infinite;
}

.filter-orbit::before,
.filter-orbit::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(107, 92, 255, 0.24);
  border-radius: 50%;
}

.filter-orbit::after {
  inset: 70px;
  border-color: rgba(20, 191, 214, 0.36);
}

.filter-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 178px;
  height: 178px;
  place-items: center;
  padding: 24px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, #07111f, #102943);
  color: #ffffff;
  box-shadow: 0 30px 68px rgba(7, 17, 31, 0.24);
}

.filter-core b {
  margin-top: -4px;
  font-size: 24px;
  line-height: 1.04;
}

.filter-core span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 680;
}

.ready-card {
  right: 0;
  border-color: rgba(33, 212, 134, 0.3);
  background: rgba(255, 255, 255, 0.92);
  animation: readyCard 9s ease-in-out infinite;
}

.ready-card span {
  color: #11a96d;
}

.ready-one { top: 42px; }
.ready-two { top: 124px; right: 40px; animation-delay: 1.5s; }
.ready-three { top: 206px; animation-delay: 3s; }

.flow-line {
  position: absolute;
  z-index: 1;
  top: 238px;
  width: 25%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(20, 191, 214, 0.8), transparent);
}

.flow-line-in {
  left: 27%;
}

.flow-line-out {
  right: 27%;
}

.flow-pulse {
  position: absolute;
  z-index: 3;
  top: 231px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #14bfd6;
  box-shadow: 0 0 0 8px rgba(20, 191, 214, 0.14), 0 0 28px rgba(20, 191, 214, 0.62);
  animation: pulseAcross 4.5s ease-in-out infinite;
}

.pulse-one {
  left: 27%;
}

.pulse-two {
  left: 50%;
  animation-delay: 2.25s;
}

.flow-caption {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  width: min(620px, calc(100% - 48px));
  margin: 0;
  padding: 17px 22px;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(24, 34, 52, 0.12);
  backdrop-filter: blur(20px);
  font-size: 20px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transform: translateX(-50%);
}

.how-intro {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 58px max(24px, calc((100vw - 1020px) / 2)) 44px;
  background:
    radial-gradient(circle at 50% 10%, rgba(20, 191, 214, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #effcff 100%);
  text-align: center;
}

.how-intro h2 {
  margin: 0 auto;
  max-width: 980px;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.14;
  font-weight: 760;
}

.how-intro h2 span {
  display: inline-block;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
  color: #0b7df0;
  background: linear-gradient(90deg, #0877ee 0%, #14bfd6 52%, #6b5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.copilot-scene {
  background:
    radial-gradient(circle at 84% 34%, rgba(32, 200, 238, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.copilot-demo {
  position: relative;
  z-index: 2;
  --copilot-cycle: 18s;
  --fill-cycle: 6s;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 18%, rgba(107, 92, 255, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(237, 248, 255, 0.88));
  box-shadow: 0 44px 120px rgba(24, 34, 52, 0.16);
}

.copilot-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(7, 8, 13, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 8, 13, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.application-form {
  position: absolute;
  left: 28px;
  top: 42px;
  width: 64%;
  min-height: 570px;
  padding: 28px;
  border: 1px solid rgba(7, 8, 13, 0.09);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 90px rgba(24, 34, 52, 0.14);
  backdrop-filter: blur(18px);
}

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

.job-cycle {
  position: relative;
  display: block;
  min-width: 250px;
  min-height: 62px;
}

.job-cycle em {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 22px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.18;
  opacity: 0;
  transform: translateY(10px);
}

.copilot-scene.is-visible .job-cycle em {
  animation: jobCycle var(--copilot-cycle) ease-in-out infinite;
}

.job-cycle em:nth-child(2),
.form-field b span:nth-child(2),
.copilot-card b em:nth-child(2) {
  animation-delay: 6s;
}

.job-cycle em:nth-child(3),
.form-field b span:nth-child(3),
.copilot-card b em:nth-child(3) {
  animation-delay: 12s;
}

.application-top b {
  color: #647084;
  font-size: 13px;
  text-transform: uppercase;
}

.progress-track {
  position: relative;
  display: grid;
  margin: 28px 6px 34px;
  grid-template-columns: repeat(5, 1fr);
}

.progress-track::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  background: #c9d4dd;
}

.progress-track i {
  position: relative;
  z-index: 2;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #c9d4dd;
  box-shadow: 0 0 0 7px #ffffff;
}

.copilot-scene.is-visible .progress-track i {
  animation: progressStep var(--fill-cycle) ease-in-out infinite;
}

.progress-track i:nth-child(1) { animation-delay: 0.45s; }
.progress-track i:nth-child(2) { animation-delay: 0.8s; }
.progress-track i:nth-child(3) { animation-delay: 1.15s; }
.progress-track i:nth-child(4) { animation-delay: 1.5s; }
.progress-track i:nth-child(5) { animation-delay: 1.85s; }

.form-field {
  position: relative;
  overflow: hidden;
  width: min(360px, 70%);
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid #b8c4cf;
  border-radius: 7px;
  background: #ffffff;
}

.form-field::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(32, 201, 120, 0.88);
  border-radius: 7px;
  opacity: 0;
  pointer-events: none;
}

.copilot-scene.is-visible .form-field::after {
  animation: fieldFill var(--fill-cycle) ease-in-out infinite;
}

.field-one::after { animation-delay: 0.85s; }
.field-two::after { animation-delay: 1.35s; }
.field-three::after { animation-delay: 1.85s; }
.field-four::after { animation-delay: 2.35s; }

.form-field small,
.form-field b {
  display: block;
}

.form-field small {
  margin-bottom: 8px;
  color: #535d6c;
  font-size: 12px;
  font-weight: 760;
}

.form-field b {
  position: relative;
  color: #3d4654;
  font-size: 14px;
  line-height: 1.35;
  min-height: 19px;
}

.form-field b span {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  transform: translateY(6px);
}

.copilot-scene.is-visible .form-field b span {
  animation: fieldTextCycle var(--copilot-cycle) ease-in-out infinite;
}

.field-three {
  width: min(540px, 92%);
  min-height: 90px;
}

.field-three b {
  min-height: 42px;
}

.field-four {
  width: min(320px, 66%);
}

.form-submit {
  position: absolute;
  right: 28px;
  bottom: 28px;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: #f25270;
  color: #ffffff;
  font: inherit;
  font-weight: 820;
}

.copilot-panel {
  position: absolute;
  right: 28px;
  top: 88px;
  z-index: 3;
  width: min(388px, 42%);
  padding: 0 14px 16px;
  border: 1px solid rgba(11, 125, 240, 0.24);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 36px 100px rgba(7, 17, 31, 0.24);
  animation: copilotFloat 7.5s ease-in-out infinite;
}

.copilot-top {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  margin: 0 -14px 14px;
  padding: 0 15px;
  border-radius: 10px 10px 0 0;
  background: #07111f;
  color: #ffffff;
}

.copilot-top b {
  font-size: 14px;
}

.copilot-top span {
  font-size: 18px;
  font-weight: 840;
}

.copilot-panel p {
  position: relative;
  margin: 0 0 12px;
  color: #1b3758;
  font-size: 12px;
  line-height: 1.35;
  min-height: 34px;
}

.copilot-panel p span {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.copilot-scene.is-visible .copilot-panel p span {
  animation: copilotMessageStart var(--fill-cycle) ease-in-out infinite;
}

.copilot-scene.is-visible .copilot-panel p span:nth-child(2) {
  animation-name: copilotMessageDone;
}

.copilot-panel p span:nth-child(2) {
  animation-name: copilotMessageDone;
}

.copilot-status,
.copilot-card,
.copilot-stats span {
  border: 1px solid rgba(11, 125, 240, 0.16);
  border-radius: 8px;
  background: #eef6ff;
}

.copilot-status {
  display: grid;
  padding: 12px;
  gap: 3px;
}

.copilot-scene.is-visible .copilot-status {
  animation: statusReady var(--fill-cycle) ease-in-out infinite;
}

.copilot-status strong {
  color: #075fec;
  font-size: 17px;
}

.copilot-status span {
  color: #075fec;
  font-size: 17px;
}

.copilot-status small {
  color: #34506f;
  font-size: 12px;
}

.copilot-card {
  margin-top: 10px;
  padding: 12px;
  border-color: rgba(32, 201, 120, 0.24);
  background: #effcf5;
}

.copilot-card span,
.copilot-card b {
  display: block;
}

.copilot-card span {
  color: #007f55;
  font-size: 13px;
}

.copilot-card b {
  position: relative;
  margin-top: 5px;
  color: #17314f;
  font-size: 12px;
  line-height: 1.3;
  min-height: 32px;
}

.copilot-card b em {
  position: absolute;
  inset: 0;
  font-style: normal;
  opacity: 0;
  transform: translateY(6px);
}

.copilot-scene.is-visible .copilot-card b em {
  animation: jobCycle var(--copilot-cycle) ease-in-out infinite;
}

.copilot-scene.is-visible .job-cycle em:nth-child(2),
.copilot-scene.is-visible .form-field b span:nth-child(2),
.copilot-scene.is-visible .copilot-card b em:nth-child(2) {
  animation-delay: 6s;
}

.copilot-scene.is-visible .job-cycle em:nth-child(3),
.copilot-scene.is-visible .form-field b span:nth-child(3),
.copilot-scene.is-visible .copilot-card b em:nth-child(3) {
  animation-delay: 12s;
}

.copilot-card div,
.copilot-actions,
.copilot-stats {
  display: grid;
  gap: 8px;
  margin-top: 11px;
}

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

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

.copilot-card button,
.copilot-actions button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: #e4ebf4;
  color: #07111f;
  font: inherit;
  font-size: 13px;
  font-weight: 840;
}

.copilot-card button:first-child,
.copilot-actions button:nth-child(2) {
  background: #2563eb;
  color: #ffffff;
}

.copilot-card button:first-child {
  animation: panelAction 2.2s ease-in-out infinite;
}

.fill-safe {
  position: relative;
  overflow: visible;
}

.copilot-scene.is-visible .fill-safe {
  animation: fillButtonClick var(--fill-cycle) ease-in-out infinite;
}

.fill-safe::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  opacity: 0;
}

.copilot-scene.is-visible .fill-safe::after {
  animation: fillClickDot var(--fill-cycle) ease-in-out infinite;
}

.copilot-stats span {
  display: grid;
  min-height: 58px;
  align-content: center;
  padding: 8px;
  color: #31506d;
  font-size: 10px;
  text-transform: uppercase;
}

.copilot-stats b {
  color: #07111f;
  font-size: 20px;
  line-height: 1;
}

.copilot-mobile-flow {
  display: none;
}

.documents-scene {
  background:
    radial-gradient(circle at 18% 20%, rgba(32, 201, 120, 0.12), transparent 30%),
    radial-gradient(circle at 80% 68%, rgba(20, 191, 214, 0.13), transparent 32%),
    #ffffff;
}

.document-factory {
  position: relative;
  z-index: 2;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.96), rgba(13, 38, 61, 0.92)),
    #07111f;
  box-shadow: 0 44px 120px rgba(7, 17, 31, 0.24);
}

.document-factory::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.factory-header {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 3;
  width: 240px;
  padding: 18px;
  border: 1px solid rgba(32, 200, 238, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.factory-header span,
.ats-resume span,
.ai-letter span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.factory-header b,
.factory-header small {
  display: block;
}

.factory-header b {
  margin-top: 8px;
  color: #ffffff;
  font-size: 23px;
  line-height: 1.08;
}

.factory-header small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.document-line {
  position: absolute;
  left: 260px;
  top: 128px;
  z-index: 2;
  width: calc(100% - 360px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #20c8ee, #20c978, transparent);
  transform: scaleX(0);
  transform-origin: left;
}

.story-section.is-visible .document-line {
  animation: documentLine 1s ease forwards 0.35s;
}

.ats-resume,
.ai-letter {
  position: absolute;
  z-index: 3;
  width: min(300px, 38%);
  min-height: 388px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  opacity: 0;
  transform: translateY(24px) rotate(-2deg);
}

.ats-resume {
  left: 16%;
  top: 184px;
}

.ai-letter {
  right: 10%;
  top: 224px;
  transform: translateY(24px) rotate(3deg);
}

.story-section.is-visible .ats-resume {
  animation: documentIn 0.7s ease forwards 0.75s;
}

.story-section.is-visible .ai-letter {
  animation: documentInTilt 0.7s ease forwards 1.05s;
}

.ats-resume span,
.ai-letter span {
  color: #0b7797;
}

.ats-resume b,
.ai-letter b {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.08;
}

.ats-resume i {
  display: block;
  width: 100%;
  height: 11px;
  margin-top: 18px;
  border-radius: 999px;
  background: #dce6ef;
  transform: scaleX(0.24);
  transform-origin: left;
}

.ats-resume i:nth-of-type(2) { width: 86%; }
.ats-resume i:nth-of-type(3) { width: 74%; }
.ats-resume i:nth-of-type(4) { width: 54%; }

.story-section.is-visible .ats-resume i {
  animation: writeLine 1.1s ease forwards;
}

.story-section.is-visible .ats-resume i:nth-of-type(1) { animation-delay: 1.2s; }
.story-section.is-visible .ats-resume i:nth-of-type(2) { animation-delay: 1.35s; }
.story-section.is-visible .ats-resume i:nth-of-type(3) { animation-delay: 1.5s; }
.story-section.is-visible .ats-resume i:nth-of-type(4) { animation-delay: 1.65s; }

.ai-letter p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.ats-resume em,
.ai-letter em,
.document-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-style: normal;
  font-weight: 840;
}

.ats-resume em,
.ai-letter em {
  margin-top: 26px;
  padding: 10px 13px;
  color: #087a54;
  background: #e9fbf2;
  font-size: 12px;
  text-transform: uppercase;
}

.document-badge {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  min-height: 54px;
  padding: 0 22px;
  color: #ffffff;
  background: linear-gradient(90deg, #0877ee, #14bfd6, #20c978);
  box-shadow: 0 24px 70px rgba(20, 191, 214, 0.28);
  transform: translateX(-50%) scale(0.94);
  opacity: 0;
}

.story-section.is-visible .document-badge {
  animation: packageReady 0.7s ease forwards 1.75s;
}

.profile-lab {
  position: relative;
  z-index: 2;
  isolation: isolate;
  min-height: 690px;
  overflow: hidden;
  border-radius: 44px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --float-x: 0px;
  --float-y: 0px;
  background:
    radial-gradient(circle at 86% 10%, rgba(32, 200, 238, 0.22), transparent 34%),
    radial-gradient(circle at 18% 90%, rgba(112, 88, 255, 0.11), transparent 38%),
    linear-gradient(180deg, #fbfdff, #edf4f8);
  box-shadow: var(--shadow);
  perspective: 1700px;
}

.profile-lab::before {
  content: "";
  position: absolute;
  inset: 58px 44px 54px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lab-glow {
  position: absolute;
  inset: -18%;
  z-index: 0;
  background:
    radial-gradient(circle at 68% 42%, rgba(32, 200, 238, 0.24), transparent 26%),
    radial-gradient(circle at 52% 58%, rgba(112, 88, 255, 0.18), transparent 27%);
  filter: blur(26px);
  animation: labGlow 8s ease-in-out infinite;
}

.lab-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.34;
  background-image: radial-gradient(circle, rgba(7, 8, 13, 0.18) 1.2px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at 60% 42%, black, transparent 68%);
}

.scan-plane {
  position: absolute;
  left: 48%;
  top: 51%;
  z-index: 1;
  width: 420px;
  height: 520px;
  border-radius: 44px;
  background:
    linear-gradient(rgba(32, 200, 238, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 88, 255, 0.13) 1px, transparent 1px);
  background-size: 24px 24px;
  box-shadow: 0 38px 90px rgba(30, 75, 97, 0.12);
  transform: translate(-50%, -50%) rotateX(63deg) rotateZ(-24deg);
  transform-origin: center;
  animation: scanPlane 7s ease-in-out infinite;
}

.live-phone {
  position: absolute;
  top: 50%;
  left: 60%;
  z-index: 3;
  width: 344px;
  height: 612px;
  padding: 14px;
  border-radius: 54px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98), rgba(145, 154, 168, 0.72) 43%, rgba(255, 255, 255, 0.96));
  box-shadow:
    -28px 36px 90px rgba(25, 39, 59, 0.24),
    22px 14px 52px rgba(32, 200, 238, 0.14);
  transform: translate(calc(-50% + var(--float-x)), calc(-50% + var(--float-y))) rotateX(calc(8deg + var(--tilt-x))) rotateY(calc(-18deg + var(--tilt-y))) rotateZ(2deg);
  transform-style: preserve-3d;
  animation: phoneDrift 7s ease-in-out infinite;
}

.live-phone::before {
  content: "";
  position: absolute;
  inset: 20px -10px 18px auto;
  z-index: -1;
  width: 34px;
  border-radius: 0 34px 34px 0;
  background: linear-gradient(180deg, #7e8897, #f6f8fb 42%, #596272);
  filter: drop-shadow(22px 20px 34px rgba(0, 0, 0, 0.18));
  transform: translateZ(-24px);
}

.live-phone::after {
  content: "";
  position: absolute;
  inset: 18px 22px auto;
  z-index: 9;
  height: 42%;
  border-radius: 38px 38px 22px 22px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 58%);
  pointer-events: none;
  transform: translateZ(34px);
}

.phone-metal {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  pointer-events: none;
  box-shadow:
    inset 10px 0 22px rgba(255, 255, 255, 0.46),
    inset -10px 0 18px rgba(38, 45, 58, 0.22);
}

.phone-camera {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 8;
  width: 106px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #04050a, #101625);
  transform: translateX(-50%) translateZ(24px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone-camera::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #0d52ff, #02030a 70%);
}

.phone-screen-live {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 48% 36%, rgba(32, 200, 238, 0.2), transparent 35%),
    radial-gradient(circle at 46% 55%, rgba(112, 88, 255, 0.3), transparent 41%),
    linear-gradient(180deg, #0a0f19, #141b29 56%, #080c14);
  transform: translateZ(12px);
}

.phone-screen-live::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    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: 18px 18px;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 72%);
}

.phone-screen-live::after {
  content: "";
  position: absolute;
  inset: -26%;
  z-index: 2;
  background: conic-gradient(from 110deg, transparent 0 22%, rgba(32, 200, 238, 0.13), transparent 38% 100%);
  animation: screenSweep 5.2s linear infinite;
}

.scan-grid-flow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 0 44%, rgba(32, 200, 238, 0.22) 50%, transparent 57%),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.06), transparent 45%);
  transform: translateY(-40%);
  animation: screenScan 3.8s ease-in-out infinite;
}

.scan-ui-top {
  position: absolute;
  z-index: 5;
  top: 70px;
  left: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.scan-ui-top span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.scan-ui-top b {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

#profile-scan-canvas {
  position: absolute;
  inset: 84px 0 92px;
  z-index: 3;
  width: 100%;
  height: calc(100% - 176px);
}

.scan-score {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  z-index: 5;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transform: translateZ(30px);
}

.scan-score span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.scan-score strong {
  color: var(--cyan);
  font-size: 42px;
  line-height: 1;
}

.live-card {
  position: absolute;
  z-index: 6;
  width: min(254px, 38%);
  padding: 20px 21px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(236, 242, 248, 0.62)),
    radial-gradient(circle at 20% 0, rgba(32, 200, 238, 0.12), transparent 42%);
  box-shadow:
    0 28px 80px rgba(24, 34, 52, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  transform: translate3d(var(--float-x), var(--float-y), 70px);
  animation: cardDrift 5.8s ease-in-out infinite;
}

.live-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0), rgba(32, 200, 238, 0.34));
  box-shadow: 0 0 18px rgba(32, 200, 238, 0.18);
}

.live-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(32, 200, 238, 0.34);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(32, 200, 238, 0.18), rgba(255, 255, 255, 0.3));
}

.live-card small {
  display: block;
  margin-bottom: 10px;
  padding-left: 42px;
  color: #0b7797;
  font-weight: 840;
  text-transform: uppercase;
}

.live-card b {
  display: block;
  padding-left: 42px;
  line-height: 1.25;
}

.live-card-a {
  top: 86px;
  left: 44px;
}

.live-card-a::after,
.live-card-b::after,
.live-card-e::after {
  right: -92px;
}

.live-card-b {
  top: 276px;
  left: 26px;
  animation-delay: 0.7s;
}

.live-card-c {
  top: 178px;
  right: 32px;
  animation-delay: 1.3s;
}

.live-card-c::after,
.live-card-d::after {
  left: -82px;
  transform: rotate(180deg);
}

.live-card-d {
  right: 56px;
  bottom: 108px;
  animation-delay: 1.9s;
}

.live-card-e {
  left: 72px;
  bottom: 68px;
  animation-delay: 2.5s;
}

.profile-scan-3d {
  min-height: 720px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 32%, rgba(32, 200, 238, 0.2), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(112, 88, 255, 0.16), transparent 30%),
    linear-gradient(145deg, #05070d, #101827 58%, #05070d);
  box-shadow: 0 42px 120px rgba(7, 8, 13, 0.22);
}

.profile-scan-3d::before {
  inset: 0;
  border: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 72%);
}

.profile-scan-3d::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(32, 200, 238, 0), rgba(32, 200, 238, 0.16), rgba(32, 200, 238, 0)),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.08), transparent 38%);
  mix-blend-mode: screen;
  transform: translateX(-46%);
  animation: labScanBeam 4.2s ease-in-out infinite;
  pointer-events: none;
}

#profile-3d-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.scan-copy-card {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 5;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.scan-copy-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.scan-copy-card b {
  font-size: 18px;
}

.scan-hud {
  position: absolute;
  top: 116px;
  right: 28px;
  z-index: 5;
  display: grid;
  width: min(230px, 35%);
  gap: 18px;
  color: #ffffff;
}

.scan-hud div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px 12px;
}

.scan-hud span,
.scan-hud b {
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.scan-hud b {
  color: rgba(255, 255, 255, 0.72);
}

.scan-hud i {
  position: relative;
  display: block;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.16);
}

.scan-hud i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  border-radius: inherit;
  background: linear-gradient(90deg, #20c8ee, #7058ff, #ffffff);
  animation: metricPulse 2.6s ease-in-out infinite;
}

.scan-metrics {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.scan-metrics article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(22px);
}

.scan-metrics small {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.scan-metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.profile-cinematic {
  position: relative;
  z-index: 2;
  min-height: 640px;
  overflow: visible;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(32, 200, 238, 0.18), transparent 38%),
    radial-gradient(circle at 88% 20%, rgba(112, 88, 255, 0.08), transparent 30%);
  box-shadow: none;
  perspective: 1400px;
}

.profile-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.72), transparent 24%),
    radial-gradient(circle, rgba(7, 8, 13, 0.18) 1.2px, transparent 1.5px);
  background-size: auto, 26px 26px;
  opacity: 0.28;
  pointer-events: none;
}

.profile-cinematic::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 2;
  background:
    conic-gradient(from 0deg at 50% 48%, transparent 0 18%, rgba(32, 200, 238, 0.22), transparent 34% 100%);
  mix-blend-mode: screen;
  animation: cinemaRadar 9s linear infinite;
  pointer-events: none;
}

.cinema-depth {
  position: absolute;
  inset: 34px 22px;
  z-index: 0;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 38%, rgba(32, 200, 238, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.56);
  transform: rotateX(9deg) rotateY(-5deg);
  transform-origin: center;
  animation: cinemaFloat 8s ease-in-out infinite;
}

.cinema-frame {
  position: absolute;
  inset: 26px;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #030609;
  box-shadow:
    0 36px 110px rgba(7, 8, 13, 0.22),
    inset 0 0 44px rgba(32, 200, 238, 0.14);
  transform: rotateX(5deg) rotateY(-3deg) translateZ(28px);
  animation: cinemaFrameFloat 8s ease-in-out infinite;
}

.body-scan-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.98;
  filter: saturate(1.08) contrast(1.02) brightness(1.04);
  transform: scale(1.03);
}

.scan-grid-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(32, 200, 238, 0.18), transparent 46%);
  background-size: 32px 32px, 32px 32px, auto;
  mix-blend-mode: screen;
  opacity: 0.52;
}

.scan-sweep {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(32, 200, 238, 0.46) 48%, rgba(255, 255, 255, 0.28) 50%, rgba(32, 200, 238, 0.26) 52%, transparent 66%),
    linear-gradient(180deg, transparent 0 45%, rgba(32, 200, 238, 0.22) 50%, transparent 56%);
  mix-blend-mode: screen;
  transform: translateX(-62%);
  animation: bodyScanSweep 4.8s ease-in-out infinite;
}

.scan-crosshair {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(32, 200, 238, 0.38);
  border-radius: 50%;
  box-shadow:
    0 0 34px rgba(32, 200, 238, 0.16),
    inset 0 0 34px rgba(32, 200, 238, 0.12);
  transform: translate(-50%, -50%) rotateX(64deg);
  animation: crosshairPulse 3s ease-in-out infinite;
}

.criteria-callout {
  position: absolute;
  z-index: 6;
  width: 132px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: none;
  animation: calloutFloat 5.8s ease-in-out infinite;
}

.criteria-callout::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg, rgba(32, 200, 238, 0), rgba(32, 200, 238, 0.92), rgba(7, 8, 13, 0.36));
  box-shadow: 0 0 18px rgba(32, 200, 238, 0.28);
}

.criteria-callout::after {
  content: "";
  position: absolute;
  top: 13px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(32, 200, 238, 0.92);
  border-right: 2px solid rgba(32, 200, 238, 0.92);
}

.criteria-callout span {
  position: absolute;
  top: 12px;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(32, 200, 238, 0.82);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(32, 200, 238, 0.48);
}

.criteria-callout small {
  display: block;
  margin-bottom: 4px;
  color: #0071e3;
  font-size: 20px;
  line-height: 0.95;
  font-weight: 760;
  text-transform: none;
}

.criteria-callout b {
  display: block;
  max-width: 124px;
  color: #1d2635;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 690;
}

.callout-skills {
  top: 42px;
  left: -118px;
}

.callout-experience {
  top: 252px;
  left: -124px;
  animation-delay: 0.7s;
}

.callout-rules {
  left: -106px;
  bottom: 62px;
  animation-delay: 1.4s;
}

.callout-education {
  top: 46px;
  right: -118px;
  animation-delay: 0.3s;
}

.callout-location {
  top: 266px;
  right: -124px;
  animation-delay: 1s;
}

.callout-target {
  right: -110px;
  bottom: 66px;
  animation-delay: 1.7s;
}

.callout-skills,
.callout-experience,
.callout-rules {
  text-align: right;
}

.callout-education,
.callout-location,
.callout-target {
  text-align: left;
}

.callout-skills span,
.callout-experience span,
.callout-rules span {
  right: -15px;
}

.callout-education span,
.callout-location span,
.callout-target span {
  left: -15px;
}

.callout-skills::before,
.callout-experience::before,
.callout-rules::before {
  right: -108px;
}

.callout-skills::after,
.callout-experience::after,
.callout-rules::after {
  right: -114px;
  transform: rotate(45deg);
}

.callout-education::before,
.callout-location::before,
.callout-target::before {
  left: -108px;
  transform: rotate(180deg);
}

.callout-education::after,
.callout-location::after,
.callout-target::after {
  left: -114px;
  transform: rotate(225deg);
}

.code-terminal {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px);
}

.code-scene h2 {
  max-width: 760px;
  font-size: clamp(54px, 6.4vw, 96px);
  line-height: 0.96;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.terminal-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.terminal-top b {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-transform: uppercase;
}

#code-stream {
  min-height: 480px;
  margin: 0;
  padding: 28px;
  overflow: hidden;
  color: #d9faff;
  font: 15px/1.65 Consolas, "SFMono-Regular", Menlo, monospace;
  white-space: pre-wrap;
}

.build-scene,
.jobs-scene {
  grid-template-columns: 1fr;
}

.build-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1120px, 100%);
  margin: 12px auto 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.build-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.build-scene.is-visible .build-grid article {
  transform: translateY(0);
  opacity: 1;
}

.build-grid article:nth-child(2) {
  transition-delay: 0.12s;
}

.build-grid article:nth-child(3) {
  transition-delay: 0.24s;
}

.build-grid article:nth-child(4) {
  transition-delay: 0.36s;
}

.build-grid span {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green), #c9ffe1);
}

.build-grid b {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.08;
}

.build-grid small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.workspace-builder {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 34px auto 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0, rgba(32, 200, 238, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 249, 252, 0.92));
  box-shadow: 0 42px 130px rgba(24, 34, 52, 0.14);
}

.workspace-builder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 8, 13, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 8, 13, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 70%);
  pointer-events: none;
}

.builder-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.builder-top span,
.module-copy small {
  color: #087fa1;
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.builder-top strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.builder-top b {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(32, 201, 120, 0.32);
  border-radius: 999px;
  background: rgba(32, 201, 120, 0.1);
  color: #0b7d4d;
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
}

.build-scene.is-visible .builder-top b {
  animation: builderComplete 0.6s ease 4.2s forwards;
}

.builder-progress {
  position: relative;
  z-index: 2;
  height: 42px;
  margin: 0 26px 22px;
}

.builder-progress::before,
.builder-progress i {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  height: 3px;
  border-radius: 999px;
}

.builder-progress::before {
  background: rgba(7, 8, 13, 0.1);
}

.builder-progress i {
  right: auto;
  width: 0;
  background: linear-gradient(90deg, #20c8ee, #20c978);
  box-shadow: 0 0 24px rgba(32, 200, 238, 0.32);
}

.build-scene.is-visible .builder-progress i {
  animation: buildProgress 4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.builder-progress span {
  position: absolute;
  top: 10px;
  left: calc(var(--step) * 33.333%);
  width: 24px;
  height: 24px;
  border: 3px solid #d9e5ec;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(24, 34, 52, 0.1);
  transform: translateX(-50%);
}

.builder-progress span::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: #20c978;
  opacity: 0;
  transform: scale(0.45);
}

.build-scene.is-visible .builder-progress span::after {
  animation: progressDot 0.45s ease forwards;
  animation-delay: calc(0.55s + var(--step) * 0.95s);
}

.build-modules {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.build-modules article {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(24, 34, 52, 0.08);
  transform: translateY(24px);
  opacity: 0;
}

.build-scene.is-visible .build-modules article {
  animation: moduleArrive 0.72s ease forwards;
}

.build-scene.is-visible .build-modules article:nth-child(1) { animation-delay: 0.35s; }
.build-scene.is-visible .build-modules article:nth-child(2) { animation-delay: 1.25s; }
.build-scene.is-visible .build-modules article:nth-child(3) { animation-delay: 2.15s; }
.build-scene.is-visible .build-modules article:nth-child(4) { animation-delay: 3.05s; }

.module-visual {
  position: relative;
  display: grid;
  min-height: 150px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 35%, rgba(32, 200, 238, 0.18), transparent 40%),
    linear-gradient(145deg, #07101a, #142537);
}

.module-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 72%);
}

.module-copy b {
  display: block;
  margin: 8px 0 8px;
  font-size: 24px;
  line-height: 1.05;
}

.module-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.build-modules em {
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #20c978;
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.4);
}

.build-scene.is-visible .build-modules em {
  animation: checkPop 0.42s ease forwards;
}

.build-scene.is-visible .build-modules article:nth-child(1) em { animation-delay: 1s; }
.build-scene.is-visible .build-modules article:nth-child(2) em { animation-delay: 1.9s; }
.build-scene.is-visible .build-modules article:nth-child(3) em { animation-delay: 2.8s; }
.build-scene.is-visible .build-modules article:nth-child(4) em { animation-delay: 3.7s; }

.mini-sheet,
.mini-database,
.mini-network,
.mini-report {
  position: relative;
  z-index: 2;
}

.mini-sheet {
  display: grid;
  width: 140px;
  padding: 14px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.mini-sheet span,
.mini-sheet b {
  height: 10px;
  border-radius: 999px;
  background: #dce8ef;
}

.mini-sheet span:nth-child(1),
.mini-sheet b:nth-child(4) {
  background: #20c978;
}

.mini-database {
  width: 130px;
  height: 112px;
}

.mini-database span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 34px;
  border: 1px solid rgba(32, 200, 238, 0.4);
  border-radius: 50%;
  background: rgba(32, 200, 238, 0.1);
}

.mini-database span:nth-child(1) { top: 8px; }
.mini-database span:nth-child(2) { top: 38px; }
.mini-database span:nth-child(3) { top: 68px; }
.mini-database i {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 2px;
  height: 72px;
  background: #20c8ee;
  box-shadow: 0 0 18px rgba(32, 200, 238, 0.7);
}

.mini-network {
  width: 142px;
  height: 120px;
}

.mini-network::before,
.mini-network::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-top: 2px solid rgba(32, 200, 238, 0.48);
  border-bottom: 2px solid rgba(32, 200, 238, 0.28);
  transform: skewY(-18deg);
}

.mini-network span {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(32, 200, 238, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-network span:nth-child(1) { left: 4px; top: 42px; }
.mini-network span:nth-child(2) { left: 54px; top: 12px; }
.mini-network span:nth-child(3) { right: 4px; top: 42px; }
.mini-network span:nth-child(4) { left: 54px; bottom: 10px; }

.mini-report {
  width: 130px;
  height: 120px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.mini-report span {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 10px;
  border-radius: 999px;
  background: #dce8ef;
}

.mini-report span:nth-child(1) { top: 20px; }
.mini-report span:nth-child(2) { top: 42px; right: 36px; }
.mini-report span:nth-child(3) { top: 64px; right: 24px; }
.mini-report i {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 78px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #20c8ee, #20c978);
}

.pipeline-scene {
  background: var(--paper);
}

.workflow-map {
  position: relative;
  z-index: 2;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(32, 200, 238, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 18%, rgba(32, 200, 238, 0.2), transparent 28%),
    radial-gradient(circle at 12% 80%, rgba(32, 201, 120, 0.15), transparent 28%),
    linear-gradient(145deg, #07111d, #0c1b29 52%, #09101a);
  box-shadow: 0 38px 110px rgba(9, 30, 45, 0.28);
}

.workflow-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 54% 46%, #000 0 48%, transparent 80%);
  pointer-events: none;
}

.workflow-map::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  background:
    linear-gradient(90deg, transparent, rgba(32, 200, 238, 0.12), transparent),
    radial-gradient(circle at 50% 42%, rgba(32, 200, 238, 0.16), transparent 38%);
  opacity: 0.85;
  pointer-events: none;
}

.workflow-header {
  position: absolute;
  top: 28px;
  left: 30px;
  z-index: 4;
  display: grid;
  gap: 6px;
}

.workflow-header span {
  color: #20c8ee;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-header b {
  color: #ffffff;
  font-size: 24px;
}

.workflow-routes {
  position: absolute;
  inset: 28px 18px 18px;
  z-index: 2;
  width: calc(100% - 36px);
  height: calc(100% - 46px);
  overflow: visible;
}

.workflow-routes marker path {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#arrowCyan path { stroke: #20c8ee; }
#arrowGreen path { stroke: #20c978; }
#arrowRed path { stroke: #ff5d7d; }

.route {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 820;
  stroke-dashoffset: 820;
  filter: drop-shadow(0 0 14px rgba(32, 200, 238, 0.32));
}

.route-main {
  stroke: #20c8ee;
}

.route-pass {
  stroke: #20c978;
}

.route-reject {
  stroke: #ff5d7d;
}

.route-report {
  stroke: #c8d2df;
}

.pipeline-scene.is-visible .route {
  animation: drawWorkflow 1.4s ease forwards;
}

.pipeline-scene.is-visible .route-main { animation-delay: 0.35s; }
.pipeline-scene.is-visible .route-reject { animation-delay: 1.55s; }
.pipeline-scene.is-visible .route-pass { animation-delay: 1.8s; }

.workflow-token {
  position: relative;
  z-index: 3;
  fill: #ffffff;
  opacity: 0;
  filter: drop-shadow(0 0 16px rgba(32, 200, 238, 0.8));
}

.token-pass { fill: #20c978; }
.token-reject { fill: #ff5d7d; }

.pipeline-scene.is-visible .workflow-token {
  opacity: 1;
}

.workflow-link {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 999px;
  background: rgba(226, 238, 247, 0.9);
  box-shadow: 0 0 12px rgba(226, 238, 247, 0.24);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
}

.link-pass-duplicate {
  right: calc(4% + 78px);
  top: calc(33% + 104px);
  width: 4px;
  height: 34px;
  transform: scaleY(0);
  transform-origin: center top;
}

.link-cover-report {
  left: calc(37% + 150px);
  right: calc(5% + 150px);
  bottom: calc(10% + 46px);
  height: 5px;
}

.link-duplicate-database-x {
  left: calc(7% + 75px);
  right: calc(4% + 150px);
  bottom: calc(10% + 142px);
  height: 5px;
}

.link-duplicate-database-y {
  left: calc(7% + 75px);
  bottom: calc(10% + 92px);
  width: 5px;
  height: 50px;
  transform: scaleY(0);
  transform-origin: center top;
}

.link-database-cover {
  left: calc(7% + 150px);
  right: 63%;
  bottom: calc(10% + 46px);
  height: 5px;
}

.pipeline-scene.is-visible .workflow-link {
  animation: linkReveal 0.5s ease forwards;
}

.pipeline-scene.is-visible .link-pass-duplicate { animation-delay: 2.6s; }
.pipeline-scene.is-visible .link-duplicate-database-x { animation-delay: 3.05s; }
.pipeline-scene.is-visible .link-duplicate-database-y { animation-delay: 3.2s; }
.pipeline-scene.is-visible .link-database-cover { animation-delay: 3.45s; }
.pipeline-scene.is-visible .link-cover-report { animation-delay: 3.9s; }

.workflow-node {
  position: absolute;
  z-index: 4;
  width: 150px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(32, 200, 238, 0.22);
  border-radius: 18px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(5, 13, 23, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
}

.pipeline-scene.is-visible .workflow-node {
  animation: workflowNodeIn 0.68s ease forwards;
}

.pipeline-scene.is-visible .node-portals { animation-delay: 0.1s; }
.pipeline-scene.is-visible .node-ingest { animation-delay: 0.45s; }
.pipeline-scene.is-visible .node-match { animation-delay: 0.95s; }
.pipeline-scene.is-visible .node-reject { animation-delay: 1.75s; }
.pipeline-scene.is-visible .node-pass { animation-delay: 2s; }
.pipeline-scene.is-visible .node-duplicate { animation-delay: 2.55s; }
.pipeline-scene.is-visible .node-database { animation-delay: 3.1s; }
.pipeline-scene.is-visible .node-cover { animation-delay: 3.45s; }
.pipeline-scene.is-visible .node-report { animation-delay: 3.85s; }

.workflow-node::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #20c8ee;
  box-shadow: 0 0 0 8px rgba(32, 200, 238, 0.1), 0 0 22px rgba(32, 200, 238, 0.65);
}

.node-portals::after,
.node-ingest::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: linear-gradient(90deg, #20c8ee, rgba(32, 200, 238, 0.15));
  box-shadow: 0 0 18px rgba(32, 200, 238, 0.42);
}

.node-portals::after {
  top: 50%;
  left: calc(100% - 2px);
  width: 48px;
  height: 3px;
}

.node-ingest::after {
  top: calc(100% - 2px);
  left: 50%;
  width: 3px;
  height: 38px;
  background: linear-gradient(180deg, #20c8ee, rgba(32, 200, 238, 0.15));
}

.workflow-node span {
  display: inline-flex;
  color: #20c8ee;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workflow-node b {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.08;
}

.workflow-node small {
  display: block;
  margin-top: 7px;
  color: rgba(226, 238, 247, 0.74);
  font-size: 11px;
  line-height: 1.3;
}

.portal-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.portal-logos i {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.job-volume {
  position: relative;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.job-volume strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.job-volume small {
  margin-top: 4px;
  color: rgba(226, 238, 247, 0.76);
  font-size: 10px;
  text-transform: uppercase;
}

.job-volume em {
  position: absolute;
  right: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #20c8ee);
  opacity: 0;
  animation: jobVolumePulse 2.4s ease-in-out infinite;
}

.job-volume em:nth-of-type(1) {
  top: 12px;
}

.job-volume em:nth-of-type(2) {
  top: 23px;
  animation-delay: 0.35s;
}

.job-volume em:nth-of-type(3) {
  top: 34px;
  animation-delay: 0.7s;
}

.is-reject {
  border-color: rgba(255, 93, 125, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 93, 125, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(21, 9, 18, 0.84);
}

.is-reject::before {
  background: #ff5d7d;
  box-shadow: 0 0 0 8px rgba(255, 93, 125, 0.11), 0 0 24px rgba(255, 93, 125, 0.7);
}

.is-reject span {
  color: #ff8ba3;
}

.is-pass {
  border-color: rgba(32, 201, 120, 0.48);
}

.is-pass::before {
  background: #20c978;
  box-shadow: 0 0 0 8px rgba(32, 201, 120, 0.1), 0 0 24px rgba(32, 201, 120, 0.62);
}

.is-pass span {
  color: #52e49b;
}

.node-portals {
  left: 6%;
  top: 18%;
  width: 166px;
}
.node-ingest { left: 35%; top: 17%; }
.node-match { left: 35%; top: 39%; }
.node-reject { right: 5%; top: 13%; }
.node-pass {
  right: 4%;
  top: 33%;
  width: 160px;
  min-height: 88px;
}
.node-duplicate { right: 4%; top: 52%; }
.node-database { left: 7%; bottom: 10%; }
.node-cover { left: 37%; bottom: 10%; }
.node-report { right: 5%; bottom: 10%; }

.jobs-river {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  min-height: 520px;
  margin: 0 auto;
  overflow: hidden;
}

.jobs-river article {
  position: absolute;
  top: calc(26px + var(--lane) * 58px);
  left: -320px;
  width: 300px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  animation: jobRiver 18s linear infinite;
  animation-delay: calc(var(--i) * -1.5s);
}

.jobs-river span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.jobs-river b {
  display: block;
  margin: 8px 0;
  font-size: 24px;
}

.jobs-river small {
  color: rgba(255, 255, 255, 0.62);
}

.decision-scene {
  background: #ffffff;
}

.decision-board {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.decision-stat {
  min-height: 190px;
  padding: 26px;
  border-radius: 32px;
  background: #f5f7fb;
  box-shadow: var(--shadow);
}

.decision-stat small {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 840;
  text-transform: uppercase;
}

.decision-stat b {
  font-size: 72px;
  line-height: 1;
}

.decision-stat.good b {
  color: var(--green);
}

.decision-stat.reject b {
  color: var(--amber);
}

.ready-scene {
  background: var(--paper);
}

.apply-stack {
  position: relative;
  z-index: 2;
  min-height: 620px;
}

.letter-page,
.tracker-row,
.database-row {
  position: absolute;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.letter-page {
  top: 10px;
  right: 80px;
  width: min(460px, 82%);
  min-height: 560px;
  padding: 34px;
  border-radius: 30px;
  transform: rotate(3deg);
}

.letter-page span,
.tracker-row span,
.database-row span {
  display: block;
  margin-bottom: 12px;
  color: #0b7797;
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.letter-page b {
  display: block;
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.05;
}

.job-title-rotator {
  position: relative;
  min-height: 72px;
  overflow: hidden;
}

.job-title-rotator em {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  color: var(--ink);
  font-style: normal;
  opacity: 0;
  transform: translateY(24px);
  animation: roleTitleCycle 9s ease-in-out infinite;
}

.job-title-rotator em:nth-child(2) {
  animation-delay: 3s;
}

.job-title-rotator em:nth-child(3) {
  animation-delay: 6s;
}

.letter-page p {
  color: var(--muted);
  line-height: 1.55;
}

.letter-page i {
  display: block;
  height: 12px;
  margin-top: 18px;
  border-radius: 999px;
  background: #dce4ed;
}

.letter-page i:nth-of-type(2) { width: 88%; }
.letter-page i:nth-of-type(3) { width: 72%; }
.letter-page i:nth-of-type(4) { width: 56%; }

.tracker-row,
.database-row {
  left: 20px;
  width: min(360px, 74%);
  padding: 22px;
  border-radius: 24px;
}

.tracker-row {
  top: 130px;
}

.database-row {
  bottom: 90px;
}

.tracker-row b,
.database-row b {
  font-size: 22px;
}

.final-scene {
  display: flex;
  justify-content: center;
  text-align: center;
}

.final-card {
  max-width: 980px;
}

.final-card h2 {
  font-size: clamp(52px, 8vw, 116px);
}

.final-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.42;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.price-line strong {
  font-size: 78px;
}

.price-line span {
  max-width: 240px;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0 126px;
  background:
    radial-gradient(circle at 20% 12%, rgba(32, 200, 238, 0.18), transparent 30%),
    radial-gradient(circle at 78% 28%, rgba(107, 92, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5fdff 48%, #ffffff 100%);
  border-bottom: 1px solid rgba(7, 8, 13, 0.06);
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(7, 8, 13, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 8, 13, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  pointer-events: none;
}

.reviews-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.reviews-copy h2 {
  margin-left: auto;
  margin-right: auto;
}

.reviews-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.42;
}

.review-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.review-metrics span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(24, 34, 52, 0.08);
  color: #253043;
  font-size: 14px;
  font-weight: 760;
  backdrop-filter: blur(18px);
}

.review-metrics strong {
  color: var(--blue);
  font-size: 18px;
}

.reviews-stage {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  margin-top: 56px;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.reviews-section.is-visible .reviews-stage {
  opacity: 1;
}

.review-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: reviewSlide 42s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.review-track-reverse {
  margin-left: -190px;
  animation-name: reviewSlideReverse;
  animation-duration: 48s;
}

.reviews-section.is-visible .review-track {
  animation-play-state: running;
}

.review-group {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
}

.review-card {
  display: flex;
  width: 360px;
  min-height: 204px;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 90px rgba(24, 34, 52, 0.12);
  opacity: 0;
  backdrop-filter: blur(22px);
  animation:
    reviewFade 0.72s cubic-bezier(0.16, 1, 0.3, 1) both,
    reviewFloat 7.4s ease-in-out infinite;
  animation-delay:
    calc(var(--r) * 0.06s),
    calc(0.9s + (var(--r) * -0.34s));
}

.review-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.review-card header strong {
  color: #142036;
  font-size: 15px;
  line-height: 1.2;
}

.review-card header span {
  display: inline-flex;
  min-width: 112px;
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(255, 184, 28, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(255, 184, 28, 0.14);
  color: #0877ee;
  font-size: 13px;
  font-weight: 860;
}

.review-card header span::before {
  content: "\2605\2605\2605\2605\2605";
  content: "★★★★★";
  content: "\2605\2605\2605\2605\2605";
  color: #ffb81c;
  font-size: 11px;
  letter-spacing: -1px;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(255, 184, 28, 0.22);
}

.review-card p {
  margin: 18px 0 20px;
  color: #0d1220;
  font-size: 20px;
  font-weight: 760;
  line-height: 1.25;
}

.review-card footer span {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(32, 201, 120, 0.18);
  border-radius: 999px;
  background: rgba(32, 201, 120, 0.08);
  color: #116440;
  font-size: 12px;
  font-weight: 780;
}

.waitlist-section {
  position: relative;
  overflow: hidden;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 72% 38%, rgba(32, 200, 238, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.waitlist-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background-image:
    linear-gradient(90deg, transparent, rgba(7, 8, 13, 0.08), transparent);
  pointer-events: none;
}

.waitlist-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: start;
  gap: clamp(36px, 7vw, 90px);
}

.waitlist-copy {
  padding-top: 12px;
}

.waitlist-wrap h2 {
  max-width: 720px;
}

.waitlist-wrap p {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(7, 8, 13, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 110px rgba(24, 34, 52, 0.13);
  backdrop-filter: blur(18px);
}

label {
  display: grid;
  gap: 8px;
  color: #303641;
  font-size: 13px;
  font-weight: 760;
}

input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(7, 8, 13, 0.16);
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  font: inherit;
}

input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

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

.waitlist-form.is-submitting {
  pointer-events: none;
}

.waitlist-success {
  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
  overflow: hidden;
  padding: 34px 22px;
  border: 1px solid rgba(7, 8, 13, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 18%, rgba(20, 191, 214, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff, #f2fbff);
  text-align: center;
}

.waitlist-success[hidden] {
  display: none;
}

.waitlist-form.is-success > label,
.waitlist-form.is-success > button,
.waitlist-form.is-success > .form-note {
  display: none;
}

.waitlist-success::before {
  content: "";
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #0877ee, #14bfd6 58%, #6b5cff);
  box-shadow: 0 20px 46px rgba(20, 191, 214, 0.28);
  animation: successPop 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.waitlist-success::after {
  content: "✓";
  position: absolute;
  top: 49px;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #ffffff;
  font-size: 40px;
  font-weight: 820;
  line-height: 1;
  transform: translateX(-50%);
  text-shadow: 0 2px 8px rgba(7, 8, 13, 0.18);
}

.waitlist-success h3 {
  max-width: 330px;
  margin: 0 auto 12px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
}

.waitlist-success p {
  max-width: 340px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.success-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.success-burst span {
  position: absolute;
  left: 50%;
  top: 84px;
  --x: -62px;
  --y: -10px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #14bfd6;
  opacity: 0;
  animation: confettiBurst 1s 0.18s ease-out both;
}

.success-burst span:nth-child(2) {
  background: #0877ee;
  --x: -88px;
  --y: -46px;
}

.success-burst span:nth-child(3) {
  background: #6b5cff;
  --x: 92px;
  --y: -42px;
}

.success-burst span:nth-child(4) {
  background: #39df8b;
  --x: -104px;
  --y: 36px;
}

.success-burst span:nth-child(5) {
  background: #ffbc45;
  --x: 106px;
  --y: 36px;
}

.success-burst span:nth-child(6) {
  background: #ff51ae;
  --x: 0;
  --y: -72px;
}

body.modal-open {
  overflow: hidden;
}

.access-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.access-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.access-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(20, 191, 214, 0.18), transparent 34%),
    rgba(7, 8, 13, 0.56);
  backdrop-filter: blur(18px);
}

.access-dialog {
  position: relative;
  width: min(620px, 100%);
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 191, 214, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 255, 0.94));
  box-shadow: 0 44px 120px rgba(7, 8, 13, 0.32);
  text-align: center;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.22s ease;
}

.access-modal.is-open .access-dialog {
  transform: translateY(0) scale(1);
}

.access-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(7, 8, 13, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
}

.access-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #0877ee, #14bfd6 58%, #6b5cff);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(20, 191, 214, 0.28);
  font-size: 34px;
  font-weight: 780;
}

.access-dialog h2 {
  margin: 0 auto 16px;
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.03;
}

.access-dialog p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(20px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  background: var(--paper);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--blue);
  font-weight: 700;
}

.story-copy,
.profile-lab,
.code-terminal,
.workflow-map,
.apply-stack,
.decision-board,
.build-grid,
.jobs-river,
.final-card {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.story-section.is-visible .story-copy,
.story-section.is-visible .profile-lab,
.story-section.is-visible .code-terminal,
.story-section.is-visible .workflow-map,
.story-section.is-visible .apply-stack,
.story-section.is-visible .decision-board,
.story-section.is-visible .build-grid,
.story-section.is-visible .jobs-river,
.story-section.is-visible .final-card {
  transform: translateY(0);
  opacity: 1;
}

.hero-scene .story-copy {
  transform: translateY(0);
  opacity: 1;
}

@keyframes heroWord {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(-18px); opacity: 1; }
}

@keyframes heroWindow {
  0%, 100% { transform: rotateX(10deg) rotateY(-8deg) rotateZ(1deg) translateY(0); }
  50% { transform: rotateX(8deg) rotateY(-5deg) rotateZ(0deg) translateY(-14px); }
}

@keyframes heroJob {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.88; }
  50% { transform: translate3d(-20px, -8px, 0); opacity: 1; }
}

@keyframes incomingJob {
  0% { transform: translate3d(-62px, 0, 0) scale(0.96); opacity: 0; }
  10% { opacity: 0.86; }
  20% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; }
  60% { transform: translate3d(12px, 0, 0) scale(1); opacity: 1; }
  82% { transform: translate3d(82px, 0, 0) scale(0.98); opacity: 0.26; }
  100% { transform: translate3d(132px, 0, 0) scale(0.96); opacity: 0; }
}

@keyframes strikeNoise {
  0%, 24% { transform: scaleX(0); opacity: 0; }
  36%, 64% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0); opacity: 0; }
}

@keyframes jobCycle {
  0% { opacity: 0; transform: translateY(10px); }
  3%, 30% { opacity: 1; transform: translateY(0); }
  33.33%, 100% { opacity: 0; transform: translateY(-8px); }
}

@keyframes fieldTextCycle {
  0%, 8% { opacity: 0; transform: translateY(6px); }
  13%, 30% { opacity: 1; transform: translateY(0); }
  33.33%, 100% { opacity: 0; transform: translateY(-5px); }
}

@keyframes progressStep {
  0%, 18%, 100% { background: #c9d4dd; transform: scale(1); }
  24%, 68% {
    background: #20c978;
    transform: scale(1.18);
    box-shadow: 0 0 0 7px #ffffff, 0 0 24px rgba(32, 201, 120, 0.5);
  }
}

@keyframes fieldFill {
  0%, 18%, 100% { opacity: 0; box-shadow: none; }
  24%, 58% {
    opacity: 1;
    box-shadow: inset 0 0 0 999px rgba(32, 201, 120, 0.035), 0 0 22px rgba(32, 201, 120, 0.18);
  }
}

@keyframes copilotMessageStart {
  0%, 18% { opacity: 1; transform: translateY(0); }
  24%, 100% { opacity: 0; transform: translateY(-5px); }
}

@keyframes copilotMessageDone {
  0%, 22% { opacity: 0; transform: translateY(6px); }
  30%, 86% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-5px); }
}

@keyframes statusReady {
  0%, 22% { opacity: 0.58; transform: translateY(0); }
  30%, 86% { opacity: 1; transform: translateY(-1px); }
  100% { opacity: 0.58; transform: translateY(0); }
}

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

@keyframes panelAction {
  0%, 100% { transform: translateY(0); box-shadow: none; }
  50% { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24); }
}

@keyframes fillButtonClick {
  0%, 10%, 100% { transform: translateY(0); box-shadow: none; }
  15% { transform: translateY(1px) scale(0.97); box-shadow: inset 0 2px 8px rgba(7, 17, 31, 0.24); }
  24%, 58% { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(37, 99, 235, 0.24); }
}

@keyframes fillClickDot {
  0%, 8%, 100% { opacity: 0; transform: scale(0.5); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  13% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  24% { opacity: 0; transform: scale(1.9); box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
}

@keyframes documentLine {
  to { transform: scaleX(1); }
}

@keyframes documentIn {
  to { opacity: 1; transform: translateY(0) rotate(-2deg); }
}

@keyframes documentInTilt {
  to { opacity: 1; transform: translateY(0) rotate(3deg); }
}

@keyframes mobileDocumentIn {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes mobileCopilotPulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.18);
    filter: brightness(1.12);
  }
}

@keyframes writeLine {
  to { transform: scaleX(1); }
}

@keyframes packageReady {
  to { opacity: 1; transform: translateX(-50%) scale(1); }
}

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

@keyframes readyCard {
  0%, 100% { transform: translate3d(10px, 0, 0); opacity: 0.72; }
  42%, 76% { transform: translate3d(-14px, 0, 0); opacity: 1; }
}

@keyframes pulseAcross {
  0% { transform: translate3d(0, 0, 0) scale(0.7); opacity: 0; }
  16% { opacity: 1; }
  82% { opacity: 1; }
  100% { transform: translate3d(260px, 0, 0) scale(1); opacity: 0; }
}

@keyframes pulseDown {
  0% { transform: translate3d(0, 0, 0) scale(0.7); opacity: 0; }
  16% { opacity: 1; }
  82% { opacity: 1; }
  100% { transform: translate3d(0, 128px, 0) scale(1); opacity: 0; }
}

@keyframes buildProgress {
  to { width: 100%; }
}

@keyframes progressDot {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes checkPop {
  70% {
    opacity: 1;
    transform: scale(1.14);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes cinemaFloat {
  0%, 100% { transform: rotateX(9deg) rotateY(-5deg) translateY(0); }
  50% { transform: rotateX(7deg) rotateY(-3deg) translateY(-12px); }
}

@keyframes cinemaFrameFloat {
  0%, 100% { transform: rotateX(5deg) rotateY(-3deg) translateZ(28px) translateY(0); }
  50% { transform: rotateX(4deg) rotateY(-1deg) translateZ(40px) translateY(-8px); }
}

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

@keyframes bodyScanSweep {
  0%, 100% { transform: translateX(-62%); opacity: 0.54; }
  50% { transform: translateX(62%); opacity: 0.9; }
}

@keyframes crosshairPulse {
  0%, 100% { transform: translate(-50%, -50%) rotateX(64deg) scale(0.9); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) rotateX(64deg) scale(1.08); opacity: 1; }
}

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

@keyframes labGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.88; }
  50% { transform: translate3d(-22px, 18px, 0) scale(1.04); opacity: 1; }
}

@keyframes labScanBeam {
  0%, 100% { transform: translateX(-46%); opacity: 0.36; }
  50% { transform: translateX(46%); opacity: 0.72; }
}

@keyframes metricPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
}

@keyframes scanPlane {
  0%, 100% {
    transform: translate(-50%, -50%) rotateX(63deg) rotateZ(-24deg) translateY(0);
    opacity: 0.52;
  }
  50% {
    transform: translate(-50%, -50%) rotateX(63deg) rotateZ(-20deg) translateY(-18px);
    opacity: 0.72;
  }
}

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

@keyframes screenScan {
  0%, 100% { transform: translateY(-42%); opacity: 0.72; }
  50% { transform: translateY(42%); opacity: 0.96; }
}

@keyframes phoneDrift {
  0%, 100% {
    transform: translate(calc(-50% + var(--float-x)), calc(-50% + var(--float-y))) rotateX(calc(8deg + var(--tilt-x))) rotateY(calc(-18deg + var(--tilt-y))) rotateZ(2deg);
  }
  50% {
    transform: translate(calc(-50% + var(--float-x)), calc(-50% - 16px + var(--float-y))) rotateX(calc(9deg + var(--tilt-x))) rotateY(calc(-13deg + var(--tilt-y))) rotateZ(1deg);
  }
}

@keyframes cardDrift {
  0%, 100% {
    transform: translate3d(var(--float-x), var(--float-y), 70px);
  }
  50% {
    transform: translate3d(var(--float-x), calc(-14px + var(--float-y)), 70px);
  }
}

@keyframes pipelinePulse {
  0% { left: 8%; }
  100% { left: calc(92% - 24px); }
}

@keyframes drawWorkflow {
  to { stroke-dashoffset: 0; }
}

@keyframes workflowNodeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes jobVolumePulse {
  0% {
    opacity: 0;
    transform: translateX(-22px) scaleX(0.45);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(12px) scaleX(1);
  }
}

@keyframes linkReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes roleTitleCycle {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  8%, 30% {
    opacity: 1;
    transform: translateY(0);
  }
  38%, 100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes jobRiver {
  0% { transform: translateX(0) scale(0.92); opacity: 0; }
  4% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(calc(100vw + 520px)) scale(1.04); opacity: 0; }
}

@keyframes scanCountTick {
  0% {
    color: #ffffff;
    transform: translateY(0) scale(1);
  }
  42% {
    color: #20c8ee;
    transform: translateY(-3px) scale(1.04);
  }
  100% {
    color: #ffffff;
    transform: translateY(0) scale(1);
  }
}

@keyframes reviewSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}

@keyframes reviewSlideReverse {
  0% { transform: translateX(calc(-50% - 8px)); }
  100% { transform: translateX(0); }
}

@keyframes reviewFade {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

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

@keyframes successPop {
  0% {
    opacity: 0;
    transform: scale(0.62);
  }
  70% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes checkDraw {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes confettiBurst {
  0% {
    opacity: 0;
    transform: translate(-50%, 0) scale(0.4);
  }
  22% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--x)), var(--y)) scale(1);
  }
}

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

  .nav-shell {
    width: min(620px, 100%);
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .story-section,
  .waitlist-wrap {
    grid-template-columns: 1fr;
  }

  .waitlist-wrap {
    max-width: 680px;
    margin: 0 auto;
  }

  .story-section {
    padding-block: 96px;
  }

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

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

  .workflow-map,
  .profile-lab,
  .copilot-demo,
  .document-factory,
  .apply-stack {
    min-height: 620px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 76px;
    padding: 10px 12px;
  }

  .nav-shell {
    min-height: 56px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 8px 14px;
  }

  .nav-cta {
    display: none;
  }

  .brand {
    font-size: 18px;
  }

  .story-section {
    min-height: auto;
    padding: 92px 16px;
    max-width: 100vw;
  }

  .hero-scene,
  .final-scene {
    min-height: 100vh;
  }

  .hero-scene {
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
    padding-top: 116px;
    padding-bottom: 64px;
  }

  .hero-copy {
    display: flex;
    min-height: calc(100svh - 176px);
    flex-direction: column;
    justify-content: flex-start;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-left: auto;
    margin-right: auto;
    padding-top: 28px;
  }

  .hero-copy .eyebrow {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof {
    width: calc(100vw - 48px);
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof span {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .hero-actions {
    width: calc(100vw - 48px);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: 36px;
    font-weight: 760;
    letter-spacing: 0;
  }

  .hero-copy h1 {
    max-width: 350px;
    font-size: clamp(42px, 11.6vw, 52px);
    line-height: 1;
    font-weight: 560;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 335px;
    font-size: 19px;
    line-height: 1.38;
  }

  .hero-headline .hero-line-accent {
    margin-top: 8px;
    font-size: clamp(52px, 14.8vw, 64px);
    line-height: 1.14;
    font-weight: 760;
  }

  h2 {
    font-size: 40px;
    font-weight: 760;
  }

  .code-scene h2 {
    font-size: clamp(62px, 15vw, 86px);
    line-height: 0.92;
  }

  .story-copy p,
  .final-card p {
    font-size: 18px;
  }

  .hero-word-grid {
    display: none;
  }

  .hero-product-stage {
    width: calc(100vw - 32px);
    min-height: 430px;
    margin-top: 50px;
  }

  .hero-flow-stage {
    width: calc(100vw - 32px);
    min-height: 800px;
    margin-top: 72px;
  }

  .flow-panel {
    min-height: 780px;
    border-radius: 28px;
  }

  .flow-panel-top {
    padding: 22px 20px 0;
  }

  .flow-panel-top b {
    font-size: 13px;
  }

  .flow-columns {
    display: block;
    min-height: 670px;
    padding: 24px 18px 118px;
  }

  .flow-column {
    min-height: 190px;
  }

  .flow-incoming {
    margin-bottom: 16px;
  }

  .flow-filter {
    position: absolute;
    left: 50%;
    top: 238px;
    min-height: 0;
    transform: translateX(-50%);
  }

  .filter-orbit {
    width: 152px;
    height: 152px;
  }

  .filter-core {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    padding: 14px;
  }

  .filter-core b {
    font-size: 17px;
  }

  .filter-core span {
    font-size: 11px;
  }

  .flow-ready {
    margin-top: 150px;
  }

  .flow-card,
  .ready-card {
    width: 190px;
    padding: 12px 13px;
    border-radius: 15px;
  }

  .flow-card b,
  .ready-card b {
    font-size: 15px;
  }

  .flow-card em,
  .ready-card em {
    font-size: 11px;
  }

  .card-one { top: 30px; }
  .card-two { top: 86px; left: 88px; }
  .card-three { top: 142px; }

  .flow-count {
    display: none;
  }

  .ready-one { top: 34px; }
  .ready-two { top: 112px; right: 64px; }
  .ready-three { top: 194px; }

  .flow-line {
    left: 50%;
    top: 251px;
    width: 2px;
    height: 128px;
    background: linear-gradient(180deg, transparent, rgba(20, 191, 214, 0.75), transparent);
  }

  .flow-line-in {
    left: 50%;
  }

  .flow-line-out {
    right: auto;
    left: 50%;
    top: 345px;
  }

  .flow-pulse {
    left: calc(50% - 8px);
    top: 251px;
    animation-name: pulseDown;
  }

  .pulse-one {
    left: calc(50% - 8px);
  }

  .pulse-two {
    left: calc(50% - 8px);
    animation-delay: 2.25s;
  }

  .flow-caption {
    bottom: 18px;
    width: calc(100% - 36px);
    padding: 14px 16px;
    border-radius: 20px;
    font-size: 17px;
  }

  .how-intro {
    min-height: 240px;
    padding: 46px 22px 36px;
  }

  .how-intro h2 {
    font-size: 34px;
    line-height: 1.14;
  }

  .copilot-demo {
    display: grid;
    min-height: auto;
    padding: 16px;
    border-radius: 26px;
  }

  .application-form,
  .copilot-panel {
    display: none;
  }

  .copilot-mobile-flow {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
  }

  .mobile-flow-top,
  .mobile-flow-preview,
  .mobile-copilot-steps li {
    border: 1px solid rgba(7, 8, 13, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 62px rgba(24, 34, 52, 0.1);
    backdrop-filter: blur(18px);
  }

  .mobile-flow-top {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    border-radius: 18px;
  }

  .mobile-flow-top span {
    color: #07111f;
    font-size: 15px;
    font-weight: 840;
  }

  .mobile-flow-top b {
    padding: 7px 10px;
    border-radius: 999px;
    background: #e9fbf2;
    color: #087a54;
    font-size: 11px;
    text-transform: uppercase;
  }

  .mobile-flow-preview {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
  }

  .mobile-flow-preview strong {
    font-size: 24px;
    line-height: 1.1;
  }

  .mobile-progress {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 2px 6px 4px;
  }

  .mobile-progress::before {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 50%;
    height: 2px;
    background: #cbd6df;
  }

  .mobile-progress i {
    position: relative;
    z-index: 2;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #22c978;
    box-shadow: 0 0 0 7px #ffffff, 0 0 22px rgba(32, 201, 120, 0.32);
    animation: mobileCopilotPulse 2.8s ease-in-out infinite;
  }

  .mobile-progress i:nth-child(2) { animation-delay: 0.25s; }
  .mobile-progress i:nth-child(3) { animation-delay: 0.5s; }
  .mobile-progress i:nth-child(4) { animation-delay: 0.75s; }

  .mobile-flow-preview p {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 13px 14px;
    border: 1px solid rgba(32, 201, 120, 0.32);
    border-radius: 12px;
    background: #f7fffb;
  }

  .mobile-flow-preview p span {
    color: #647084;
    font-size: 12px;
    font-weight: 760;
  }

  .mobile-flow-preview p b {
    color: #243044;
    font-size: 17px;
  }

  .mobile-copilot-steps {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .mobile-copilot-steps li {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    row-gap: 4px;
    padding: 16px;
    border-radius: 18px;
  }

  .mobile-copilot-steps li span {
    display: grid;
    width: 36px;
    height: 36px;
    grid-row: 1 / span 2;
    place-items: center;
    border-radius: 12px;
    background: #07111f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 860;
  }

  .mobile-copilot-steps li b {
    color: #07111f;
    font-size: 17px;
    line-height: 1.12;
  }

  .mobile-copilot-steps li small {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.38;
  }

  .document-factory {
    display: grid;
    order: 2;
    min-height: auto;
    gap: 14px;
    padding: 18px;
    border-radius: 26px;
  }

  .documents-scene .story-copy {
    order: 1;
  }

  .factory-header {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    padding: 18px;
    border-radius: 18px;
  }

  .factory-header b {
    font-size: 24px;
  }

  .document-line {
    display: none;
  }

  .ats-resume,
  .ai-letter {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
    transform: translateY(16px) rotate(0);
  }

  .ats-resume {
    display: grid;
    gap: 12px;
  }

  .ai-letter {
    display: grid;
    gap: 10px;
  }

  .story-section.is-visible .ats-resume,
  .story-section.is-visible .ai-letter {
    animation-name: mobileDocumentIn;
  }

  .ats-resume b,
  .ai-letter b {
    margin: 0;
    font-size: 25px;
  }

  .ats-resume i {
    margin-top: 0;
  }

  .ats-resume em,
  .ai-letter em {
    width: fit-content;
    margin-top: 4px;
  }

  .ai-letter p {
    margin: 0;
    font-size: 16px;
  }

  .document-badge {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    text-align: center;
    transform: none;
    opacity: 1;
  }

  .story-section.is-visible .document-badge {
    animation: none;
  }

  .spatial-bar {
    width: 86%;
    height: 42px;
  }

  .spatial-bar span {
    width: 24px;
    height: 24px;
  }

  .spatial-window {
    inset: 46px 0 0;
    transform: none;
    animation: none;
  }

  .window-top {
    min-height: 58px;
    padding: 0 18px;
  }

  .window-top b {
    font-size: 18px;
  }

  .window-top span {
    display: none;
  }

  .window-grid {
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .window-grid article {
    min-height: 82px;
  }

  .window-grid strong {
    font-size: 34px;
  }

  .hero-job {
    right: 18px;
    left: 18px;
    width: auto;
  }

  .hero-job-one { top: 274px; }
  .hero-job-two,
  .hero-job-three { display: none; }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .profile-lab {
    min-height: 680px;
    border-radius: 28px;
  }

  .profile-scan-3d {
    min-height: 620px;
    border-radius: 16px;
  }

  .profile-cinematic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: auto;
    padding: 14px;
    overflow: hidden;
    border-radius: 28px;
    background:
      radial-gradient(circle at 50% 24%, rgba(32, 200, 238, 0.18), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(239, 252, 255, 0.78));
    box-shadow: 0 28px 80px rgba(7, 8, 13, 0.12);
    perspective: none;
  }

  .profile-cinematic::before {
    background:
      radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.74), transparent 28%),
      radial-gradient(circle, rgba(7, 8, 13, 0.14) 1px, transparent 1.35px);
    background-size: auto, 24px 24px;
    opacity: 0.22;
  }

  .profile-cinematic::after,
  .cinema-depth {
    display: none;
  }

  .cinema-frame {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    height: min(112vw, 440px);
    border-radius: 26px;
    transform: none;
    animation: none;
  }

  .body-scan-image {
    object-position: center 35%;
    transform: none;
  }

  .scan-crosshair {
    display: none;
  }

  .criteria-callout {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 84px;
    padding: 13px 12px 13px 36px;
    border: 1px solid rgba(7, 8, 13, 0.08);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 34px rgba(24, 34, 52, 0.1);
    backdrop-filter: blur(18px);
    text-align: left;
    animation: none;
    transform: none;
  }

  .criteria-callout::before,
  .criteria-callout::after {
    display: none;
  }

  .criteria-callout span {
    left: 13px;
    top: 16px;
    width: 12px;
    height: 12px;
    background: rgba(232, 251, 255, 0.96);
  }

  .criteria-callout small {
    margin-bottom: 7px;
    color: #0071e3;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
  }

  .criteria-callout b {
    max-width: none;
    font-size: 12px;
    line-height: 1.18;
  }

  .callout-skills,
  .callout-experience,
  .callout-rules,
  .callout-education,
  .callout-location,
  .callout-target {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    text-align: left;
  }

  .scan-copy-card {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .scan-hud {
    top: auto;
    right: 18px;
    bottom: 152px;
    width: calc(100% - 36px);
    gap: 10px;
  }

  .scan-metrics {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .scan-metrics article {
    padding: 12px 14px;
  }

  .scan-metrics strong {
    font-size: 17px;
  }

  .profile-lab::before {
    inset: 42px 14px;
    border-radius: 28px;
  }

  .scan-plane {
    width: 290px;
    height: 430px;
  }

  .live-phone {
    top: 48%;
    left: 50%;
    width: 238px;
    height: 438px;
    animation: none;
    transform: translate(-50%, -50%) rotateX(5deg) rotateY(-9deg) rotateZ(1deg);
  }

  .phone-camera {
    width: 82px;
    height: 24px;
  }

  .scan-ui-top {
    top: 58px;
    left: 18px;
    right: 18px;
  }

  .scan-ui-top b {
    display: none;
  }

  #profile-scan-canvas {
    inset: 74px 0 78px;
    height: calc(100% - 152px);
  }

  .scan-score {
    left: 16px;
    right: 16px;
    bottom: 18px;
    padding: 13px;
  }

  .scan-score strong {
    font-size: 31px;
  }

  .live-card {
    width: calc(50% - 20px);
    padding: 13px;
    border-radius: 17px;
    font-size: 12px;
    animation: none;
  }

  .live-card::before {
    left: 12px;
    top: 12px;
    width: 22px;
    height: 22px;
    border-radius: 7px;
  }

  .live-card::after {
    display: none;
  }

  .live-card small,
  .live-card b {
    padding-left: 32px;
  }

  .live-card-a,
  .live-card-b {
    left: 12px;
  }

  .live-card-c,
  .live-card-d {
    right: 12px;
  }

  .live-card-a,
  .live-card-c {
    top: 16px;
  }

  .live-card-b,
  .live-card-d {
    top: auto;
    bottom: 18px;
  }

  .live-card-e {
    left: 21%;
    bottom: 112px;
    width: 58%;
  }

  #code-stream {
    min-height: 420px;
    padding: 20px;
    font-size: 12px;
  }

  .build-grid,
  .decision-board {
    grid-template-columns: 1fr;
  }

  .decision-scene .story-copy {
    order: 1;
  }

  .decision-board {
    order: 2;
  }

  .workspace-builder {
    padding: 18px;
    border-radius: 22px;
  }

  .builder-top {
    display: grid;
  }

  .builder-progress {
    margin-inline: 12px;
  }

  .build-modules {
    grid-template-columns: 1fr;
  }

  .build-grid article {
    min-height: 210px;
  }

  .build-modules article {
    display: grid;
    min-height: 230px;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 16px;
  }

  .module-visual {
    min-height: 150px;
    margin-bottom: 0;
  }

  .workflow-map {
    display: grid;
    min-height: auto;
    padding: 104px 18px 18px;
    gap: 12px;
    border-radius: 24px;
  }

  .workflow-routes {
    display: none;
  }

  .workflow-link {
    display: none;
  }

  .workflow-header {
    top: 22px;
    left: 22px;
    right: 22px;
  }

  .workflow-node {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: auto;
    min-height: auto;
  }

  .node-portals::after,
  .node-ingest::after {
    display: none;
  }

  .jobs-river article {
    width: 250px;
  }

  .letter-page {
    right: 0;
    width: 100%;
    transform: none;
  }

  .tracker-row,
  .database-row {
    left: 0;
    width: 82%;
  }

  .price-line {
    align-items: center;
    flex-direction: column;
  }

  .price-line span {
    text-align: center;
  }

  .reviews-section {
    padding: 86px 0 94px;
  }

  .reviews-copy {
    padding: 0 16px;
  }

  .reviews-stage {
    gap: 12px;
    margin-top: 38px;
  }

  .review-track,
  .review-group {
    gap: 12px;
  }

  .review-track-reverse {
    margin-left: -120px;
  }

  .review-card {
    width: min(82vw, 314px);
    min-height: 218px;
    padding: 18px;
    border-radius: 20px;
  }

  .review-card p {
    font-size: 17px;
  }

  .review-metrics span {
    width: 100%;
    max-width: 330px;
    justify-content: center;
  }

  .waitlist-section {
    padding: 82px 16px;
  }

  .waitlist-form {
    padding: 20px;
    border-radius: 24px;
  }

  .access-dialog {
    padding: 38px 20px 24px;
    border-radius: 26px;
  }

  .access-close {
    top: 12px;
    right: 12px;
    min-height: 36px;
    padding: 0 12px;
  }

  .access-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 17px;
    font-size: 30px;
  }

  .access-dialog h2 {
    font-size: 32px;
  }

  .access-dialog p:not(.eyebrow) {
    font-size: 17px;
  }

  .access-actions {
    flex-direction: column;
  }

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

@media (max-width: 420px) {
  h1 {
    font-size: 33px;
    line-height: 0.98;
  }

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

  .hero-copy h1 {
    max-width: 350px;
    font-size: 42px;
  }

  .hero-headline .hero-line-accent {
    font-size: 54px;
  }

  .hero-word-grid {
    font-size: 50px;
  }
}

@keyframes pipelinePulseMobile {
  0% { top: 7%; }
  100% { top: 86%; }
}

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