:root {
  --ink: #0b0b0c;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --panel-2: #f5f2ec;
  --muted: #66605b;
  --soft: #eee9df;
  --line: rgba(12, 12, 13, 0.12);
  --charcoal: #0b0b0c;
  --charcoal-2: #171719;
  --pink: #f03aac;
  --violet: #796cf2;
  --orange: #ff7a1a;
  --gold: #a4782a;
  --cyan: #7167f3;
  --cyan-soft: rgba(121, 108, 242, 0.11);
  --oxblood: #78212d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(14, 14, 16, 0.08);
  --shadow-strong: 0 34px 90px rgba(14, 14, 16, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 58, 172, 0.08), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(121, 108, 242, 0.1), transparent 30%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 4vw, 64px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(22px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(12, 12, 13, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.78)),
    var(--white);
  box-shadow:
    0 10px 24px rgba(14, 14, 16, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.brand-mark img {
  width: 30px;
  height: 30px;
  display: block;
}

.nav-links {
  gap: clamp(14px, 2.6vw, 34px);
  color: rgba(11, 11, 12, 0.74);
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  overflow: hidden;
  align-items: center;
  background: var(--paper);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-executive-community.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: min(76vw, 1120px) auto;
  transform: none;
}

.cascade-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cascadeDown 34s linear infinite;
  will-change: transform;
}

.cascade-card {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 12, 13, 0.09);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(14, 14, 16, 0.12);
  transform: none;
}

.cascade-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.86),
    inset 0 0 28px rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.cascade-card img {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  filter: saturate(0.96) contrast(0.99);
}

@keyframes cascadeDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.99) 0%, rgba(251, 250, 247, 0.92) 35%, rgba(251, 250, 247, 0.46) 61%, rgba(251, 250, 247, 0.08) 100%),
    linear-gradient(180deg, rgba(251, 250, 247, 0.94) 0%, rgba(251, 250, 247, 0.28) 36%, rgba(251, 250, 247, 0.98) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: clamp(92px, 9vw, 128px) 0 clamp(52px, 8vw, 102px) clamp(20px, 7vw, 112px);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 7vw, 6.9rem);
  font-weight: 760;
  line-height: 0.91;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 26px;
  color: rgba(11, 11, 12, 0.66);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.proof-row span {
  border: 1px solid rgba(12, 12, 13, 0.16);
  border-radius: 999px;
  padding: 10px 15px;
  color: rgba(11, 11, 12, 0.72);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.primary {
  background: linear-gradient(180deg, var(--pink), var(--violet));
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(121, 108, 242, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.primary:hover {
  background: linear-gradient(180deg, #ff58bb, #6659eb);
}

.secondary {
  background: linear-gradient(180deg, var(--pink), var(--violet));
  color: var(--white);
  border-color: transparent;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(121, 108, 242, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.secondary:hover {
  background: linear-gradient(180deg, #ff58bb, #6659eb);
  border-color: transparent;
}

.ghost {
  color: var(--ink);
  border-color: rgba(12, 12, 13, 0.2);
  background: var(--white);
  border-radius: 999px;
}

.ghost:hover {
  border-color: rgba(121, 108, 242, 0.45);
  box-shadow: 0 14px 34px rgba(14, 14, 16, 0.08);
}

.section {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 6vw, 88px);
}

.workflow-band,
.use-cases {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.44fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.workflow-steps,
.use-case-list {
  display: grid;
}

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

.use-case-list article {
  position: relative;
  padding: clamp(24px, 3.5vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(121, 108, 242, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(14, 14, 16, 0.04);
}

.workflow-steps {
  position: relative;
  z-index: 1;
  min-width: 0;
  gap: 14px;
  padding-left: 0;
}

.workflow-steps::before {
  display: none;
}

.workflow-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 18px;
  overflow: hidden;
  min-height: 220px;
  height: 100%;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(121, 108, 242, 0.11), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 246, 0.9)),
    var(--white);
  box-shadow: 0 18px 46px rgba(14, 14, 16, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.workflow-step::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(121, 108, 242, 0.74));
}

.workflow-step:hover {
  transform: translateY(-3px);
  border-color: rgba(121, 108, 242, 0.28);
  box-shadow: var(--shadow);
}

.workflow-step:last-child {
  border-bottom: 1px solid var(--line);
}

.use-case-list article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.workflow-marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  border: 1px solid rgba(121, 108, 242, 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--violet) 0 4px, transparent 5px),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 0 8px rgba(121, 108, 242, 0.08),
    0 14px 32px rgba(14, 14, 16, 0.06);
}

.workflow-step h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: var(--ink);
}

.workflow-step p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.65;
}

.networking-today .section-note {
  max-width: 560px;
}

.today-stack {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.today-snapshot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(121, 108, 242, 0.11), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 246, 0.9)),
    var(--white);
  box-shadow: 0 18px 46px rgba(14, 14, 16, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.today-snapshot::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(121, 108, 242, 0.74));
}

.today-snapshot:hover {
  transform: translateY(-3px);
  border-color: rgba(121, 108, 242, 0.28);
  box-shadow: var(--shadow);
}

.today-snapshot {
  min-height: 260px;
  padding: clamp(28px, 4.2vw, 46px);
  background:
    linear-gradient(135deg, rgba(240, 58, 172, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 246, 0.9)),
    var(--white);
}

.today-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(121, 108, 242, 0.18);
  border-radius: 999px;
  color: var(--violet);
  background: rgba(121, 108, 242, 0.08);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.today-snapshot h3 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
}

.today-snapshot p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.68;
}

.today-snapshot p {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.use-case-list p {
  color: var(--muted);
  line-height: 1.7;
}

.section-note {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.use-case-list article > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(121, 108, 242, 0.18);
  border-radius: 999px;
  color: var(--violet);
  background: rgba(121, 108, 242, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
}

.use-case-list article small {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: rgba(11, 11, 12, 0.62);
  font-size: 0.82rem;
  font-weight: 690;
  line-height: 1.55;
}

.toolkit {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.44fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 104px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.3vw, 4.7rem);
  font-weight: 720;
  line-height: 0.98;
  letter-spacing: 0;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  background: transparent;
}

.tool-card {
  position: relative;
  display: flex;
  min-height: 300px;
  height: 100%;
  flex-direction: column;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(121, 108, 242, 0.11), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 246, 0.9)),
    var(--white);
  box-shadow: 0 18px 46px rgba(14, 14, 16, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tool-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(121, 108, 242, 0.74));
}

.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(121, 108, 242, 0.28);
  box-shadow: var(--shadow);
}

