:root {
  color-scheme: dark;
  --bg: #06100e;
  --bg-elevated: #0b1714;
  --surface: rgba(12, 27, 23, 0.78);
  --surface-solid: #0c1b17;
  --surface-bright: #12251f;
  --text: #f5fff8;
  --text-soft: #c0d1c7;
  --muted: #82988d;
  --line: rgba(187, 255, 102, 0.16);
  --line-strong: rgba(187, 255, 102, 0.42);
  --acid: #b9ff66;
  --acid-ink: #102009;
  --cyan: #3ee7d2;
  --violet: #a98bff;
  --orange: #ffae57;
  --danger: #ff667d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --page-pad: clamp(20px, 4vw, 64px);
  --content: 1440px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f3f8f2;
  --bg-elevated: #e7f1e8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-bright: #dcebe0;
  --text: #07110f;
  --text-soft: #30463b;
  --muted: #5f7569;
  --line: rgba(19, 76, 54, 0.15);
  --line-strong: rgba(16, 95, 65, 0.35);
  --acid: #6edf43;
  --acid-ink: #07110f;
  --cyan: #008f83;
  --violet: #7655e6;
  --orange: #d97000;
  --shadow: 0 30px 80px rgba(24, 63, 44, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--acid);
  color: var(--acid-ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  touch-action: manipulation;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-160%);
  border: 2px solid var(--text);
  border-radius: 10px;
  background: var(--acid);
  color: var(--acid-ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.ambient__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.ambient__beam {
  position: absolute;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.12;
}

.ambient__beam--one {
  top: -34vw;
  right: -8vw;
  background: var(--acid);
}

.ambient__beam--two {
  top: 45vh;
  left: -40vw;
  background: var(--violet);
}

.ambient__cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  transform: translate3d(calc(var(--pointer-x, 50vw) - 50%), calc(var(--pointer-y, 30vh) - 50%), 0);
  background: radial-gradient(circle, rgba(62, 231, 210, 0.13), transparent 66%);
  transition: opacity 200ms ease;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 32px), 1380px);
  min-height: 64px;
  padding: 8px 10px 8px 16px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(130%);
  transition: border-color 180ms ease, background 180ms ease, transform 300ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-strong);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  gap: 10px;
}

.brand__mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.brand__mark rect {
  fill: var(--acid);
  stroke: var(--acid);
}

.brand__mark path {
  fill: var(--acid-ink);
}

.brand__name {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand__edition {
  padding: 2px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: grid;
  min-height: 44px;
  padding: 0 16px;
  place-items: center;
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  background: var(--surface-bright);
  color: var(--text);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.icon-button,
.header-cta {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.icon-button {
  position: relative;
  display: grid;
  padding: 0;
  place-items: center;
  background: var(--surface);
  color: var(--text);
}

.theme-icon {
  position: absolute;
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease, opacity 220ms ease;
}

.theme-icon--moon {
  transform: rotate(-35deg) scale(0.6);
  opacity: 0;
}

[data-theme="light"] .theme-icon--sun {
  transform: rotate(45deg) scale(0.6);
  opacity: 0;
}

[data-theme="light"] .theme-icon--moon {
  transform: rotate(0) scale(1);
  opacity: 1;
}

.header-cta {
  display: grid;
  padding: 0 18px;
  place-items: center;
  border-color: var(--acid);
  background: var(--acid);
  color: var(--acid-ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  transition: filter 160ms ease, transform 160ms ease;
}

.header-cta:hover,
.button--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  width: min(100%, var(--content));
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px var(--page-pad) 74px;
  gap: clamp(38px, 6vw, 100px);
}

.eyebrow,
.section-kicker,
.micro-label,
.feature-card__label,
.hero__meta,
.signal-console__footer,
.floating-tag,
.workflow-step span,
.boundary-zone__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 10px;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-soft);
  background: var(--surface);
}

.eyebrow__index {
  padding-left: 10px;
  border-left: 1px solid var(--line-strong);
  color: var(--acid);
}

.status-dot,
.live-status span,
.button__pulse {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(185, 255, 102, 0.1), 0 0 22px rgba(185, 255, 102, 0.65);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(58px, 7.6vw, 124px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero__accent {
  display: block;
  color: var(--acid);
  text-shadow: 0 0 44px rgba(185, 255, 102, 0.16);
}

.hero__lead {
  max-width: 680px;
  margin: 32px 0 0;
  color: var(--text-soft);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.8;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  gap: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  cursor: pointer;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, filter 160ms ease;
}

.button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--acid-ink);
}

.button--ghost {
  background: var(--surface);
  color: var(--text);
}

.button--ghost:hover {
  border-color: var(--cyan);
  background: var(--surface-bright);
}

.button.is-loading {
  cursor: wait;
  opacity: 0.75;
}

.button.is-loading .button__pulse {
  animation: status-pulse 800ms ease-in-out infinite alternate;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 10px 22px;
  color: var(--muted);
}

.hero__meta span::before {
  content: "/";
  margin-right: 8px;
  color: var(--acid);
}

.hero__visual {
  position: relative;
  perspective: 1200px;
}

.signal-console {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(185, 255, 102, 0.06), transparent 32%),
    var(--surface-solid);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotateY(var(--tilt-y, 0deg)) rotateX(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: transform 160ms ease-out;
}

.signal-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.5;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.signal-console__header,
.signal-console__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.signal-console__header {
  min-height: 92px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.signal-console__header > div:first-child {
  display: grid;
  gap: 2px;
}

.signal-console__header strong {
  font-size: 20px;
}

.micro-label {
  color: var(--muted);
}

.live-status {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.live-status.is-offline span {
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(255, 102, 125, 0.1), 0 0 18px rgba(255, 102, 125, 0.5);
}

.signal-stage {
  position: relative;
  min-height: 500px;
}

.signal-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.signal-path {
  fill: none;
  stroke: url(#flow-gradient);
  stroke-width: 1.5;
  stroke-dasharray: 7 9;
  animation: dash-flow 14s linear infinite;
}

.signal-path--b {
  animation-direction: reverse;
  opacity: 0.72;
}

.signal-particle {
  fill: var(--acid);
  filter: drop-shadow(0 0 8px var(--acid));
}

.signal-particle--a {
  offset-path: path("M42 160C170 160 166 238 310 238S445 90 580 90");
  animation: particle-flow 5s ease-in-out infinite;
}

.signal-particle--b {
  offset-path: path("M42 330C184 330 183 238 310 238S458 370 580 370");
  animation: particle-flow 5.6s 1.2s ease-in-out infinite reverse;
}

.reactor-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 184px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.reactor-core__ring,
.reactor-core__center {
  position: absolute;
  border-radius: 50%;
}

.reactor-core__ring {
  inset: 0;
  border: 1px solid var(--line-strong);
}

.reactor-core__ring::before,
.reactor-core__ring::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 20px var(--acid);
}

.reactor-core__ring::before {
  top: 13px;
  left: 24px;
}

.reactor-core__ring::after {
  right: 18px;
  bottom: 20px;
  background: var(--violet);
  box-shadow: 0 0 20px var(--violet);
}

.reactor-core__ring--outer {
  animation: orbit 12s linear infinite;
}

.reactor-core__ring--inner {
  inset: 24px;
  border-style: dashed;
  animation: orbit 9s linear infinite reverse;
}

.reactor-core__center {
  inset: 48px;
  display: grid;
  place-content: center;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle at 40% 35%, rgba(185, 255, 102, 0.3), rgba(62, 231, 210, 0.1) 45%, var(--surface-solid));
  box-shadow: 0 0 54px rgba(185, 255, 102, 0.18);
  text-align: center;
}

.reactor-core__center span {
  color: var(--acid);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.reactor-core__center small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.job-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  min-width: 245px;
  padding: 12px;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: color-mix(in srgb, var(--surface-solid) 90%, transparent);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  animation: float-chip 5s ease-in-out infinite;
}

.job-chip--one { top: 82px; right: 30px; }
.job-chip--two { top: 270px; left: 26px; animation-delay: -1.7s; }
.job-chip--three { right: 42px; bottom: 28px; animation-delay: -3.2s; }

.job-chip__score {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--acid);
  color: var(--acid-ink);
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 900;
}

.job-chip__score--violet { background: var(--violet); color: #0e0923; }
.job-chip__score--cyan { background: var(--cyan); color: #04201c; }

.job-chip div:last-child {
  display: grid;
}

.job-chip strong {
  font-size: 13px;
  line-height: 1.3;
}

.job-chip span {
  color: var(--muted);
  font-size: 11px;
}

.signal-node {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 106px;
  gap: 2px;
  color: var(--text-soft);
}

.signal-node span {
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: 10px;
}

.signal-node strong { font-size: 13px; }
.signal-node--resume { top: 136px; left: 28px; }
.signal-node--feedback { right: 24px; bottom: 128px; text-align: right; }

.signal-console__footer {
  min-height: 66px;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.progress-track {
  overflow: hidden;
  width: 44%;
  height: 4px;
  border-radius: 999px;
  background: var(--surface-bright);
}

.progress-track span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--acid));
  box-shadow: 0 0 16px var(--acid);
}

.floating-tag {
  position: absolute;
  z-index: 4;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--acid);
  color: var(--acid-ink);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.floating-tag--top { top: -18px; right: -12px; transform: rotate(3deg); }
.floating-tag--bottom { bottom: 24px; left: -28px; transform: rotate(-3deg); background: var(--violet); }

.kinetic-strip {
  overflow: hidden;
  border-block: 1px solid var(--line-strong);
  background: var(--acid);
  color: var(--acid-ink);
  transform: rotate(-1deg) scale(1.02);
}

.kinetic-strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 56px;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  animation: marquee 24s linear infinite;
}