.tool-index {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(121, 108, 242, 0.18);
  border-radius: 999px;
  color: var(--violet);
  background: rgba(121, 108, 242, 0.08);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.tool-tag {
  display: block;
  margin-bottom: clamp(44px, 5vw, 64px);
  color: rgba(11, 11, 12, 0.56);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tool-card h3 {
  margin-top: 0;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.15;
}

.tool-card p,
.privacy-band p,
.application p,
.telegram-contact p {
  color: var(--muted);
  line-height: 1.7;
}

.privacy-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(320px, 0.74fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  overflow: hidden;
  margin: 0 clamp(20px, 6vw, 88px);
  padding: clamp(42px, 6vw, 76px) clamp(24px, 5vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 14%, rgba(240, 58, 172, 0.08), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(121, 108, 242, 0.09), transparent 28%),
    var(--panel-2);
  color: var(--ink);
  box-shadow: 0 24px 76px rgba(14, 14, 16, 0.08);
}

.privacy-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(245, 242, 236, 0.34));
  pointer-events: none;
}

.finder-demo-media,
.finder-demo-copy {
  position: relative;
  z-index: 1;
}

.finder-demo-media {
  order: 1;
  width: 100%;
  justify-self: stretch;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(12, 12, 13, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 246, 0.96)),
    var(--white);
  box-shadow:
    0 24px 70px rgba(14, 14, 16, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.finder-demo-copy {
  order: 2;
  max-width: 620px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.finder-demo-copy .eyebrow {
  display: block;
  width: auto;
  margin-bottom: 20px;
  padding: 0;
  border-radius: 0;
  color: var(--violet);
  background: none;
  box-shadow: none;
}

.passport-copy > .eyebrow,
.finder-demo-copy > .eyebrow,
.application-copy > .eyebrow,
.telegram-contact .eyebrow {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.finder-demo-copy h2 {
  max-width: 920px;
  margin-bottom: 22px;
}

.finder-demo-copy p {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.finder-demo-copy p:last-child {
  margin-bottom: 0;
}

.finder-demo-copy p strong {
  color: var(--ink);
}

.passport-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  overflow: hidden;
  margin: clamp(34px, 6vw, 82px) clamp(20px, 6vw, 88px);
  padding: clamp(44px, 6vw, 78px) clamp(24px, 5vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(35, 194, 99, 0.08), transparent 42%),
    var(--panel-2);
  box-shadow: 0 24px 76px rgba(14, 14, 16, 0.08);
}

.ai-powered-band {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(245, 242, 236, 0.74)),
    linear-gradient(135deg, rgba(121, 108, 242, 0.12), transparent 46%),
    var(--panel-2);
}

.passport-copy h2 {
  margin-bottom: 22px;
}

.passport-copy > p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.ai-context-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(12, 12, 13, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(115deg, rgba(240, 58, 172, 0.12), transparent 36%),
    linear-gradient(295deg, rgba(121, 108, 242, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(11, 11, 12, 0.94), rgba(23, 23, 25, 0.9));
  background-size: 30px 30px, 30px 30px, auto, auto, auto;
  box-shadow:
    0 26px 72px rgba(14, 14, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.ai-context-visual::before,
.ai-context-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ai-context-visual::before {
  inset: 32px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.ai-context-visual::after {
  display: none;
}

.embedding-grid,
.embedding-query,
.semantic-map,
.embedding-output,
.manifold-stage,
.vector-lane,
.match-focus,
.inference-particle,
.data-cloud,
.request-node,
.neighbor-node,
.search-radius,
.score-stack {
  pointer-events: none;
}

.embedding-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  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: 32px 32px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 86%, transparent);
  opacity: 0.68;
  animation: embeddingGrid 18s linear infinite;
}

.embedding-query,
.semantic-map,
.embedding-output {
  position: absolute;
  z-index: 7;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(10, 10, 12, 0.62);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(1.12);
}

.embedding-query {
  top: 42px;
  left: 42px;
  width: 248px;
  min-height: 148px;
  padding: 18px;
}

.embedding-query,
.embedding-output {
  overflow: hidden;
}

.embedding-query::before,
.embedding-output::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.11) 48%, rgba(34, 211, 238, 0.1) 52%, transparent 68%);
  transform: translateX(-72%);
  animation: cardInference 6.2s ease-in-out infinite;
}

.embedding-query > *,
.embedding-output > * {
  position: relative;
  z-index: 1;
}

.embedding-query span,
.embedding-output span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.embedding-query strong,
.embedding-output strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.16;
}

.embedding-query small,
.embedding-output small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.35;
}

.vector-chip-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.48fr;
  gap: 7px;
  margin-top: 18px;
}

.vector-chip-row i,
.score-stack i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(121, 108, 242, 0.66), rgba(34, 211, 238, 0.38));
  background-size: 190% 100%;
  opacity: 0.68;
  animation: embeddingRead 3.8s ease-in-out infinite;
}

.vector-chip-row i:nth-child(2),
.score-stack i:nth-child(2) {
  animation-delay: -1.1s;
}

.vector-chip-row i:nth-child(3),
.score-stack i:nth-child(3) {
  animation-delay: -2s;
}

.semantic-map {
  inset: 84px 42px 56px;
  z-index: 4;
  overflow: hidden;
}

.semantic-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.manifold-stage {
  position: absolute;
  inset: 26px 26px 28px;
  z-index: 5;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 61% 43%, rgba(34, 211, 238, 0.16), transparent 28%),
    radial-gradient(circle at 30% 60%, rgba(240, 58, 172, 0.1), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: auto, auto, 28px 28px, 28px 28px, auto;
}

.manifold-stage::before,
.manifold-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.manifold-stage::before {
  top: 0;
  bottom: 0;
  left: -46%;
  z-index: 2;
  width: 42%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), rgba(34, 211, 238, 0.12), transparent);
  mix-blend-mode: screen;
  opacity: 0;
  animation: semanticScan 6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.manifold-stage::after {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 61% 43%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 73% 52%, rgba(34, 211, 238, 0.11), transparent 18%);
  opacity: 0.52;
  animation: matchGlow 6s ease-in-out infinite;
}

.map-axis {
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, 0.16);
}

.axis-x {
  left: 7%;
  right: 7%;
  top: 59%;
  height: 1px;
}

.axis-y {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
}

.vector-lane,
.match-focus,
.inference-particle,
.data-cloud,
.request-node,
.neighbor-node,
.search-radius {
  position: absolute;
}

.vector-lane {
  left: 31%;
  top: 61%;
  z-index: 4;
  width: 36%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.12);
  transform: rotate(-31deg);
  transform-origin: left center;
}