.kinetic-strip__track i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid-ink);
}

.section {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: clamp(100px, 11vw, 180px) var(--page-pad);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 96px);
  gap: 40px;
}

.section-kicker {
  display: block;
  margin-bottom: 20px;
  color: var(--acid);
}

.section-heading h2,
.boundary__copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 92px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-heading > p,
.boundary__copy > p,
.final-cta__content > p {
  max-width: 520px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.85;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  isolation: isolate;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(400px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(185, 255, 102, 0.13), transparent 42%);
  transition: opacity 180ms ease;
}

.feature-card:hover::before { opacity: 1; }

.feature-card--hero {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1fr minmax(190px, 0.5fr);
  min-height: 500px;
  background:
    linear-gradient(135deg, rgba(185, 255, 102, 0.1), transparent 40%),
    var(--surface);
}

.feature-card--plan { grid-column: span 4; }
.feature-card--apply { grid-column: span 5; }
.feature-card--interview { grid-column: span 4; }
.feature-card--privacy { grid-column: span 3; }

.feature-card__index {
  position: absolute;
  top: 24px;
  right: 26px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 60px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--surface-bright);
  color: var(--acid);
}

.feature-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__label { color: var(--muted); }

.feature-card h3 {
  margin: 14px 0 16px;
  font-size: clamp(25px, 2.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 570px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.feature-card--hero .feature-card__content {
  align-self: end;
}

.score-stack {
  align-self: end;
  display: grid;
  gap: 8px;
}

.score-stack > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-solid);
}

.score-stack span {
  color: var(--muted);
  font-size: 12px;
}

.score-stack strong {
  font-family: var(--font-mono);
  font-size: 20px;
}

.score-stack .score-stack__result {
  min-height: 80px;
  border-color: var(--acid);
  background: var(--acid);
  color: var(--acid-ink);
}

.score-stack__result span { color: inherit; font-family: var(--font-mono); }
.score-stack__result strong { font-size: 34px; }

.mini-plan {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  margin-top: 30px;
  gap: 13px 10px;
}

.mini-plan span {
  width: 12px;
  height: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
}

.mini-plan span.is-done {
  border-color: var(--acid);
  background: var(--acid);
  box-shadow: 0 0 12px rgba(185, 255, 102, 0.4);
}

.mini-plan b { font-size: 12px; font-weight: 650; }
.mini-plan em { color: var(--muted); font-family: var(--font-mono); font-size: 10px; font-style: normal; }

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 8px;
}

.platform-pills span {
  padding: 7px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 12px;
}

.waveform {
  display: flex;
  align-items: center;
  height: 92px;
  margin-top: 28px;
  gap: 6px;
}

.waveform i {
  width: 5px;
  height: calc(16px + var(--wave, 20) * 1px);
  border-radius: 999px;
  background: linear-gradient(to top, var(--violet), var(--cyan));
  animation: waveform 1.4s ease-in-out infinite alternate;
}

.waveform i:nth-child(2n) { --wave: 42; animation-delay: -0.6s; }
.waveform i:nth-child(3n) { --wave: 20; animation-delay: -0.9s; }
.waveform i:nth-child(4n) { --wave: 58; animation-delay: -0.3s; }

.workflow {
  width: 100%;
  max-width: none;
  background: var(--text);
  color: var(--bg);
}

.workflow > * {
  width: min(100%, calc(var(--content) - var(--page-pad) * 2));
  margin-inline: auto;
}

.section-heading--inverse .section-kicker { color: #287f3d; }
.section-heading--inverse > p { color: color-mix(in srgb, var(--bg) 70%, transparent); }

.workflow-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid color-mix(in srgb, var(--bg) 20%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--bg) 20%, transparent);
  overflow: hidden;
}

.workflow-rail {
  position: absolute;
  top: 73px;
  left: 8%;
  right: 8%;
  z-index: 2;
  height: 2px;
  background: color-mix(in srgb, var(--bg) 16%, transparent);
}

.workflow-rail span {
  display: block;
  width: var(--workflow-progress, 8%);
  height: 100%;
  background: #38a54f;
  box-shadow: 0 0 18px rgba(56, 165, 79, 0.55);
  transition: width 420ms cubic-bezier(.22, 1, .36, 1);
}

.workflow-step {
  position: relative;
  min-height: 340px;
  padding: 34px 24px 28px;
  cursor: pointer;
  background: var(--text);
  transition: background 180ms ease;
}

.workflow-step:hover,
.workflow-step.is-active {
  background: color-mix(in srgb, var(--text) 90%, #77df64);
}

.workflow-step__number {
  position: relative;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 76px;
  place-items: center;
  border: 2px solid color-mix(in srgb, var(--bg) 55%, transparent);
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.workflow-step.is-active .workflow-step__number {
  border-color: #38a54f;
  background: #38a54f;
  color: #06100e;
}

.workflow-step span { color: color-mix(in srgb, var(--bg) 55%, transparent); }
.workflow-step h3 { margin: 9px 0 12px; font-size: 22px; line-height: 1.2; }
.workflow-step p { margin: 0; color: color-mix(in srgb, var(--bg) 68%, transparent); font-size: 14px; line-height: 1.7; }

.boundary__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
}

.boundary__copy h2 { margin-bottom: 28px; }

.check-list {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
}

.check-list svg {
  width: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--acid);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.boundary-map {
  display: grid;
  grid-template-columns: 1fr 128px 1fr;
  align-items: stretch;
  min-height: 380px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.boundary-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  text-align: center;
}

.boundary-zone--cloud { background: linear-gradient(145deg, rgba(169, 139, 255, 0.13), transparent); }
.boundary-zone--local { background: linear-gradient(145deg, rgba(185, 255, 102, 0.13), transparent); }

.boundary-zone__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--muted);
}

.boundary-zone > svg {
  width: 58px;
  margin-bottom: 24px;
  fill: none;
  stroke: var(--accent, var(--violet));
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.boundary-zone--local > svg { --accent: var(--acid); }
.boundary-zone h3 { margin: 0 0 10px; font-size: 22px; }
.boundary-zone p { margin: 0; color: var(--muted); font-size: 13px; }

.boundary-link {
  display: grid;
  align-content: center;
  justify-items: stretch;
  gap: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-align: center;
}

.boundary-link i {
  position: relative;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
}

.boundary-link i:first-child::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 13px var(--acid);
  animation: link-particle 2.4s ease-in-out infinite alternate;
}

.final-cta {
  position: relative;
  overflow: hidden;
  width: min(calc(100% - var(--page-pad) * 2), 1320px);
  margin-bottom: 80px;
  padding: clamp(66px, 8vw, 120px);
  border: 1px solid var(--line-strong);
  border-radius: clamp(28px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(185, 255, 102, 0.13), transparent 38%),
    var(--surface-solid);
  text-align: center;
}

.final-cta__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 80px rgba(185, 255, 102, 0.025),
    0 0 0 160px rgba(185, 255, 102, 0.018),
    inset 0 0 90px rgba(62, 231, 210, 0.06);
  animation: orb-breathe 6s ease-in-out infinite alternate;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.final-cta h2 { max-width: 920px; }