.vector-lane::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(240, 58, 172, 0), rgba(255, 255, 255, 0.94), rgba(34, 211, 238, 0.64), rgba(34, 211, 238, 0));
  background-size: 240% 100%;
  opacity: 0;
  animation: vectorLanePulse 6s ease-in-out infinite;
}

.match-focus {
  left: 61%;
  top: 43%;
  z-index: 3;
  width: 152px;
  height: 152px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(34, 211, 238, 0.06) 38%, transparent 68%);
  transform: translate(-50%, -50%);
  animation: matchFocus 6s ease-in-out infinite;
}

.match-focus::before,
.match-focus::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: inherit;
}

.match-focus::after {
  inset: 52px;
  border-color: rgba(255, 255, 255, 0.2);
}

.inference-particle {
  z-index: 5;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.88),
    0 0 22px rgba(34, 211, 238, 0.58);
  opacity: 0;
}

.particle-primary {
  animation: particlePrimary 6s ease-in-out infinite;
}

.data-cloud {
  z-index: 3;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: var(--cloud-points);
  filter: drop-shadow(0 0 6px currentColor);
  opacity: 0.58;
  animation: clusterBreath 6s ease-in-out infinite;
}

.cloud-entry {
  --cloud-points:
    -60px 8px 0 currentColor,
    -44px -20px 0 currentColor,
    -28px 24px 0 currentColor,
    -10px -6px 0 currentColor,
    12px 20px 0 currentColor,
    30px -18px 0 currentColor,
    50px 14px 0 currentColor,
    70px -4px 0 currentColor,
    88px 24px 0 currentColor;
  left: 31%;
  top: 66%;
  color: #ff8a3a;
}

.cloud-operators {
  --cloud-points:
    -62px 10px 0 currentColor,
    -42px -18px 0 currentColor,
    -24px 24px 0 currentColor,
    -4px -8px 0 currentColor,
    16px 18px 0 currentColor,
    36px -20px 0 currentColor,
    58px 12px 0 currentColor,
    78px -6px 0 currentColor,
    96px 22px 0 currentColor;
  left: 60%;
  top: 42%;
  color: #22d3ee;
  opacity: 0.86;
  filter: drop-shadow(0 0 11px currentColor);
  animation-delay: -1.2s;
}

.cloud-capital {
  --cloud-points:
    -50px 12px 0 currentColor,
    -32px -18px 0 currentColor,
    -10px 22px 0 currentColor,
    12px -12px 0 currentColor,
    34px 20px 0 currentColor,
    56px -4px 0 currentColor,
    76px 18px 0 currentColor;
  left: 48%;
  top: 24%;
  color: #796cf2;
  animation-delay: -3s;
}

.cloud-enterprise {
  --cloud-points:
    -56px -6px 0 currentColor,
    -38px 20px 0 currentColor,
    -18px -22px 0 currentColor,
    2px 12px 0 currentColor,
    24px -10px 0 currentColor,
    48px 22px 0 currentColor,
    70px -4px 0 currentColor;
  left: 42%;
  top: 78%;
  color: #f03aac;
  animation-delay: -4.2s;
}

.search-radius {
  z-index: 2;
  left: 61%;
  top: 43%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: radiusScan 6s ease-in-out infinite;
}

.radius-wide {
  width: 228px;
  border-color: rgba(34, 211, 238, 0.22);
  background: rgba(34, 211, 238, 0.035);
}

.radius-tight {
  width: 104px;
  border-color: rgba(255, 255, 255, 0.24);
  animation-delay: -1.4s;
}

.request-node,
.neighbor-node {
  z-index: 6;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.request-node {
  left: 30%;
  top: 58%;
  width: 18px;
  height: 18px;
  background: rgba(240, 58, 172, 0.96);
  box-shadow:
    0 0 0 9px rgba(240, 58, 172, 0.12),
    0 16px 34px rgba(0, 0, 0, 0.22);
  animation: requestVector 6.5s ease-in-out infinite;
}

.neighbor-node {
  width: 14px;
  height: 14px;
  background: rgba(34, 211, 238, 0.94);
  box-shadow:
    0 0 0 8px rgba(34, 211, 238, 0.1),
    0 14px 30px rgba(0, 0, 0, 0.22);
  animation: neighborPulse 4.6s ease-in-out infinite;
}

.neighbor-primary {
  left: 61%;
  top: 43%;
  width: 24px;
  height: 24px;
  background:
    url("assets/veritaso-logo.svg") center / 15px auto no-repeat,
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(222, 229, 255, 0.86));
  box-shadow:
    0 0 0 13px rgba(255, 255, 255, 0.08),
    0 0 46px rgba(34, 211, 238, 0.42),
    0 18px 36px rgba(0, 0, 0, 0.25);
  animation: matchLock 5s ease-in-out infinite;
}

.neighbor-secondary {
  left: 73%;
  top: 52%;
  animation-delay: -1.4s;
}

.neighbor-tertiary {
  left: 54%;
  top: 34%;
  animation-delay: -2.4s;
}

.request-node em,
.neighbor-node em {
  position: absolute;
  left: 50%;
  top: 24px;
  min-width: max-content;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.neighbor-primary em {
  top: -28px;
  color: var(--white);
}

.embedding-output {
  right: 42px;
  bottom: 42px;
  width: 252px;
  min-height: 142px;
  padding: 18px;
  animation: outputLift 6s ease-in-out infinite;
}

.embedding-output small {
  display: block;
  margin-top: 10px;
}

.score-stack {
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

.score-stack i {
  height: 4px;
}

.score-stack i:nth-child(1) {
  width: 94%;
}

.score-stack i:nth-child(2) {
  width: 72%;
}

.score-stack i:nth-child(3) {
  width: 52%;
}

.passport-sources,
.passport-source,
.passport-stream,
.passport-array-stage,
.passport-array,
.array-plane,
.array-dot,
.passport-context-output,
.context-bars {
  pointer-events: none;
}

.passport-sources {
  position: absolute;
  top: 34px;
  right: 34px;
  left: 34px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.passport-source {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 13px 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(10, 10, 12, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(1.12);
}

.passport-source::after {
  display: none;
}

.passport-source i {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--source-color);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--source-color), transparent 82%);
}

.passport-source strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.16;
}

.source-linkedin {
  --source-color: #2aa7ff;
}

.source-goals {
  --source-color: #8b7cff;
}

.source-network {
  --source-color: #f03aac;
}

.source-goals::after {
}

.source-network::after {
}

.passport-stream {
  position: absolute;
  top: 92px;
  z-index: 4;
  width: 2px;
  height: 168px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--stream-color), transparent 24%) 34%, rgba(255, 255, 255, 0.48) 50%, color-mix(in srgb, var(--stream-color), transparent 24%) 66%, transparent 100%);
  background-size: 100% 220%;
  box-shadow:
    0 0 12px color-mix(in srgb, var(--stream-color), transparent 76%),
    0 0 26px color-mix(in srgb, var(--stream-color), transparent 88%);
  opacity: 0.22;
  transform-origin: top center;
  transform: rotate(var(--stream-rotate, 0deg));
  animation: passportStreamFlow 11.6s cubic-bezier(0.42, 0, 0.18, 1) infinite alternate;
  will-change: background-position, opacity, transform;
}

.stream-linkedin {
  --stream-color: #2aa7ff;
  --stream-rotate: -18deg;
  left: 21%;
  animation-delay: -0.4s;
}

.stream-goals {
  --stream-color: #8b7cff;
  left: 50%;
  animation-delay: -1.55s;
}

.stream-network {
  --stream-color: #f03aac;
  --stream-rotate: 18deg;
  left: 79%;
  animation-delay: -2.7s;
}

.passport-array-stage {
  position: absolute;
  inset: 124px 42px 122px;
  z-index: 5;
  display: grid;
  place-items: center;
  perspective: 920px;
}

.passport-array {
  position: relative;
  width: min(340px, 78%);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transform: rotateX(62deg) rotateZ(-38deg);
  animation: passportArrayTilt 10s ease-in-out infinite;
}

.array-plane,
.array-dot {
  position: absolute;
  transform-style: preserve-3d;
}

.array-plane {
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  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 58% 44%, rgba(34, 211, 238, 0.18), transparent 44%),
    rgba(255, 255, 255, 0.035);
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow:
    inset 0 0 44px rgba(255, 255, 255, 0.035),
    0 0 28px rgba(34, 211, 238, 0.08);
}

.plane-back {
  transform: translateZ(-74px);
  opacity: 0.42;
}

.plane-mid {
  transform: translateZ(0);
  opacity: 0.62;
}

.plane-front {
  transform: translateZ(74px);
  opacity: 0.82;
}

.array-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: var(--array-points);
  opacity: 0.84;
}

.dot-linkedin {
  --array-points:
    -76px -18px 0 currentColor,
    -52px 34px 0 currentColor,
    -18px -58px 0 currentColor,
    18px 44px 0 currentColor,
    56px -24px 0 currentColor,
    86px 18px 0 currentColor;
  left: 48%;
  top: 46%;
  color: #2aa7ff;
  transform: translateZ(76px);
}

.dot-goals {
  --array-points:
    -70px 24px 0 currentColor,
    -36px -38px 0 currentColor,
    4px 52px 0 currentColor,
    42px -18px 0 currentColor,
    82px 36px 0 currentColor;
  left: 46%;
  top: 50%;
  color: #8b7cff;
  transform: translateZ(8px);
}

.dot-network {
  --array-points:
    -62px -34px 0 currentColor,
    -24px 42px 0 currentColor,
    18px -22px 0 currentColor,
    52px 30px 0 currentColor,
    86px -44px 0 currentColor;
  left: 50%;
  top: 54%;
  color: #f03aac;
  transform: translateZ(-72px);
}

.passport-context-output span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.passport-context-output strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.16;
}

.passport-context-output {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  z-index: 9;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.78fr);
  gap: 18px;
  align-items: center;
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(10, 10, 12, 0.66);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(1.12);
}

.context-bars {
  display: grid;
  gap: 8px;
}

.context-bars i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(139, 124, 255, 0.7), rgba(42, 167, 255, 0.46));
  background-size: 190% 100%;
  transform-origin: left center;
  animation: contextBarBuild 7.2s ease-in-out infinite;
}

.context-bars i:nth-child(1) {
  width: 94%;
}

.context-bars i:nth-child(2) {
  width: 72%;
  animation-delay: -0.8s;
}

.context-bars i:nth-child(3) {
  width: 54%;
  animation-delay: -1.6s;
}

@keyframes embeddingGrid {
  to {
    background-position: 32px 32px, 32px 32px;
  }
}

@keyframes embeddingRead {
  0%,
  100% {
    background-position: 100% 0;
    opacity: 0.46;
  }

  50% {
    background-position: 0 0;
    opacity: 0.92;
  }
}

@keyframes contextBarBuild {
  0%,
  100% {
    background-position: 100% 0;
    opacity: 0.46;
    transform: scaleX(0.82);
  }

  48%,
  68% {
    background-position: 0 0;
    opacity: 0.96;
    transform: scaleX(1);
  }
}

@keyframes passportArrayTilt {
  0%,
  100% {
    transform: rotateX(62deg) rotateZ(-38deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotateX(58deg) rotateZ(-32deg) translate3d(0, -4px, 0);
  }
}

@keyframes passportStreamFlow {
  0%,
  100% {
    background-position: 0 -120%;
    opacity: 0.08;
    transform: rotate(var(--stream-rotate, 0deg)) scaleY(0.97);
  }

  34% {
    opacity: 0.28;
    transform: rotate(var(--stream-rotate, 0deg)) scaleY(0.995);
  }

  58% {
    background-position: 0 52%;
    opacity: 0.36;
    transform: rotate(var(--stream-rotate, 0deg)) scaleY(1);
  }

  82% {
    background-position: 0 120%;
    opacity: 0.14;
    transform: rotate(var(--stream-rotate, 0deg)) scaleY(0.985);
  }
}

@keyframes cardInference {
  0%,
  100% {
    transform: translateX(-78%);
    opacity: 0;
  }

  42%,
  58% {
    opacity: 1;
  }

  70% {
    transform: translateX(78%);
    opacity: 0;
  }
}

@keyframes semanticScan {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0;
  }

  18% {
    opacity: 0;
  }

  42% {
    opacity: 0.85;
  }

  64% {
    transform: translateX(340%);
    opacity: 0;
  }
}

@keyframes matchGlow {
  0%,
  100% {
    opacity: 0.32;
  }

  62%,
  82% {
    opacity: 0.76;
  }
}

@keyframes vectorLanePulse {
  0%,
  100% {
    background-position: 120% 0;
    opacity: 0;
  }

  18% {
    opacity: 0;
  }

  34%,
  58% {
    opacity: 1;
  }

  68% {
    background-position: -120% 0;
    opacity: 0;
  }
}