.final-cta__content > p { margin-top: 28px; text-wrap: balance; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  width: min(100%, var(--content));
  min-height: 130px;
  margin: 0 auto;
  padding: 28px var(--page-pad);
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.brand--footer .brand__mark { width: 32px; height: 32px; }
.site-footer p { margin: 0; }
.site-footer__links { display: flex; gap: 18px; }
.site-footer__links a { min-height: 44px; display: grid; align-items: center; }
.site-footer__links a:hover { color: var(--text); }
.site-footer__copyright { font-family: var(--font-mono); }

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.22, 1, .36, 1), transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dash-flow { to { stroke-dashoffset: -128; } }
@keyframes particle-flow { 0%, 6% { offset-distance: 0%; opacity: 0; } 16%, 82% { opacity: 1; } 94%, 100% { offset-distance: 100%; opacity: 0; } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes float-chip { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes waveform { to { transform: scaleY(0.35); opacity: 0.55; } }
@keyframes link-particle { to { left: calc(100% - 9px); } }
@keyframes orb-breathe { to { transform: translate(-50%, -50%) scale(1.07); opacity: 0.72; } }
@keyframes status-pulse { to { opacity: 0.35; transform: scale(0.7); } }

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 154px;
  }

  .hero__copy { max-width: 900px; }
  .hero__visual { width: min(100%, 840px); margin: 0 auto; }
  .feature-card--hero { grid-column: span 12; }
  .feature-card--plan { grid-column: span 5; }
  .feature-card--apply { grid-column: span 7; }
  .feature-card--interview { grid-column: span 7; }
  .feature-card--privacy { grid-column: span 5; }
  .workflow-board { grid-template-columns: 1fr; }
  .workflow-rail { top: 6%; bottom: 6%; left: 48px; right: auto; width: 2px; height: auto; }
  .workflow-rail span { width: 100%; height: var(--workflow-progress, 8%); transition-property: height; }
  .workflow-step { display: grid; grid-template-columns: 54px 1fr; min-height: 200px; gap: 22px; }
  .workflow-step__number { margin-bottom: 0; }
  .boundary__grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --page-pad: 22px; }
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr); min-height: auto; padding-top: 132px; }
  .hero h1 { font-size: clamp(54px, 14vw, 84px); }
  .signal-console { min-height: 560px; }
  .signal-stage { min-height: 400px; }
  .job-chip { min-width: 210px; }
  .job-chip--one { right: 16px; }
  .job-chip--two { left: 16px; top: 230px; }
  .job-chip--three { right: 16px; bottom: 18px; }
  .reactor-core { width: 150px; }
  .reactor-core__center { inset: 40px; }
  .signal-node { display: none; }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .feature-card--plan,
  .feature-card--apply,
  .feature-card--interview,
  .feature-card--privacy { grid-column: span 12; }
  .boundary-map { grid-template-columns: 1fr; gap: 14px; }
  .boundary-link { grid-template-columns: 1fr auto 1fr; align-items: center; padding: 6px 0; }
  .boundary-link i { width: auto; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer p { display: none; }
  .site-footer__links { order: 3; grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .site-header { top: 8px; width: calc(100% - 16px); padding-left: 10px; }
  .brand__edition,
  .header-cta { display: none; }
  .hero { padding-top: 116px; }
  .eyebrow { max-width: 100%; font-size: 9px; }
  .eyebrow__index { display: none; }
  .hero__actions,
  .final-cta__actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero__meta { display: grid; }
  .signal-console { min-height: 510px; border-radius: 24px; }
  .signal-console__header { min-height: 78px; padding: 16px; }
  .signal-console__header strong { font-size: 16px; }
  .live-status { padding: 0 9px; font-size: 8px; }
  .signal-stage { min-height: 372px; }
  .reactor-core { width: 126px; }
  .reactor-core__center { inset: 34px; }
  .job-chip { min-width: 178px; padding: 9px; }
  .job-chip__score { width: 40px; height: 40px; font-size: 15px; }
  .job-chip strong { font-size: 11px; }
  .job-chip span { font-size: 9px; }
  .job-chip--one { top: 38px; }
  .job-chip--two { top: 210px; }
  .job-chip--three { bottom: 24px; }
  .signal-console__footer { padding: 0 14px; font-size: 8px; }
  .floating-tag { display: none; }
  .section { padding-block: 94px; }
  .section-heading h2,
  .boundary__copy h2,
  .final-cta h2 { font-size: clamp(40px, 12vw, 58px); }
  .feature-card { min-height: 300px; }
  .feature-card--hero { display: block; }
  .score-stack { margin-top: 36px; }
  .workflow > * { width: 100%; }
  .workflow-step { grid-template-columns: 46px 1fr; padding: 28px 18px; }
  .workflow-rail { left: 39px; }
  .boundary-map { min-height: 600px; padding: 12px; }
  .final-cta { width: calc(100% - 24px); margin-bottom: 36px; padding-inline: 24px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer__links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .has-js .reveal { opacity: 1; transform: none; }
  .ambient__cursor { display: none; }
  .signal-console { transform: none !important; }
}