@keyframes matchFocus {
  0%,
  100% {
    opacity: 0.24;
    transform: translate(-50%, -50%) scale(0.82);
  }

  46% {
    opacity: 0.44;
    transform: translate(-50%, -50%) scale(1.04);
  }

  70%,
  86% {
    opacity: 0.88;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes particlePrimary {
  0%,
  100% {
    left: 30%;
    top: 60%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.55);
  }

  24% {
    opacity: 1;
  }

  56% {
    left: 61%;
    top: 43%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }

  72% {
    left: 73%;
    top: 52%;
    opacity: 0.5;
  }

  88% {
    opacity: 0;
  }
}

@keyframes clusterBreath {
  0%,
  100% {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) scale(0.98);
  }

  50% {
    opacity: 0.95;
    transform: translate3d(4px, -4px, 0) scale(1.04);
  }
}

@keyframes radiusScan {
  0%,
  100% {
    opacity: 0.14;
    transform: translate(-50%, -50%) scale(0.86);
  }

  42% {
    opacity: 0.26;
    transform: translate(-50%, -50%) scale(0.96);
  }

  68%,
  82% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes requestVector {
  0%,
  100% {
    transform: translate3d(-46px, 28px, 0) scale(0.96);
  }

  50% {
    transform: translate3d(0, 0, 0) scale(1.05);
  }
}

@keyframes neighborPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes matchLock {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 13px rgba(255, 255, 255, 0.08),
      0 0 46px rgba(34, 211, 238, 0.42),
      0 18px 36px rgba(0, 0, 0, 0.25);
  }

  50% {
    transform: scale(1.12);
    box-shadow:
      0 0 0 17px rgba(255, 255, 255, 0.1),
      0 0 60px rgba(34, 211, 238, 0.55),
      0 20px 40px rgba(0, 0, 0, 0.28);
  }
}

@keyframes outputLift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

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

.passport-grid article {
  min-height: 210px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(12, 12, 13, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(14, 14, 16, 0.04);
}

.passport-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.ai-chat-demo {
  overflow: hidden;
  border: 1px solid rgba(12, 12, 13, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.54)),
    #d8e9bd;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 40px rgba(14, 14, 16, 0.08);
}

.chat-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(12, 12, 13, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 255, 0.76)),
    rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.chat-topbar div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-topbar span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #23c263;
  box-shadow: 0 0 0 5px rgba(35, 194, 99, 0.12);
}

.chat-thread {
  display: grid;
  gap: 14px;
  min-height: 650px;
  max-height: 780px;
  overflow: auto;
  padding: clamp(16px, 3vw, 28px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(157, 190, 119, 0.74), rgba(215, 230, 171, 0.84));
}

.chat-message {
  width: fit-content;
  max-width: min(880px, 92%);
  border-radius: 22px;
  padding: clamp(18px, 2.4vw, 26px);
  color: var(--ink);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.55;
  box-shadow: 0 16px 42px rgba(14, 14, 16, 0.08);
}

.user-message {
  justify-self: end;
  border-bottom-right-radius: 8px;
  background: #dcf8c6;
}

.bot-message {
  justify-self: start;
  border-bottom-left-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.chat-message p {
  margin: 0 0 18px;
  color: var(--ink);
}

.chat-message p:last-child {
  margin-bottom: 0;
}

.match-result {
  animation: messageIn 420ms ease both;
}

.contacts-result {
  animation: messageIn 420ms ease both;
}

.typing-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  vertical-align: -0.12em;
  background: var(--ink);
  animation: caretBlink 780ms steps(1) infinite;
}

.chat-actions {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.chat-button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  color: var(--white);
  font: inherit;
  font-weight: 820;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.chat-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.chat-button:disabled {
  cursor: default;
  opacity: 0.88;
  transform: none;
}

.primary-chat {
  background: linear-gradient(180deg, #95ad12, #7f9811);
}

.secondary-chat {
  background: linear-gradient(180deg, #91aa16, #799313);
}

.contacts-result a {
  color: #1776d2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.linkedin-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 14px;
  margin-top: 12px;
  padding: 12px;
  border-left: 5px solid #2aa2bd;
  border-radius: 10px;
  background: #eaf5f8;
  color: var(--ink);
  text-decoration: none;
}

.linkedin-preview span {
  display: block;
  margin-bottom: 4px;
  color: #2494ba;
  font-weight: 760;
}

.linkedin-preview strong {
  display: block;
  margin-bottom: 6px;
  line-height: 1.25;
}

.linkedin-preview p {
  color: var(--ink);
  line-height: 1.38;
}

.linkedin-preview img {
  width: 118px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.next-contact-button {
  width: 100%;
  margin-top: 12px;
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

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

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

.matching-demo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  overflow: hidden;
  margin: clamp(34px, 6vw, 82px) clamp(20px, 6vw, 88px);
  padding: clamp(44px, 6vw, 78px) clamp(24px, 5vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(121, 108, 242, 0.09), transparent 42%),
    var(--white);
  box-shadow: 0 24px 76px rgba(14, 14, 16, 0.08);
}

.matching-copy {
  max-width: 620px;
}

.matching-copy h2 {
  margin-bottom: 22px;
}

.matching-copy p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.weekly-demo {
  overflow: hidden;
  border: 1px solid rgba(12, 12, 13, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 246, 0.96)),
    var(--white);
  box-shadow:
    0 24px 70px rgba(14, 14, 16, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.weekly-thread {
  display: grid;
  gap: 14px;
  min-height: 520px;
  max-height: 700px;
  overflow: auto;
  padding: clamp(16px, 3vw, 26px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(157, 190, 119, 0.74), rgba(215, 230, 171, 0.84));
}

.weekly-message {
  width: min(100%, 760px);
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 22px;
  border-bottom-left-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 46px rgba(14, 14, 16, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(1.18);
  animation: messageIn 420ms ease both;
}

.weekly-message:nth-child(even) {
  justify-self: end;
}

.weekly-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.weekly-message h3 {
  margin-bottom: 12px;
}

.weekly-message p {
  margin-bottom: 20px;
  color: var(--ink);
  line-height: 1.62;
}

.weekly-message p:last-child {
  margin-bottom: 0;
}

.weekly-message a {
  color: #1776d2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.weekly-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.weekly-contacts,
.weekly-skip-message,
.weekly-met-message {
  justify-self: start;
}

.tertiary-chat {
  background: linear-gradient(180deg, #9aab6c, #81945c);
}

.weekly-skip-message strong {
  color: var(--ink);
}

.weekly-next {
  display: block;
  width: calc(100% - 28px);
  min-height: 52px;
  margin: 14px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(180deg, var(--pink), var(--violet));
  font: inherit;
  font-weight: 840;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.weekly-next:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.weekly-next:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.member-access {
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  margin: 0 clamp(20px, 6vw, 88px) clamp(34px, 6vw, 82px);
  padding: clamp(44px, 6vw, 78px) clamp(24px, 5vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 122, 26, 0.08), transparent 28%),
    radial-gradient(circle at 94% 8%, rgba(121, 108, 242, 0.08), transparent 28%),
    var(--panel-2);
  box-shadow: 0 24px 76px rgba(14, 14, 16, 0.08);
}

.member-access-heading {
  max-width: 980px;
}

.member-access-heading h2 {
  max-width: 920px;
  margin-bottom: 22px;
}

.member-access-heading p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.member-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1.12fr);
  gap: 16px;
  align-items: stretch;
}

.member-feature,
.member-mini {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    0 24px 66px rgba(14, 14, 16, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px) saturate(1.18);
}

.member-feature {
  min-height: 640px;
}

.member-feature img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.member-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(11, 11, 12, 0.7) 100%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.22), transparent 30%);
  pointer-events: none;
}

.member-feature-panel {
  position: absolute;
  left: clamp(18px, 3vw, 30px);
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 1;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px) saturate(1.2);
}

.member-feature-panel span,
.member-mini span {
  display: block;
  margin-bottom: 10px;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-feature-panel span {
  color: rgba(255, 255, 255, 0.72);
}

.member-feature-panel h3 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.member-feature-panel p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.member-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.member-mini {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 180px;
  padding: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.member-mini:hover {
  transform: translateY(-3px);
  box-shadow:
    0 30px 76px rgba(14, 14, 16, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.member-mini img {
  width: 112px;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(14, 14, 16, 0.12);
}

.member-mini h3 {
  margin-bottom: 8px;
  font-size: clamp(1.08rem, 1.3vw, 1.32rem);
}

.member-mini p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.48;
}

.member-mini.wide {
  grid-column: 1 / -1;
}

.member-grid {
  overflow: hidden;
  padding: 6px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.member-track {
  --member-gap: 18px;
  --member-gap-half: 9px;
  display: flex;
  gap: var(--member-gap);
  width: max-content;
  animation: memberMarquee 88s linear infinite;
  will-change: transform;
}

.member-card {
  position: relative;
  flex: 0 0 clamp(260px, 28vw, 360px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.54);
  box-shadow:
    0 22px 58px rgba(14, 14, 16, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.member-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), transparent 34%),
    radial-gradient(circle at 78% 10%, rgba(121, 108, 242, 0.16), transparent 30%);
  opacity: 0.86;
  pointer-events: none;
}

.member-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: calc(var(--radius) - 1px);
  pointer-events: none;
}

.member-card img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.member-card div {
  position: relative;
  z-index: 2;
  padding: clamp(18px, 2.4vw, 26px);
}

.member-card h3 {
  margin-bottom: 12px;
}

.member-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

@keyframes memberMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--member-gap-half)));
  }
}

.vetted-access {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  overflow: hidden;
  margin: 0 clamp(20px, 6vw, 88px) clamp(34px, 6vw, 82px);
  padding: clamp(44px, 6vw, 78px) clamp(24px, 5vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(121, 108, 242, 0.1), transparent 36%),
    radial-gradient(circle at 92% 18%, rgba(50, 200, 244, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 76px rgba(14, 14, 16, 0.08);
}

.vetted-access::before {
  content: "";
  position: absolute;
  top: clamp(28px, 5vw, 58px);
  right: clamp(24px, 5vw, 68px);
  width: clamp(92px, 12vw, 160px);
  aspect-ratio: 1;
  border: 1px solid rgba(121, 108, 242, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.18)),
    url("assets/veritaso-logo.svg") center / 58% no-repeat;
  box-shadow:
    0 24px 70px rgba(14, 14, 16, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  opacity: 0.72;
}

.vetted-access > * {
  position: relative;
  z-index: 1;
}

.vetted-access h2 {
  max-width: 900px;
}

.vetted-access > p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.application {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.application-copy {
  position: sticky;
  top: 104px;
}

.application h2 {
  max-width: 760px;
}

.application-copy p {
  margin: 20px 0 30px;
  font-size: 1.08rem;
}

.application-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 58, 172, 0.06), transparent 42%),
    var(--white);
  box-shadow: var(--shadow-strong);
}

.field {
  display: grid;
  gap: 10px;
}

.field span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.field em {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.field small {
  max-width: 660px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

input,
textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(12, 12, 13, 0.16);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.86);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 132px;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.55;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(102, 96, 91, 0.58);
}

input:focus,
textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(121, 108, 242, 0.12);
}

.application-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.telegram-contact {
  display: grid;
  grid-template-columns: 220px minmax(0, 680px);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  margin: 0 clamp(20px, 6vw, 88px) clamp(24px, 4vw, 54px);
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(121, 108, 242, 0.09), transparent 40%),
    var(--white);
  box-shadow: 0 18px 48px rgba(14, 14, 16, 0.05);
}

.telegram-contact img {
  width: 220px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(12, 12, 13, 0.12);
  box-shadow: 0 22px 50px rgba(14, 14, 16, 0.12);
}

.telegram-contact h2 {
  margin-bottom: 18px;
}

.telegram-contact p {
  max-width: 640px;
  margin-bottom: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin: 0 clamp(20px, 6vw, 88px) clamp(18px, 3vw, 36px);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 58, 172, 0.07), transparent 34%),
    linear-gradient(315deg, rgba(121, 108, 242, 0.09), transparent 36%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(14, 14, 16, 0.05);
  backdrop-filter: blur(18px);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer p,
.footer-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  text-align: right;
}

.footer-meta a,
.footer-link {
  color: var(--ink);
  font: inherit;
  font-weight: 760;
}

.footer-link {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.footer-meta a:hover,
.footer-link:hover {
  color: var(--violet);
}

.status-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
}

.status-dialog::backdrop {
  background:
    radial-gradient(circle at 50% 40%, rgba(121, 108, 242, 0.2), transparent 28%),
    rgba(11, 11, 12, 0.42);
  backdrop-filter: blur(14px);
}

.status-dialog-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(251, 250, 247, 0.82)),
    var(--white);
  box-shadow:
    0 34px 90px rgba(14, 14, 16, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
}

.status-dialog-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(50, 200, 244, 0.18), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(240, 58, 172, 0.16), transparent 32%);
  pointer-events: none;
}

.status-dialog-panel > * {
  position: relative;
  z-index: 1;
}

.status-orb {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(180deg, var(--pink), var(--violet));
  box-shadow:
    0 18px 42px rgba(121, 108, 242, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.status-orb svg {
  width: 30px;
  height: 30px;
}

.status-orb path {
  fill: none;
  stroke: var(--white);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-icon-error {
  display: none;
}

.status-dialog[data-status="error"] .status-orb {
  background: linear-gradient(180deg, #ff7a1a, #78212d);
  box-shadow:
    0 18px 42px rgba(120, 33, 45, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.status-dialog[data-status="error"] .status-icon-success {
  display: none;
}

.status-dialog[data-status="error"] .status-icon-error {
  display: block;
}

.status-dialog h2 {
  max-width: 460px;
  margin-bottom: 16px;
  font-size: clamp(1.95rem, 4vw, 3.1rem);
  line-height: 0.98;
}

.status-dialog p[data-status-message] {
  max-width: 460px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.status-dialog .button {
  min-width: 164px;
}

.privacy-dialog {
  width: min(920px, calc(100% - 32px));
  max-height: min(760px, calc(100svh - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
}

.privacy-dialog::backdrop {
  background: rgba(11, 11, 12, 0.34);
  backdrop-filter: blur(12px);
}

.privacy-dialog-panel {
  position: relative;
  overflow: auto;
  max-height: min(760px, calc(100svh - 32px));
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(251, 250, 247, 0.82)),
    var(--white);
  box-shadow: 0 34px 90px rgba(14, 14, 16, 0.22);
}

.privacy-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(12, 12, 13, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.privacy-dialog h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.policy-date {
  margin-bottom: 30px;
  color: var(--muted);
  font-weight: 700;
}

.policy-content {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.policy-content h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 1rem;
}

.policy-content p {
  margin-bottom: 0;
  line-height: 1.7;
}

.policy-content a {
  color: var(--violet);
  font-weight: 760;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    width: min(680px, calc(100% - 40px));
    margin-right: 20px;
  }

  .hero-media {
    opacity: 0.36;
    background-position: center bottom;
    background-size: min(112vw, 780px) auto;
  }

  .cascade-column {
    gap: 14px;
  }

  .cascade-card {
    border-radius: 20px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.72) 45%, rgba(251, 250, 247, 0.96) 100%);
  }

  .workflow-band,
  .toolkit,
  .privacy-band,
  .passport-band,
  .matching-demo,
  .use-cases,
  .vetted-access,
  .application,
  .telegram-contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .privacy-band,
  .passport-band,
  .matching-demo,
  .member-access,
  .vetted-access,
  .telegram-contact,
  .site-footer {
    margin-left: 20px;
    margin-right: 20px;
  }

  .finder-demo-copy {
    order: 1;
    max-width: 100%;
  }

  .finder-demo-media {
    order: 2;
  }

  .section-heading,
  .passport-copy,
  .application-copy {
    position: static;
  }

  .tool-grid,
  .passport-grid,
  .use-case-list {
    grid-template-columns: 1fr;
  }

  .tool-card,
  .tool-card:nth-child(n+3) {
    grid-column: auto;
    min-height: 250px;
  }

  .ai-context-visual {
    min-height: 500px;
  }

  .telegram-contact img {
    width: 180px;
  }

  .matching-cascade {
    height: 620px;
    min-height: 0;
  }

  .vetted-access::before {
    opacity: 0.32;
  }

  .member-grid {
    padding: 4px;
  }

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

  .member-feature {
    min-height: 560px;
  }

  .member-card {
    flex-basis: clamp(260px, 58vw, 330px);
  }

  .member-card img {
    height: auto;
  }

  .footer-meta {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 960px) {
  .ai-context-visual {
    min-height: 610px;
    padding: 16px;
  }

  .ai-context-visual::before {
    inset: 14px;
  }

  .embedding-query {
    top: 22px;
    right: 24px;
    left: 24px;
    width: auto;
    min-height: 0;
    padding: 14px;
  }

  .embedding-query span,
  .embedding-output span {
    font-size: 0.6rem;
  }

  .embedding-query strong,
  .embedding-output strong {
    margin-top: 8px;
    font-size: 1rem;
  }

  .embedding-query small,
  .embedding-output small {
    margin-top: 8px;
    font-size: 0.7rem;
    line-height: 1.32;
  }

  .vector-chip-row {
    gap: 5px;
    margin-top: 10px;
  }

  .semantic-map {
    inset: 158px 24px 136px;
  }

  .manifold-stage {
    inset: 14px;
  }

  .vector-lane {
    left: 29%;
    top: 60%;
    width: 39%;
  }

  .match-focus {
    left: 63%;
    top: 42%;
    width: 112px;
    height: 112px;
  }

  .inference-particle {
    width: 5px;
    height: 5px;
  }

  .data-cloud {
    width: 5px;
    height: 5px;
    opacity: 0.72;
  }

  .request-node em,
  .neighbor-secondary em,
  .neighbor-tertiary em {
    display: none;
  }

  .neighbor-primary em {
    top: -24px;
    font-size: 0.52rem;
  }

  .radius-wide {
    width: min(240px, 72%);
  }

  .radius-tight {
    width: min(126px, 38%);
  }

  .embedding-output {
    right: 24px;
    bottom: 24px;
    left: 24px;
    width: auto;
    min-height: 0;
    padding: 14px;
  }

  .score-stack {
    gap: 5px;
    margin-top: 10px;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    margin-top: 110px;
  }

  .finder-demo-media {
    padding: 8px;
    border-radius: var(--radius);
  }

  .chat-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 13px 14px;
  }

  .chat-thread {
    min-height: 560px;
    max-height: 720px;
    padding: 12px;
  }

  .chat-message {
    max-width: 96%;
    border-radius: 18px;
    padding: 15px;
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .match-result p {
    margin-bottom: 14px;
  }

  .chat-actions {
    margin-top: 14px;
  }

  .chat-button {
    min-height: 48px;
    padding: 12px 14px;
  }

  .linkedin-preview {
    grid-template-columns: 1fr;
  }

  .linkedin-preview img {
    width: 92px;
    order: -1;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .proof-row span,
  .button {
    width: 100%;
  }

  .ai-context-visual {
    min-height: 590px;
    padding: 16px;
  }

  .ai-context-visual::before {
    inset: 14px;
  }

  .embedding-query {
    top: 20px;
    right: 20px;
    left: 20px;
    width: auto;
    min-height: 0;
    padding: 14px;
  }

  .embedding-query span,
  .embedding-output span {
    font-size: 0.58rem;
  }

  .embedding-query strong {
    margin-top: 8px;
    font-size: 1rem;
  }

  .embedding-query small {
    margin-top: 8px;
    font-size: 0.68rem;
    line-height: 1.32;
  }

  .vector-chip-row {
    gap: 5px;
    margin-top: 10px;
  }

  .semantic-map {
    inset: 154px 20px 126px;
  }

  .manifold-stage {
    inset: 12px;
  }

  .manifold-stage::before {
    left: -58%;
    width: 52%;
  }

  .vector-lane {
    left: 28%;
    top: 60%;
    width: 40%;
  }

  .match-focus {
    width: 86px;
    height: 86px;
  }

  .match-focus::before {
    inset: 16px;
  }

  .match-focus::after {
    inset: 32px;
  }

  .data-cloud {
    width: 4px;
    height: 4px;
    opacity: 0.68;
  }

  .request-node em,
  .neighbor-secondary em,
  .neighbor-tertiary em {
    display: none;
  }

  .neighbor-primary em {
    top: -22px;
    font-size: 0.48rem;
  }

  .request-node {
    left: 27%;
    top: 58%;
  }

  .neighbor-primary {
    left: 63%;
    top: 42%;
  }

  .neighbor-secondary {
    left: 76%;
    top: 54%;
  }

  .neighbor-tertiary {
    left: 55%;
    top: 32%;
  }

  .radius-wide {
    width: 164px;
  }

  .radius-tight {
    width: 88px;
  }

  .embedding-output {
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
    min-height: 0;
    padding: 14px;
  }

  .embedding-output strong {
    margin-top: 8px;
    font-size: 1rem;
  }

  .embedding-output small {
    margin-top: 8px;
    font-size: 0.7rem;
  }

  .score-stack {
    gap: 5px;
    margin-top: 10px;
  }

  .tool-card,
  .workflow-step,
  .today-snapshot,
  .application-form,
  .privacy-band,
  .passport-band,
  .passport-grid article,
  .matching-demo,
  .use-case-list article,
  .matching-cascade,
  .member-access,
  .vetted-access,
  .member-card,
  .telegram-contact {
    box-shadow: none;
  }

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

  .member-access {
    gap: 28px;
  }

  .member-feature {
    min-height: 500px;
  }

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

  .member-mini,
  .member-mini.wide {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 0;
    padding: 12px;
  }

  .member-mini img {
    width: 92px;
    border-radius: 12px;
  }

  .member-mini span {
    margin-bottom: 6px;
  }

  .member-mini h3 {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .member-mini p {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .member-grid {
    margin-right: -20px;
    padding: 4px 20px 4px 0;
    mask-image: linear-gradient(90deg, #000 0%, #000 78%, transparent 100%);
  }

  .member-track {
    --member-gap: 14px;
    --member-gap-half: 7px;
    animation-duration: 72s;
  }

  .member-card {
    flex: 0 0 min(78vw, 330px);
    display: block;
    background: rgba(255, 255, 255, 0.88);
  }

  .member-card::before {
    opacity: 0.24;
  }

  .member-card img {
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
  }

  .member-card div {
    padding: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 250, 247, 0.9)),
      rgba(255, 255, 255, 0.92);
  }

  .member-card h3 {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1.18rem;
    line-height: 1.15;
  }

  .member-card p {
    color: rgba(11, 11, 12, 0.68);
    font-size: 0.92rem;
    line-height: 1.48;
  }
}

@media (max-width: 960px) {
  .passport-sources {
    top: 24px;
    right: 24px;
    left: 24px;
    gap: 8px;
  }

  .passport-source {
    min-height: 54px;
    padding: 12px;
    gap: 8px;
  }

  .passport-source strong {
    font-size: 0.68rem;
  }

  .passport-stream {
    top: 82px;
    height: 126px;
  }

  .passport-array-stage {
    inset: 112px 24px 124px;
    perspective: 760px;
  }

  .passport-array {
    width: min(292px, 82%);
  }

  .passport-context-output span {
    font-size: 0.58rem;
  }

  .passport-context-output strong {
    margin-top: 8px;
    font-size: 1rem;
  }

  .passport-context-output {
    right: 24px;
    bottom: 24px;
    left: 24px;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .context-bars {
    gap: 5px;
  }
}

@media (max-width: 520px) {
  .passport-sources {
    top: 20px;
    right: 20px;
    left: 20px;
    gap: 7px;
  }

  .passport-source {
    align-items: flex-start;
    flex-direction: column;
    min-height: 62px;
    padding: 10px;
  }

  .passport-source i {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--source-color), transparent 84%);
  }

  .passport-source strong {
    font-size: 0.58rem;
    line-height: 1.08;
  }

  .passport-stream {
    top: 88px;
    height: 108px;
  }

  .passport-array-stage {
    inset: 126px 20px 132px;
    perspective: 620px;
  }

  .passport-array {
    width: min(228px, 86%);
  }

  .array-plane {
    border-radius: 14px;
    background-size: 26px 26px, 26px 26px, auto, auto;
  }

  .plane-back {
    transform: translateZ(-52px);
  }

  .plane-front {
    transform: translateZ(52px);
  }

  .array-dot {
    width: 5px;
    height: 5px;
  }

  .dot-linkedin {
    --array-points:
      -54px -12px 0 currentColor,
      -36px 24px 0 currentColor,
      -12px -40px 0 currentColor,
      14px 32px 0 currentColor,
      40px -18px 0 currentColor,
      60px 12px 0 currentColor;
  }

  .dot-goals {
    --array-points:
      -50px 18px 0 currentColor,
      -26px -30px 0 currentColor,
      4px 38px 0 currentColor,
      32px -14px 0 currentColor,
      58px 24px 0 currentColor;
  }

  .dot-network {
    --array-points:
      -44px -24px 0 currentColor,
      -18px 30px 0 currentColor,
      14px -16px 0 currentColor,
      38px 22px 0 currentColor,
      58px -32px 0 currentColor;
  }

  .passport-context-output {
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cascade-column {
    animation: none;
    transform: translateY(-18%);
  }

  .member-track {
    animation: none;
    transform: translateX(0);
  }

  .ai-context-visual::after,
  .embedding-query::before,
  .embedding-output::before,
  .embedding-grid,
  .passport-source::after,
  .passport-stream,
  .passport-array,
  .array-dot,
  .context-bars i,
  .manifold-stage::before,
  .manifold-stage::after,
  .vector-chip-row i,
  .score-stack i,
  .vector-lane::before,
  .match-focus,
  .inference-particle,
  .data-cloud,
  .search-radius,
  .request-node,
  .neighbor-node,
  .embedding-output {
    animation: none;
  }
}
