:root {
  --bg-0: #040811;
  --bg-1: #070f1f;
  --bg-2: #101c3d;
  --line: rgba(135, 198, 255, 0.24);
  --text: #ecf4ff;
  --muted: #9eb0d0;
  --accent: #52d5ff;
  --accent-2: #5f7cff;
  --shadow-xl: 0 25px 60px rgba(3, 8, 18, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 20% -20%, #1e3770 0%, #070f1f 42%, #03060e 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

#scene3d,
#particles,
.atmo,
.noise-layer,
.vignette,
.spotlight,
.light-beam {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#scene3d {
  z-index: 0;
}

#particles {
  z-index: 1;
}

.atmo {
  z-index: 2;
  filter: blur(70px);
  opacity: 0.3;
}

.haze-1 {
  background: radial-gradient(circle at 12% 20%, rgba(70, 148, 255, 0.42), transparent 60%);
  animation: driftOne 18s ease-in-out infinite;
}

.haze-2 {
  background: radial-gradient(circle at 86% 28%, rgba(98, 232, 255, 0.26), transparent 56%);
  animation: driftTwo 22s ease-in-out infinite;
}

.noise-layer {
  z-index: 3;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.vignette {
  z-index: 4;
  background: radial-gradient(circle at 50% 50%, transparent 42%, rgba(1, 4, 10, 0.58) 100%);
}

.spotlight {
  z-index: 5;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 45%), rgba(116, 225, 255, 0.16), transparent 28%),
    radial-gradient(circle at calc(var(--mx, 50%) + 8%) calc(var(--my, 45%) - 12%), rgba(107, 133, 255, 0.12), transparent 24%);
  mix-blend-mode: screen;
}

.light-beam {
  z-index: 2;
  width: 38vw;
  height: 120vh;
  top: -10vh;
  left: 50%;
  transform-origin: top center;
  background: linear-gradient(to bottom, rgba(123, 231, 255, 0.14), rgba(123, 231, 255, 0));
  filter: blur(12px);
  opacity: 0.45;
}

.beam-a {
  transform: translateX(-110%) rotate(12deg);
  animation: beamMoveA 14s ease-in-out infinite alternate;
}

.beam-b {
  transform: translateX(10%) rotate(-16deg);
  animation: beamMoveB 16s ease-in-out infinite alternate;
}

@keyframes beamMoveA {
  from { transform: translateX(-120%) rotate(10deg) scaleY(0.95); opacity: 0.32; }
  to { transform: translateX(-98%) rotate(18deg) scaleY(1.02); opacity: 0.58; }
}

@keyframes beamMoveB {
  from { transform: translateX(0%) rotate(-18deg) scaleY(0.93); opacity: 0.3; }
  to { transform: translateX(14%) rotate(-10deg) scaleY(1.06); opacity: 0.54; }
}

@keyframes driftOne {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(4%, -3%, 0); }
}

@keyframes driftTwo {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-3%, 3%, 0); }
}

#mainHeader {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 60;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

#mainHeader.scrolled {
  background: rgba(5, 10, 22, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(142, 203, 255, 0.2);
}

.header-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #d4e8ff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand i {
  color: var(--accent);
  font-size: 1.3rem;
}

#mainMenu {
  display: flex;
  justify-content: center;
  gap: 26px;
}

#mainMenu a {
  color: #b8c9e4;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
}

#mainMenu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #8de8ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

#mainMenu a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(129, 194, 255, 0.3);
  background: rgba(11, 22, 44, 0.56);
  color: #d8ebff;
  font-size: 1.1rem;
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(370px, 82vw);
  height: 100vh;
  z-index: 80;
  border-left: 1px solid rgba(130, 198, 255, 0.26);
  background: linear-gradient(160deg, rgba(8, 16, 33, 0.98), rgba(5, 11, 24, 0.98));
  transform: translateX(100%);
  transition: transform 260ms ease;
  padding: 16px 18px 30px;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-close {
  width: 34px;
  height: 34px;
  margin-left: auto;
  border: 1px solid rgba(130, 198, 255, 0.3);
  border-radius: 999px;
  background: rgba(11, 22, 44, 0.68);
  color: #d8ebff;
  font-size: 1rem;
  cursor: pointer;
}

.drawer-nav {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.drawer-nav a {
  color: #d1e4ff;
  text-decoration: none;
  border: 1px solid rgba(129, 194, 255, 0.18);
  border-radius: 12px;
  background: rgba(13, 26, 50, 0.55);
  padding: 11px 12px;
  font-weight: 700;
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 75;
  background: rgba(2, 6, 14, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-drawer-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

main {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero {
  min-height: 100vh;
  padding-top: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  transform-style: preserve-3d;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
  animation: heroFloat 7s ease-in-out infinite;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: #8fdcff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.wordmark {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 9vw, 7rem);
  line-height: 0.96;
  letter-spacing: 0.04em;
  background: linear-gradient(95deg, #c9f2ff 0%, #8ed6ff 35%, #9fbbff 65%, #c7f0ff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 36px rgba(90, 194, 255, 0.35), 0 0 70px rgba(104, 126, 255, 0.2);
  animation: wordShift 6s ease-in-out infinite;
}

@keyframes wordShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero h2 {
  margin: 18px auto 0;
  max-width: 860px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.7rem);
  line-height: 1.14;
}

.subtitle {
  margin: 16px auto 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

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

.hero-stats {
  margin-top: 26px;
  width: min(770px, 100%);
  padding: 14px;
  position: relative;
  z-index: 2;
  animation: statsBob 6s ease-in-out infinite;
}

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

.hero-stats header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.hero-stats header p {
  margin: 0;
  color: #c8def7;
  font-size: 0.85rem;
  font-weight: 600;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #44f1b0;
  box-shadow: 0 0 0 9px rgba(68, 241, 176, 0.14);
}

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

.stat-box {
  border: 1px solid rgba(133, 196, 255, 0.2);
  border-radius: 12px;
  background: rgba(8, 17, 37, 0.62);
  padding: 10px;
  text-align: left;
}

.stat-box label {
  display: block;
  color: #95acd1;
  font-size: 0.76rem;
  margin-bottom: 4px;
}

.stat-box strong {
  font-size: 1.5rem;
  color: #9ce8ff;
}

.hero-orbits {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(127, 195, 255, 0.28);
  box-shadow: 0 0 30px rgba(74, 147, 255, 0.2), inset 0 0 30px rgba(77, 176, 255, 0.08);
}

.orbit-a {
  width: min(72vw, 860px);
  height: min(72vw, 860px);
  transform: rotateX(70deg) rotateY(18deg) rotateZ(8deg);
  animation: spinA 24s linear infinite;
}

.orbit-b {
  width: min(58vw, 680px);
  height: min(58vw, 680px);
  transform: rotateX(70deg) rotateY(-22deg) rotateZ(-18deg);
  animation: spinB 18s linear infinite;
}

.orbit-c {
  width: min(46vw, 560px);
  height: min(46vw, 560px);
  border-color: rgba(100, 227, 255, 0.34);
  transform: rotateX(72deg) rotateY(10deg) rotateZ(36deg);
  animation: spinC 15s linear infinite;
}

@keyframes spinA { to { transform: rotateX(70deg) rotateY(18deg) rotateZ(368deg); } }
@keyframes spinB { to { transform: rotateX(70deg) rotateY(-22deg) rotateZ(-378deg); } }
@keyframes spinC { to { transform: rotateX(72deg) rotateY(10deg) rotateZ(396deg); } }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #9cc6ea;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bob 1.8s ease-in-out infinite;
}

.scroll-indicator i {
  font-size: 1rem;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 7px); }
}

.section {
  padding: 86px 0;
  position: relative;
}

.section-divider {
  height: 1px;
  width: 100%;
  margin-bottom: 24px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(122, 194, 255, 0.45) 25%, rgba(108, 231, 255, 0.65) 50%, rgba(122, 194, 255, 0.45) 75%, transparent 100%);
  opacity: 0.7;
}

.section-title p {
  margin: 0 0 8px;
  color: #8fdcff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 700;
}

.section-title h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.visuals-layout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.visuals-copy {
  padding: 24px;
}

.visuals-copy h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
}

.visuals-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.visuals-copy ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #bdd2f0;
  line-height: 1.72;
}

.visuals-gallery {
  position: relative;
  min-height: 560px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(132, 192, 255, 0.24);
  background:
    radial-gradient(circle at 18% 14%, rgba(92, 220, 255, 0.22), transparent 42%),
    radial-gradient(circle at 78% 82%, rgba(99, 121, 255, 0.24), transparent 44%),
    linear-gradient(170deg, rgba(8, 14, 30, 0.88), rgba(4, 8, 20, 0.92));
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(189, 229, 255, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.visuals-gallery::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, rgba(113, 229, 255, 0.1), rgba(88, 108, 255, 0.02), rgba(113, 229, 255, 0.1));
  animation: spinGlass 22s linear infinite;
}

.visuals-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(137, 224, 255, 0.04), rgba(137, 224, 255, 0) 38%, rgba(137, 224, 255, 0.04));
  mix-blend-mode: screen;
  pointer-events: none;
}

.robot-shot {
  position: absolute;
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(141, 204, 255, 0.34);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(3, 10, 25, 0.52);
  transform-origin: center center;
  transform: translate3d(0, 0, 0) rotate(var(--base-rot, 0deg));
  transition: border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
  z-index: 1;
}

.robot-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(119, 233, 255, 0.1), transparent 36%, rgba(80, 111, 255, 0.14));
  pointer-events: none;
}

.robot-shot:hover {
  border-color: rgba(125, 231, 255, 0.62);
  box-shadow: 0 24px 50px rgba(4, 14, 35, 0.64), 0 0 22px rgba(102, 217, 255, 0.24);
}

.robot-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.shot-a {
  --base-rot: -5deg;
  width: min(46%, 330px);
  aspect-ratio: 4 / 5;
  top: 7%;
  left: 5%;
  z-index: 1;
}

.shot-b {
  --base-rot: 4deg;
  width: min(46%, 330px);
  aspect-ratio: 1 / 1.08;
  top: 7%;
  right: 5%;
  z-index: 2;
}

.shot-c {
  --base-rot: -1deg;
  width: min(72%, 520px);
  aspect-ratio: 16 / 9;
  left: 14%;
  bottom: 8%;
  z-index: 3;
}

.shot-a img {
  object-position: 34% 50%;
}

.shot-b img {
  object-position: 66% 40%;
}

.shot-c img {
  object-position: 52% 45%;
}

.cards-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 208px;
  padding: 20px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: rgba(110, 228, 255, 0.58);
  box-shadow: 0 18px 34px rgba(6, 20, 48, 0.45);
  transform: translateY(-6px) scale(1.01);
}

.feature-card i {
  color: var(--accent);
  font-size: 1.3rem;
}

.feature-card h3 {
  margin: 12px 0 8px;
  font-size: 1.02rem;
}

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

.timeline {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.timeline-item {
  padding: 16px 18px;
}

.badge {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(106, 219, 255, 0.58);
  color: #8fe8ff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 3px 8px;
}

.timeline-item h3 {
  margin: 10px 0 6px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.flow-viz {
  margin-top: 20px;
  padding: 10px;
}

.flow-viz svg {
  width: 100%;
  height: auto;
  display: block;
}

.flow-path {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke: url(#flowGrad);
  stroke-dasharray: 10 10;
  animation: flowDash 9s linear infinite;
}

.flow-path.alt {
  stroke-width: 1.7;
  opacity: 0.5;
  animation-duration: 12s;
}

.flow-point circle {
  fill: #8fe8ff;
  filter: drop-shadow(0 0 6px rgba(112, 222, 255, 0.72));
}

.flow-point .pulse {
  fill: none;
  stroke: rgba(143, 232, 255, 0.8);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 10px rgba(112, 222, 255, 0.6));
  transform-origin: center;
  transform-box: fill-box;
  animation: flowPulse 2.6s ease-out infinite;
}

.flow-point text {
  fill: #b7d6f5;
  font-size: 18px;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.03em;
  text-anchor: middle;
}

@keyframes flowDash {
  to { stroke-dashoffset: -180; }
}

@keyframes flowPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

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

.platform-card {
  padding: 20px;
}

.platform-card h3 {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.platform-card h3 i {
  color: #95e9ff;
}

.platform-card ul {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.66;
}

.hero-context-strip {
  margin: 22px auto 0;
  max-width: 980px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.context-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(119, 197, 255, 0.24);
  border-radius: 999px;
  background: rgba(7, 16, 34, 0.52);
  color: #d7ebff;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(183, 230, 255, 0.08);
}

.context-chip i {
  color: var(--accent);
}

.interface-shot {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 12px;
  background:
    radial-gradient(circle at top right, rgba(88, 217, 255, 0.18), transparent 40%),
    linear-gradient(160deg, rgba(9, 21, 42, 0.96), rgba(5, 11, 24, 0.96));
}

.interface-shot__kicker {
  color: #8fdcff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 700;
}

.interface-shot__title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.3;
}

.interface-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interface-pill-list span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(132, 194, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 28, 56, 0.68);
  color: #cde4ff;
  font-size: 0.74rem;
  font-weight: 600;
}

.interface-pill-list--actions span {
  color: #e7f5ff;
  background: rgba(11, 34, 66, 0.74);
}

.interface-stack,
.interface-progress {
  display: grid;
  gap: 10px;
}

.interface-row,
.interface-progress__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #c5dcfa;
  font-size: 0.79rem;
}

.interface-row strong,
.interface-progress__row strong {
  color: #f2f8ff;
  font-size: 0.78rem;
  text-align: right;
}

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

.interface-metric {
  padding: 12px;
  border: 1px solid rgba(128, 192, 255, 0.18);
  border-radius: 14px;
  background: rgba(8, 21, 42, 0.7);
}

.interface-metric span {
  display: block;
  color: #88a7cc;
  font-size: 0.72rem;
  margin-bottom: 4px;
}

.interface-metric strong {
  color: #eef6ff;
  font-size: 0.84rem;
  line-height: 1.4;
}

.interface-progress__bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(126, 180, 236, 0.14);
  overflow: hidden;
}

.interface-progress__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #44d8ff, #6887ff);
  box-shadow: 0 0 18px rgba(90, 180, 255, 0.28);
}

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

.decision-grid {
  margin-bottom: 22px;
}

.contact-connect--cta {
  width: 100%;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 20px;
  align-items: center;
}

.cta-copy .eyebrow {
  margin-bottom: 10px;
}

.cta-copy .connect-title {
  text-align: left;
  margin-bottom: 12px;
}

.cta-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.cta-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.cta-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7ebff;
  font-size: 0.85rem;
  font-weight: 600;
}

.cta-list i {
  color: #77e4aa;
}

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

.cta-actions .btn {
  justify-content: center;
  text-align: center;
}

.contact-card {
  padding: clamp(22px, 5vw, 42px);
  text-align: center;
}

.contact-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.contact-card p {
  margin: 12px 0 24px;
  color: var(--muted);
}

.contact-connect {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(20px, 3.2vw, 34px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(74, 186, 255, 0.14), transparent 48%),
    radial-gradient(circle at 82% 100%, rgba(95, 125, 255, 0.16), transparent 44%),
    linear-gradient(150deg, rgba(10, 18, 44, 0.92), rgba(7, 14, 34, 0.9));
}

.connect-title {
  margin: 0 0 16px;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  letter-spacing: 0.01em;
  color: #e8f3ff;
}

.connect-title span {
  color: #6fd6ff;
}

.connect-form {
  display: grid;
  gap: 14px;
}

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

.connect-form input,
.connect-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(133, 186, 235, 0.3);
  background: rgba(12, 20, 45, 0.44);
  color: #e8efff;
  padding: 14px 16px;
  font-size: clamp(0.95rem, 1.7vw, 1.02rem);
  font-family: "Manrope", sans-serif;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.connect-form textarea {
  min-height: 170px;
  resize: vertical;
}

.connect-form input::placeholder,
.connect-form textarea::placeholder {
  color: rgba(178, 200, 228, 0.62);
}

.connect-form input:focus,
.connect-form textarea:focus {
  border-color: rgba(108, 208, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(72, 168, 255, 0.16);
  background: rgba(14, 25, 55, 0.62);
}

.connect-actions {
  margin-top: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-connect {
  border: 1px solid rgba(158, 214, 255, 0.58);
  border-radius: 999px;
  min-width: 170px;
  height: 52px;
  background: rgba(13, 23, 52, 0.64);
  color: #f0f7ff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-connect:hover {
  border-color: rgba(176, 230, 255, 0.84);
  box-shadow: 0 10px 22px rgba(6, 20, 48, 0.46);
  background: rgba(16, 29, 62, 0.82);
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  color: #fff;
}

.btn:hover {
  transform: none;
}

.btn-primary {
  background: linear-gradient(92deg, #35c9ff, #5a79ff);
  box-shadow: 0 14px 32px rgba(46, 128, 255, 0.33);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 90%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  animation: btnShine 3.2s linear infinite;
}

@keyframes btnShine {
  to { left: 200%; }
}

.btn-outline {
  border-color: rgba(100, 215, 255, 0.56);
  background: rgba(11, 22, 44, 0.48);
}

.btn-ghost {
  border-color: rgba(126, 192, 255, 0.3);
  background: rgba(14, 25, 50, 0.46);
}

.glass-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(12, 22, 44, 0.68), rgba(7, 12, 28, 0.7));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(177, 226, 255, 0.12);
}

.feature-card,
.platform-card,
.timeline-item,
.hero-stats,
.contact-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.platform-card::before,
.timeline-item::before,
.hero-stats::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, rgba(120, 225, 255, 0.08), rgba(103, 116, 255, 0.02), rgba(120, 225, 255, 0.08));
  animation: spinGlass 18s linear infinite;
}

.feature-card > *,
.platform-card > *,
.timeline-item > *,
.hero-stats > *,
.contact-card > * {
  position: relative;
  z-index: 1;
}

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

#loginSection {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(2, 6, 14, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: flex-end;
}

#loginSection.hidden {
  display: none;
}

#loginSection form {
  width: min(470px, 100%);
}

#loginPanel {
  position: relative;
  height: 100%;
  border-left: 1px solid rgba(128, 196, 255, 0.24);
  padding: 84px 34px 28px;
}

#closeLogin {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(128, 196, 255, 0.24);
  border-radius: 999px;
  background: rgba(11, 22, 44, 0.7);
  color: #d5e9ff;
  font-size: 1rem;
  cursor: pointer;
}

#loginPanel h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
}

.panel-subtitle {
  margin: 10px 0 14px;
  color: var(--muted);
}

#errorMsg {
  color: #ff8ca1;
  min-height: 20px;
  margin: 0 0 12px;
}

#signInBtn {
  position: relative;
}

#signInBtn.is-loading {
  opacity: 0.92;
  cursor: wait;
  pointer-events: none;
}

#signInBtn .btn-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#signInBtn .btn-spinner {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(234, 244, 255, 0.28);
  border-top-color: #eef5ff;
  animation: spinGlass 0.7s linear infinite;
}

.floating {
  position: relative;
  margin-bottom: 14px;
}

.icon-left {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #89a5d2;
  pointer-events: none;
}

.floating input.floating-input {
  width: 100%;
  height: 54px;
  border-radius: 12px;
  border: 1px solid rgba(127, 180, 240, 0.26);
  background: rgba(5, 11, 24, 0.82);
  color: #e9f3ff;
  padding: 18px 14px 6px 40px;
  font-size: 0.95rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.floating input.floating-input:focus {
  outline: none;
  border-color: rgba(97, 214, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(67, 175, 255, 0.15);
}

.floating-label {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: #8ea4cb;
  font-size: 0.9rem;
  pointer-events: none;
  transition: all 180ms ease;
}

.floating input.floating-input:focus + .floating-label,
.floating input.floating-input:not(:placeholder-shown) + .floating-label,
.floating.has-value .floating-label {
  top: 10px;
  transform: none;
  font-size: 0.72rem;
  color: #7bdfff;
}

.forgot {
  display: inline-block;
  margin: 4px 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7ddcff;
  text-decoration: none;
  font-size: 0.88rem;
  cursor: pointer;
}

.full {
  width: 100%;
}

.workspace-reset-overlay {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(12px);
}

.workspace-reset-overlay.is-open {
  display: flex;
}

.workspace-reset-modal {
  position: relative;
  width: min(100%, 520px);
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(135, 198, 255, 0.16);
  background: linear-gradient(180deg, rgba(18, 30, 54, 0.97), rgba(10, 19, 37, 0.95));
  box-shadow: 0 26px 80px rgba(2, 8, 18, 0.42);
  overflow: hidden;
}

.workspace-reset-modal::before {
  content: "";
  position: absolute;
  inset: -12% auto auto 60%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 213, 255, 0.18), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.workspace-reset-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(135, 198, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 18, 36, 0.72);
  color: #cde7ff;
  cursor: pointer;
}

.workspace-reset-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.workspace-reset-head {
  display: grid;
  gap: 10px;
}

.workspace-reset-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(135, 198, 255, 0.15);
  background: rgba(9, 20, 39, 0.46);
  color: #cfe8ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-reset-kicker i {
  color: #7ce8ff;
}

.workspace-reset-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  color: #eef5ff;
}

.workspace-reset-title--success {
  font-size: 1.5rem;
}

.workspace-reset-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.workspace-reset-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.workspace-reset-step {
  height: 6px;
  border-radius: 999px;
  background: rgba(135, 198, 255, 0.1);
}

.workspace-reset-step.is-active,
.workspace-reset-step.is-complete {
  background: linear-gradient(90deg, #52d5ff, #5f7cff);
}

.workspace-reset-panel {
  display: none;
  gap: 18px;
}

.workspace-reset-panel.is-active {
  display: grid;
}

.workspace-reset-message {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(135, 198, 255, 0.14);
  background: rgba(8, 18, 36, 0.58);
  color: #d5e9ff;
  font-size: 0.9rem;
  line-height: 1.55;
}

.workspace-reset-message.is-visible {
  display: block;
}

.workspace-reset-message.is-error {
  border-color: rgba(255, 145, 145, 0.18);
  background: rgba(127, 29, 29, 0.16);
  color: #ffd6d6;
}

.workspace-reset-message.is-success {
  border-color: rgba(82, 213, 255, 0.16);
  background: rgba(12, 44, 64, 0.34);
  color: #d8f8ff;
}

.workspace-reset-field {
  display: grid;
  gap: 8px;
}

.workspace-reset-field label {
  color: #d8ebff;
  font-size: 0.9rem;
  font-weight: 600;
}

.workspace-reset-input-wrap {
  position: relative;
}

.workspace-reset-input-wrap i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #88b8de;
  font-size: 1rem;
  pointer-events: none;
}

.workspace-reset-field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(135, 198, 255, 0.14);
  border-radius: 16px;
  background: rgba(5, 13, 28, 0.78);
  color: var(--text);
  padding: 15px 16px 15px 46px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.workspace-reset-field input:focus {
  border-color: rgba(82, 213, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(82, 213, 255, 0.09);
  background: rgba(9, 20, 39, 0.86);
}

.workspace-reset-hint {
  margin: 0;
  color: #9fb6d4;
  font-size: 0.82rem;
  line-height: 1.55;
}

.workspace-reset-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.workspace-reset-actions--center {
  justify-content: center;
}

.workspace-reset-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 14px;
  padding-inline: 18px;
}

.workspace-reset-actions .btn.is-loading {
  opacity: 0.92;
  cursor: wait;
  pointer-events: none;
}

.workspace-reset-actions .btn .btn-spinner {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(234, 244, 255, 0.28);
  border-top-color: #eef5ff;
  animation: spinGlass 0.7s linear infinite;
}

.workspace-reset-success {
  display: grid;
  gap: 14px;
  text-align: center;
  justify-items: center;
}

.workspace-reset-success-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(82, 213, 255, 0.12);
  border: 1px solid rgba(135, 198, 255, 0.16);
  color: #7ce8ff;
  font-size: 1.4rem;
}

footer {
  border-top: 1px solid rgba(137, 193, 255, 0.22);
  text-align: center;
  padding: 20px;
  color: #94a8cb;
  position: relative;
  z-index: 10;
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

@media (max-width: 1100px) {
  .visuals-layout {
    grid-template-columns: 1fr;
  }

  .visuals-gallery {
    min-height: 500px;
  }

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

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

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  #mainMenu {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-stats {
    margin-top: 18px;
  }

  .wordmark {
    letter-spacing: -1em;
  }

  .hero h2 {
    font-size: clamp(1.26rem, 7vw, 1.9rem);
  }

  .visuals-copy {
    padding: 18px;
  }

  .visuals-gallery {
    min-height: 520px;
  }

  .shot-a {
    width: 66%;
    top: 6%;
    left: 3%;
  }

  .shot-b {
    width: 62%;
    top: 12%;
    right: 3%;
  }

  .shot-c {
    width: 84%;
    left: 8%;
    bottom: 6%;
  }

  .connect-row {
    grid-template-columns: 1fr;
  }

  .hero-context-strip {
    justify-content: flex-start;
  }

  .interface-metric-grid {
    grid-template-columns: 1fr;
  }

  .cta-copy .connect-title {
    text-align: left;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .connect-title {
    text-align: left;
    margin-bottom: 16px;
  }

  .connect-form textarea {
    min-height: 180px;
  }

  .btn-connect {
    width: 100%;
    min-width: 0;
    height: 62px;
    font-size: 1.55rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .flow-point text {
    font-size: 14px;
  }

  main {
    width: calc(100% - 24px);
  }

  .scroll-indicator {
    bottom: 12px;
  }

  .workspace-reset-modal {
    padding: 24px;
  }

  .workspace-reset-stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.shortlistii-wordmark,
.shortlistii-logo {
  display: inline-flex;
  align-items: flex-end;
  line-height: 1;
  text-decoration: none;
}

.shortlistii-wordmark {
  gap: 0.015em;
}

.shortlistii-logo {
  gap: 0.015em;
}

.logo-text {
  font-family: serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #eaf1fb;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.shortlistii-wordmark .logo-text {
  font-size: clamp(3.2rem, 8vw, 6.6rem);
}

.shortlistii-logo .logo-text {
  font-size: 1.95rem;
}

.logo-dot {
  font-size: 0.45em;
  position: relative;
  top: -0.08em;
  color: #5aa9ff;

  margin: 0;          /* remove all spacing */
  padding: 0;         /* ensure no hidden spacing */
}

.logo-ii {
  display: inline-flex;
  align-items: center;
  gap: 0.025em;
  margin-left: -0.015em;
  line-height: 1;
}

.shortlistii-logo .logo-ii {
  display: inline-flex;
  align-items: center;
  gap: 0.025em;
  margin-left: .4em;
  margin-bottom: 0.3em;
  line-height: 1;
}

.shortlistii-wordmark .logo-ii {
  transform: scale(0.85);
  transform-origin: top center;
}

.shortlistii-logo .logo-ii {
  transform: scale(1.85);
  transform-origin: bottom center;
}

.person {
  position: relative;
  width: 0.36em;
  height: 0.84em;
  display: inline-block;
  flex: 0 0 auto;
}

.person .head {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.27em;
  height: 0.27em;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #8fd0ff 0%, #5aa9ff 100%);
  box-shadow: 0 0 12px rgba(90, 169, 255, 0.18);
}

.person .body {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0.24em;
  height: 0.53em;
  transform: translateX(-50%);
  border-radius: 0.12em 0.12em 0.10em 0.10em;
  background: #eef4ff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
}

.person .tie {
  position: absolute;
  top: 0.30em;
  left: 50%;
  width: 0.08em;
  height: 0.30em;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #9dd5ff 0%, #5aa9ff 100%);
  clip-path: polygon(50% 0%, 100% 18%, 72% 100%, 28% 100%, 0% 18%);
}

.com-vertical {
  display: flex;
  flex-direction: column-reverse;  /* 🔥 KEY FIX */
  align-items: center;

  font-size: 0.20em;
  height: 0.6em;


  color: rgba(230, 237, 247, 0.55);

  margin-bottom: 1.2em;
  margin-left: -1.2em;
}

.com-vertical span {
  display: block;
  line-height: 0.82;
  transform: rotate(270deg);
}

.shortlistii-wordmark .com-vertical {
  transform: translateY(-0.01em);
}

.shortlistii-logo .com-vertical {
  height: 0.72em;
  font-size: 0.34em;
  margin-bottom: 0.01em;
}

body.landing-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(61, 122, 255, 0.28), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(74, 210, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #07101f 0%, #040915 42%, #03060d 100%);
}

.landing-page main {
  width: min(1280px, calc(100% - 40px));
}

.landing-page .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.landing-page .btn:focus-visible,
.landing-page a:focus-visible,
.landing-page button:focus-visible {
  outline: 2px solid rgba(118, 227, 255, 0.82);
  outline-offset: 2px;
}

.landing-page .hero {
  min-height: 100vh;
  padding: 132px 0 56px;
  display: flex;
  align-items: center;
  text-align: left;
}

.landing-page .hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.landing-page .hero-copy {
  max-width: 690px;
  position: relative;
  z-index: 2;
}

.landing-page .hero-wordmark {
  margin: 0 0 18px;
}

.landing-page .hero-wordmark .logo-text {
  font-size: clamp(2.8rem, 6.4vw, 5.7rem);
}

.landing-page .hero-subtitle {
  margin: 18px 0 0;
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.78;
  color: #9eb4d4;
}

.landing-page .hero-actions {
  margin-top: 28px;
  justify-content: flex-start;
}

.landing-page .hero-link-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.landing-page .hero-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dcecff;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
}

.landing-page .hero-inline-link i {
  color: #6bdcff;
}

.landing-page .hero-trust {
  margin: 28px 0 0;
  justify-content: flex-start;
}

.landing-page .hiring-flow-strip {
  position: relative;
  margin-top: 0;
  padding: 14px 18px 16px;
  overflow: hidden;
}

.landing-page .hiring-flow-section {
  padding: 0 0 28px;
}

.landing-page .hiring-flow-strip__top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  text-align: center;
}

.landing-page .hiring-flow-strip__title {
  margin: 0;
  padding: 2px 10px;
  color: #8fdcff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(106, 214, 255, 0.26);
}

.landing-page .hiring-flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.landing-page .hiring-flow-track::before,
.landing-page .hiring-flow-track::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 22px;
  height: 1px;
  pointer-events: none;
}

.landing-page .hiring-flow-track::before {
  background: linear-gradient(90deg, rgba(68, 112, 178, 0.12), rgba(112, 214, 255, 0.24), rgba(68, 112, 178, 0.12));
}

.landing-page .hiring-flow-track::after {
  width: 18%;
  right: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(82, 213, 255, 0), rgba(82, 213, 255, 0.95), rgba(108, 126, 255, 0));
  box-shadow: 0 0 18px rgba(86, 186, 255, 0.32);
  animation: landingFlowTravel 5.2s linear infinite;
}

.landing-page .hiring-flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  outline: none;
}

.landing-page .hiring-flow-node {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(132, 174, 214, 0.16);
  background:
    radial-gradient(circle at 50% 30%, rgba(113, 208, 255, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(18, 30, 48, 0.94), rgba(10, 17, 29, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(205, 231, 255, 0.06),
    0 12px 24px rgba(2, 8, 20, 0.18);
  color: #92ddff;
  font-size: 1rem;
  transition: transform 180ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.landing-page .hiring-flow-node::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(93, 180, 255, 0.16), rgba(93, 180, 255, 0));
  opacity: 0.8;
}

.landing-page .hiring-flow-label {
  color: #dbe8fb;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 180ms ease;
}

.landing-page .hiring-flow-step:hover .hiring-flow-node,
.landing-page .hiring-flow-step:focus-visible .hiring-flow-node {
  transform: translateY(-2px);
  border-color: rgba(134, 206, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(205, 231, 255, 0.08),
    0 16px 28px rgba(2, 8, 20, 0.2),
    0 0 22px rgba(70, 160, 255, 0.14);
}

.landing-page .hiring-flow-step:hover .hiring-flow-label,
.landing-page .hiring-flow-step:focus-visible .hiring-flow-label {
  color: #eef5ff;
}

.landing-page .hiring-flow-step:focus-visible {
  outline: none;
}

.landing-page .hero-panel {
  width: 100%;
  margin-top: 0;
  padding: 24px;
  animation: none;
}

.landing-page .hero-panel::before {
  opacity: 0.72;
}

.landing-page .hero-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.landing-page .hero-panel__eyebrow,
.landing-page .showcase-mini-label {
  margin: 0 0 8px;
  color: #88dbff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
}

.landing-page .hero-panel__top h2 {
  margin: 0;
  max-width: 22ch;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  line-height: 1.22;
}

.landing-page .hero-panel__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(126, 193, 255, 0.24);
  border-radius: 999px;
  background: rgba(10, 20, 38, 0.7);
  color: #d6e9ff;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.landing-page .hero-panel__signal-grid,
.landing-page .hero-panel__preview-grid {
  display: grid;
  gap: 14px;
}

.landing-page .hero-panel__signal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.landing-page .signal-card,
.landing-page .preview-card,
.landing-page .workspace-panel,
.landing-page .analytics-tile {
  border: 1px solid rgba(127, 193, 255, 0.16);
  border-radius: 16px;
  background: rgba(8, 18, 36, 0.68);
  box-shadow: inset 0 1px 0 rgba(196, 232, 255, 0.06);
}

.landing-page .signal-card {
  padding: 16px;
}

.landing-page .signal-card__label {
  display: inline-block;
  margin-bottom: 10px;
  color: #8cdfff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.landing-page .signal-card strong,
.landing-page .analytics-tile strong {
  display: block;
  color: #eff6ff;
  line-height: 1.5;
}

.landing-page .signal-card p {
  margin: 8px 0 0;
  color: #98afcf;
  line-height: 1.62;
  font-size: 0.92rem;
}

.landing-page .hero-panel__preview-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.landing-page .preview-card {
  padding: 16px;
}

.landing-page .preview-card__header,
.landing-page .workspace-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: #ddecff;
  font-size: 0.84rem;
  font-weight: 700;
}

.landing-page .preview-card__header span:first-child,
.landing-page .workspace-panel__header span {
  color: #8ca9cf;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.landing-page .pipeline-lanes {
  display: grid;
  gap: 12px;
}

.landing-page .pipeline-lane {
  display: grid;
  gap: 6px;
  color: #d9e8fb;
  font-size: 0.84rem;
}

.landing-page .pipeline-lane__bar,
.landing-page .insight-meter {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(120, 178, 232, 0.14);
}

.landing-page .pipeline-lane__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #45d8ff, #5a7cff);
  box-shadow: 0 0 18px rgba(88, 180, 255, 0.22);
}

.landing-page .decision-feed {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.landing-page .decision-feed li {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(126, 193, 255, 0.12);
}

.landing-page .decision-feed li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.landing-page .decision-feed strong,
.landing-page .decision-feed span {
  display: block;
}

.landing-page .decision-feed strong {
  color: #f3f7ff;
  margin-bottom: 4px;
  font-size: 0.93rem;
}

.landing-page .decision-feed span {
  color: #96adce;
  line-height: 1.58;
  font-size: 0.88rem;
}

.landing-page .positioning-strip {
  position: relative;
  z-index: 10;
  margin-top: 8px;
}

.landing-page .positioning-strip__inner {
  position: relative;
  overflow: hidden;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.landing-page .positioning-strip__inner h2 {
  margin: 0;
  max-width: 28ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  line-height: 1.2;
}

.landing-page .positioning-strip__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.landing-page .positioning-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 148px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(128, 196, 255, 0.22);
  background: rgba(10, 19, 37, 0.66);
  color: #dcecff;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(205, 231, 255, 0.05);
}

.landing-page .positioning-chip i {
  color: #8fdcff;
  font-size: 1rem;
}

.landing-page .positioning-chip span {
  display: block;
}

.landing-page .workflow-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.landing-page .workflow-card {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.landing-page .workflow-card::before,
.landing-page .final-cta::before,
.landing-page .analytics-spotlight::before,
.landing-page .comparison-card::before,
.landing-page .positioning-strip__inner::before,
.landing-page .showcase-window::before,
.landing-page .showcase-copy::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, rgba(120, 225, 255, 0.08), rgba(103, 116, 255, 0.02), rgba(120, 225, 255, 0.08));
  animation: spinGlass 20s linear infinite;
}

.landing-page .workflow-card > *,
.landing-page .final-cta > *,
.landing-page .analytics-spotlight > *,
.landing-page .comparison-card > *,
.landing-page .positioning-strip__inner > *,
.landing-page .showcase-window > *,
.landing-page .showcase-copy > * {
  position: relative;
  z-index: 1;
}

.landing-page .workflow-card h3,
.landing-page .comparison-card h3,
.landing-page .showcase-copy h3,
.landing-page .analytics-spotlight h3,
.landing-page .showcase-window h3 {
  margin: 10px 0 10px;
  font-family: "Sora", sans-serif;
  line-height: 1.3;
}

.landing-page .workflow-card p,
.landing-page .showcase-copy p,
.landing-page .analytics-spotlight p,
.landing-page .final-cta p {
  margin: 0;
  color: #9db3d2;
  line-height: 1.7;
}

.landing-page .landing-feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.landing-page .landing-feature-grid .feature-card {
  min-height: 220px;
}

.landing-page .showcase-shell {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.landing-page .showcase-copy {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.landing-page .showcase-points {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #c7daf5;
  line-height: 1.8;
}

.landing-page .showcase-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 16px;
  align-items: start;
}

.landing-page .showcase-window {
  position: relative;
  padding: 18px;
  overflow: hidden;
}

.landing-page .showcase-window--main {
  min-height: 430px;
}

.landing-page .showcase-window--side {
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.landing-page .window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.landing-page .window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 184, 226, 0.34);
}

.landing-page .workspace-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.landing-page .workspace-header p {
  margin: 0 0 8px;
  color: #90dfff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.landing-page .workspace-header h3 {
  margin: 0;
  font-size: 1.32rem;
}

.landing-page .workspace-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(128, 196, 255, 0.2);
  background: rgba(12, 22, 42, 0.72);
  color: #d5ebff;
  font-size: 0.78rem;
  font-weight: 700;
}

.landing-page .workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
}

.landing-page .workspace-panel {
  padding: 16px;
}

.landing-page .candidate-stack,
.landing-page .insight-lines,
.landing-page .metric-rows {
  display: grid;
  gap: 12px;
}

.landing-page .candidate-stack article,
.landing-page .insight-lines div,
.landing-page .metric-rows div {
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(12, 23, 44, 0.7);
  border: 1px solid rgba(127, 193, 255, 0.12);
}

.landing-page .candidate-stack strong,
.landing-page .insight-lines strong,
.landing-page .metric-rows strong {
  display: block;
  color: #f3f8ff;
  margin-bottom: 4px;
  line-height: 1.4;
}

.landing-page .candidate-stack span,
.landing-page .insight-lines span,
.landing-page .metric-rows span,
.landing-page .analytics-tile span {
  display: block;
  color: #93accc;
  line-height: 1.55;
  font-size: 0.86rem;
}

.landing-page .analytics-layout {
  margin-top: 24px;
}

.landing-page .analytics-spotlight {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.landing-page .analytics-spotlight__copy {
  max-width: 720px;
}

.landing-page .analytics-spotlight__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-page .analytics-tile {
  padding: 18px;
}

.landing-page .analytics-tile span {
  margin-bottom: 10px;
  color: #88dbff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
}

.landing-page .comparison-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.landing-page .comparison-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.landing-page .comparison-card--problem {
  border-color: rgba(255, 160, 190, 0.2);
}

.landing-page .comparison-card--solution {
  border-color: rgba(114, 228, 255, 0.22);
}

.landing-page .comparison-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #bdd2ef;
  line-height: 1.82;
}

.landing-page .section-cta {
  padding-bottom: 98px;
}

.landing-page .final-cta {
  position: relative;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
}

.landing-page .final-cta__copy h2 {
  margin: 0 0 12px;
  max-width: 18ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.landing-page .final-cta__actions {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

.landing-page .site-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(137, 193, 255, 0.16);
  background: rgba(4, 10, 21, 0.72);
  backdrop-filter: blur(8px);
  padding: 32px 20px 24px;
  text-align: left;
}

.landing-page .site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}

.landing-page .site-footer__brand p {
  margin: 14px 0 0;
  max-width: 28ch;
  color: #91a8ca;
  line-height: 1.7;
}

.landing-page .site-footer__nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.landing-page .footer-group {
  display: grid;
  gap: 9px;
  align-content: start;
}

.landing-page .footer-group h3 {
  margin: 0 0 4px;
  color: #eef5ff;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.landing-page .footer-group a,
.landing-page .footer-link-button,
.landing-page .footer-muted {
  color: #90a8cb;
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.55;
}

.landing-page .footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.landing-page .footer-group a:hover,
.landing-page .footer-link-button:hover {
  color: #e7f2ff;
}

.landing-page .site-footer__copyright {
  max-width: 1280px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(137, 193, 255, 0.12);
  color: #7f96b9;
  font-size: 0.84rem;
  text-align: left;
}

@media (max-width: 1260px) {
  .landing-page .landing-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-page .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-page .site-footer__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .landing-page .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .landing-page .hero-layout,
  .landing-page .showcase-shell,
  .landing-page .showcase-visual,
  .landing-page .site-footer__inner,
  .landing-page .positioning-strip__inner,
  .landing-page .final-cta {
    grid-template-columns: 1fr;
  }

  .landing-page .hero-copy {
    max-width: none;
  }

  .landing-page .hero-panel__signal-grid,
  .landing-page .hero-panel__preview-grid,
  .landing-page .workspace-grid,
  .landing-page .analytics-spotlight__grid,
  .landing-page .comparison-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .positioning-strip__chips {
    justify-content: flex-start;
  }

  .landing-page .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .landing-page main {
    width: calc(100% - 24px);
  }

  .landing-page .hero {
    padding-top: 102px;
  }

  .landing-page .hero-actions,
  .landing-page .hero-link-row,
  .landing-page .hero-trust,
  .landing-page .hiring-flow-track {
    justify-content: flex-start;
  }

  .landing-page .hero-actions .btn {
    width: 100%;
  }

  .landing-page .hero-panel,
  .landing-page .showcase-copy,
  .landing-page .showcase-window,
  .landing-page .analytics-spotlight,
  .landing-page .comparison-card,
  .landing-page .final-cta,
  .landing-page .positioning-strip__inner {
    padding: 18px;
  }

  .landing-page .hiring-flow-track {
    grid-template-columns: repeat(5, minmax(88px, 1fr));
  }

  .landing-page .hero-panel__top {
    flex-direction: column;
  }

  .landing-page .landing-feature-grid,
  .landing-page .workflow-grid,
  .landing-page .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .landing-page .workspace-header {
    flex-direction: column;
  }

  .landing-page .final-cta__actions {
    min-width: 0;
    width: 100%;
  }

  .landing-page .final-cta__actions .btn {
    width: 100%;
  }

  .landing-page .site-footer {
    padding-inline: 12px;
  }
}

body.landing-page {
  background:
    radial-gradient(circle at 15% 0%, rgba(50, 98, 191, 0.16), transparent 30%),
    linear-gradient(180deg, #08111d 0%, #060d18 45%, #040913 100%);
}

.landing-page #mainHeader.scrolled {
  background: rgba(7, 13, 24, 0.86);
  border-bottom-color: rgba(137, 193, 255, 0.12);
}

.landing-page .glass-card,
.landing-page .positioning-strip__inner,
.landing-page .showcase-window,
.landing-page .showcase-copy,
.landing-page .analytics-spotlight,
.landing-page .comparison-card,
.landing-page .workflow-card,
.landing-page .final-cta {
  background: linear-gradient(180deg, rgba(12, 20, 34, 0.88), rgba(8, 14, 26, 0.92));
  border-color: rgba(132, 174, 214, 0.14);
  box-shadow: 0 18px 40px rgba(2, 8, 20, 0.22);
  backdrop-filter: blur(6px);
}

.landing-page .hero-panel::before,
.landing-page .workflow-card::before,
.landing-page .final-cta::before,
.landing-page .analytics-spotlight::before,
.landing-page .comparison-card::before,
.landing-page .positioning-strip__inner::before,
.landing-page .showcase-window::before,
.landing-page .showcase-copy::before {
  content: none;
}

.landing-page .btn-primary::after {
  display: none;
}

.landing-page .hero {
  padding: 122px 0 44px;
}

.landing-page .hero-layout {
  gap: 34px;
}

.landing-page .hero-orbits {
  opacity: 0.22;
}

.landing-page .orbit,
.landing-page .orbit-a,
.landing-page .orbit-b,
.landing-page .orbit-c {
  animation: none;
}

.landing-page .orbit-a {
  width: min(64vw, 760px);
  height: min(64vw, 760px);
}

.landing-page .orbit-b {
  width: min(50vw, 580px);
  height: min(50vw, 580px);
}

.landing-page .orbit-c {
  width: min(38vw, 460px);
  height: min(38vw, 460px);
}

.landing-page .hero-title {
  max-width: 12ch;
  letter-spacing: -0.05em;
}

.landing-page .hero-subtitle {
  max-width: 58ch;
  color: #a8bbd8;
}

.landing-page .hero-inline-button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.landing-page .hero-panel {
  padding: 22px;
}

.landing-page .hero-panel__top h2 {
  max-width: 24ch;
  font-size: 1.34rem;
}

.landing-page .hero-panel__status {
  background: rgba(9, 18, 32, 0.9);
  border-color: rgba(132, 174, 214, 0.12);
}

.landing-page .signal-card,
.landing-page .preview-card,
.landing-page .workspace-panel,
.landing-page .analytics-tile,
.landing-page .candidate-stack article,
.landing-page .insight-lines div,
.landing-page .metric-rows div {
  background: rgba(12, 20, 34, 0.84);
  border-color: rgba(132, 174, 214, 0.12);
  box-shadow: none;
}

.landing-page .preview-card--analytics {
  margin-top: 14px;
}

.landing-page .ranking-list,
.landing-page .workflow-status-list,
.landing-page .analytics-mini-grid {
  display: grid;
  gap: 10px;
}

.landing-page .ranking-item,
.landing-page .workflow-status-item,
.landing-page .analytics-mini-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(132, 174, 214, 0.12);
  border-radius: 14px;
  background: rgba(14, 22, 36, 0.84);
}

.landing-page .ranking-item strong,
.landing-page .workflow-status-item strong,
.landing-page .analytics-mini-card strong {
  display: block;
  color: #eef4ff;
  font-size: 0.92rem;
  line-height: 1.35;
}

.landing-page .ranking-item span,
.landing-page .workflow-status-item span,
.landing-page .analytics-mini-card span {
  color: #91a8ca;
  font-size: 0.83rem;
  line-height: 1.45;
}

.landing-page .ranking-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  background: rgba(38, 84, 170, 0.24);
  color: #dcedff;
  font-weight: 800;
}

.landing-page .analytics-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-page .analytics-mini-card {
  align-items: flex-start;
  flex-direction: column;
}

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

.landing-page .section-title {
  max-width: 760px;
  text-align: left;
}

.landing-page .section-title h2 {
  line-height: 1.16;
}

.landing-page .section-title p,
.landing-page .eyebrow {
  color: #7fd0ef;
}

.landing-page .feature-card {
  min-height: 196px;
}

.landing-page .feature-card:hover,
.landing-page .workflow-card:hover,
.landing-page .showcase-window:hover,
.landing-page .analytics-tile:hover,
.landing-page .comparison-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(2, 8, 20, 0.24);
}

.landing-page .showcase-shell,
.landing-page .platform-tour-shell,
.landing-page .analytics-layout,
.landing-page .comparison-grid,
.landing-page .workflow-grid,
.landing-page .cards-grid {
  margin-top: 22px;
}

.landing-page .platform-tour-shell {
  display: grid;
  grid-template-columns: minmax(290px, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  align-items: start;
}

.landing-page .platform-tour-nav,
.landing-page .platform-tour-panel {
  padding: 22px;
}

.landing-page .platform-tour-nav__intro > * + * {
  margin-top: 12px;
}

.landing-page .platform-tour-nav__intro h3,
.landing-page .platform-tour-panel__top h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #edf4ff;
}

.landing-page .platform-tour-nav__intro p:last-child,
.landing-page .platform-tour-panel__top p:last-child {
  margin: 0;
  color: #9fb3d1;
}

.landing-page .platform-tour-tabs {
  display: grid;
  gap: 14px;
}

.landing-page .platform-tour-tab {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(132, 174, 214, 0.14);
  border-radius: 18px;
  background: rgba(11, 19, 31, 0.82);
  color: inherit;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  cursor: pointer;
}

.landing-page .platform-tour-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(136, 196, 255, 0.22);
  box-shadow: 0 18px 30px rgba(2, 8, 20, 0.18);
}

.landing-page .platform-tour-tab:focus-visible {
  outline: none;
  border-color: rgba(134, 206, 255, 0.34);
  box-shadow:
    0 0 0 1px rgba(134, 206, 255, 0.16),
    0 18px 30px rgba(2, 8, 20, 0.18);
}

.landing-page .platform-tour-tab.is-active {
  border-color: rgba(104, 178, 255, 0.3);
  background: linear-gradient(180deg, rgba(17, 29, 49, 0.92), rgba(11, 19, 31, 0.94));
  box-shadow:
    0 20px 36px rgba(2, 8, 20, 0.22),
    inset 0 1px 0 rgba(205, 231, 255, 0.07);
}

.landing-page .platform-tour-tab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(30, 56, 98, 0.8), rgba(16, 29, 48, 0.9));
  border: 1px solid rgba(132, 174, 214, 0.16);
  color: #8fdbff;
  font-size: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(205, 231, 255, 0.05);
}

.landing-page .platform-tour-tab.is-active .platform-tour-tab__icon {
  color: #e7f4ff;
  border-color: rgba(136, 196, 255, 0.24);
  box-shadow:
    0 0 0 1px rgba(117, 194, 255, 0.08),
    0 0 24px rgba(84, 152, 255, 0.12);
}

.landing-page .platform-tour-tab__copy {
  display: grid;
  gap: 6px;
}

.landing-page .platform-tour-tab__copy strong {
  display: block;
  color: #edf4ff;
  font-size: 0.98rem;
  line-height: 1.3;
}

.landing-page .platform-tour-tab__copy span {
  display: block;
  color: #97adca;
  font-size: 0.82rem;
  line-height: 1.45;
}

.landing-page .platform-tour-stage {
  position: relative;
}

.landing-page .platform-tour-panel {
  min-height: 100%;
}

.landing-page .platform-tour-panel[hidden] {
  display: none;
}

.landing-page .platform-tour-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.landing-page .platform-tour-panel .hero-panel__status {
  align-self: flex-start;
  flex: 0 0 auto;
  padding-right: 14px;
  overflow: visible;
}

.landing-page .platform-tour-panel .live-dot {
  position: relative;
  flex: 0 0 10px;
  box-shadow: none;
}

.landing-page .platform-tour-panel .live-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(79, 240, 178, 0.32);
  opacity: 0.45;
  animation: platformDotPulse 2.2s ease-out infinite;
}

.landing-page .platform-tour-panel__content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.82fr);
  gap: 16px;
  margin-top: 18px;
}

.landing-page .platform-tour-preview {
  padding: 18px;
}

.landing-page .platform-tour-aside {
  display: grid;
  gap: 14px;
  align-content: start;
}

.landing-page .platform-tour-metric-card {
  padding: 18px;
  border: 1px solid rgba(132, 174, 214, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 22, 36, 0.9), rgba(10, 17, 28, 0.94));
  box-shadow: inset 0 1px 0 rgba(205, 231, 255, 0.04);
}

.landing-page .platform-tour-metric-card span {
  display: block;
  margin-bottom: 10px;
  color: #8fdcff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-page .platform-tour-metric-card strong {
  display: block;
  color: #edf4ff;
  font-size: 1rem;
  line-height: 1.5;
}

.landing-page .platform-tour-bullets {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-page .platform-tour-bullets li {
  position: relative;
  padding-left: 18px;
  color: #a4b7d2;
  font-size: 0.9rem;
  line-height: 1.6;
}

.landing-page .platform-tour-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7ce2ff, #6a7eff);
  box-shadow: 0 0 14px rgba(95, 176, 255, 0.24);
}

.landing-page .showcase-copy p,
.landing-page .analytics-spotlight p,
.landing-page .comparison-card ul,
.landing-page .workflow-card p,
.landing-page .feature-card p,
.landing-page .site-footer__brand p,
.landing-page .footer-group a,
.landing-page .footer-muted {
  color: #9fb3d1;
}

.landing-page .workspace-chip,
.landing-page .positioning-chip,
.landing-page .context-chip {
  background: rgba(11, 20, 34, 0.78);
  border-color: rgba(132, 174, 214, 0.14);
  box-shadow: none;
}

.landing-page .positioning-strip__inner h2,
.landing-page .final-cta__copy h2 {
  max-width: 20ch;
}

.landing-page .analytics-spotlight__copy {
  max-width: 680px;
}

.landing-page .site-footer {
  background: rgba(5, 10, 19, 0.92);
}

.landing-page .scroll-indicator {
  color: #86a8c6;
  animation: none;
}

@media (max-width: 1100px) {
  .landing-page .analytics-mini-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .platform-tour-shell,
  .landing-page .platform-tour-panel__content,
  .landing-page .hero-visual-window__board {
    grid-template-columns: 1fr;
  }

  .landing-page .hero-visual {
    min-height: auto;
    padding-bottom: 0;
  }

  .landing-page .hero-floating-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-page .platform-tour-stage,
  .landing-page .platform-tour-panel,
  .landing-page .platform-tour-nav {
    min-height: auto;
  }

  .landing-page .platform-tour-panel__top {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .landing-page .hero {
    padding-top: 98px;
  }

  .landing-page .hero-link-row {
    gap: 12px;
  }

  .landing-page .hiring-flow-strip {
    padding: 16px;
  }

  .landing-page .hiring-flow-strip__top {
    align-items: center;
    flex-direction: column;
    margin-bottom: 16px;
    text-align: center;
  }

  .landing-page .ranking-item,
  .landing-page .workflow-status-item {
    align-items: flex-start;
  }

  .landing-page .hero-visual {
    min-height: auto;
    padding-bottom: 0;
  }

  .landing-page .hero-visual-window,
  .landing-page .platform-tour-panel {
    padding: 18px;
  }

  .landing-page .platform-tour-nav {
    padding: 18px;
  }

  .landing-page .hero-visual-window__top {
    flex-direction: column;
  }

  .landing-page .hero-visual-window__metrics {
    grid-template-columns: 1fr;
  }

  .landing-page .hero-floating-row {
    grid-template-columns: 1fr;
  }

  .landing-page .hero-floating-card {
    width: 100%;
  }

  .landing-page .hiring-flow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .landing-page .hiring-flow-track::before,
  .landing-page .hiring-flow-track::after {
    display: none;
  }

  .landing-page .hiring-flow-step {
    justify-items: start;
    grid-template-columns: auto minmax(0, 1fr);
    text-align: left;
  }

  .landing-page .hiring-flow-step:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .landing-page .hiring-flow-label {
    align-self: center;
  }

  .landing-page .platform-tour-tab {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .landing-page .platform-tour-tab__icon {
    width: 40px;
    height: 40px;
  }
}

@keyframes landingGlowDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2%, -3%, 0) scale(1.05); }
}

@keyframes landingBeamFloat {
  0%, 100% { transform: translateY(0) rotate(var(--beam-rot, 0deg)); opacity: 0.26; }
  50% { transform: translateY(-12px) rotate(var(--beam-rot, 0deg)); opacity: 0.38; }
}

@keyframes landingFlowTravel {
  0% { transform: translateX(0); opacity: 0.2; }
  12% { opacity: 0.95; }
  88% { opacity: 0.95; }
  100% { transform: translateX(420%); opacity: 0.2; }
}

@keyframes landingFlowPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

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

@keyframes landingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(73, 226, 177, 0.25); }
  70% { box-shadow: 0 0 0 10px rgba(73, 226, 177, 0); }
}

@keyframes platformDotPulse {
  0% {
    transform: scale(0.7);
    opacity: 0.42;
  }
  65% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes landingBarPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

body.landing-page {
  background: #060d18;
}

.landing-page .hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 122px 0 52px;
  background:
    radial-gradient(circle at 14% -4%, rgba(65, 123, 232, 0.2), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(70, 214, 255, 0.1), transparent 24%);
}

.landing-page .hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.landing-page .hero-glow,
.landing-page .hero-beam,
.landing-page .hero-grid {
  position: absolute;
  pointer-events: none;
}

.landing-page .hero-glow {
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.55;
  animation: landingGlowDrift 12s ease-in-out infinite;
}

.landing-page .hero-glow-a {
  width: 36vw;
  height: 36vw;
  min-width: 320px;
  min-height: 320px;
  top: 2%;
  left: -6%;
  background: radial-gradient(circle, rgba(67, 132, 255, 0.3) 0%, rgba(67, 132, 255, 0) 70%);
}

.landing-page .hero-glow-b {
  width: 28vw;
  height: 28vw;
  min-width: 260px;
  min-height: 260px;
  top: 12%;
  right: 2%;
  background: radial-gradient(circle, rgba(74, 214, 255, 0.22) 0%, rgba(74, 214, 255, 0) 72%);
  animation-delay: -5s;
}

.landing-page .hero-beam {
  width: 26vw;
  height: 78vh;
  top: -16vh;
  background: linear-gradient(180deg, rgba(118, 214, 255, 0.16), rgba(118, 214, 255, 0));
  filter: blur(8px);
  opacity: 0.24;
  transform-origin: top center;
  animation: landingBeamFloat 10s ease-in-out infinite;
}

.landing-page .hero-beam-a {
  --beam-rot: 18deg;
  left: 52%;
}

.landing-page .hero-beam-b {
  --beam-rot: -20deg;
  left: 70%;
  animation-delay: -4s;
}

.landing-page #particles {
  opacity: 0.52;
}

.landing-page .hero-grid {
  inset: auto 0 10% 0;
  height: 38%;
  background:
    linear-gradient(rgba(134, 182, 234, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 182, 234, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82) 28%, rgba(0, 0, 0, 0.1));
  opacity: 0.42;
}

.landing-page .hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 20px;
  align-items: start;
}

.landing-page .hero-copy {
  max-width: 700px;
  align-self: start;
  justify-self: start;
  text-align: left;
}

.landing-page .hero-visual {
  position: relative;
  display: grid;
  gap: 14px;
  align-self: start;
  min-height: auto;
  padding-top: 14px;
}

.landing-page .hero-visual-window,
.landing-page .platform-tour-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-color: rgba(128, 187, 255, 0.18);
  box-shadow:
    0 26px 52px rgba(2, 8, 20, 0.28),
    inset 0 1px 0 rgba(205, 231, 255, 0.07);
}

.landing-page .hero-visual-window::after,
.landing-page .platform-tour-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(104, 174, 255, 0.1);
  pointer-events: none;
}

.landing-page .hero-visual-window__bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.landing-page .hero-visual-window__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 184, 226, 0.34);
}

.landing-page .hero-visual-window__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.landing-page .hero-visual-window__top h2 {
  margin: 0;
  max-width: 19ch;
  font-family: "Sora", sans-serif;
  font-size: 1.24rem;
  line-height: 1.22;
}

.landing-page .hero-visual-window__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.landing-page .hero-mini-metric,
.landing-page .hero-mini-panel,
.landing-page .hero-floating-card {
  border: 1px solid rgba(132, 174, 214, 0.14);
  border-radius: 16px;
  background: rgba(12, 20, 34, 0.86);
  box-shadow: none;
}

.landing-page .hero-mini-metric {
  padding: 14px;
}

.landing-page .hero-mini-metric span {
  display: block;
  margin-bottom: 8px;
  color: #8ca6ca;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-page .hero-mini-metric strong {
  display: block;
  color: #edf5ff;
  font-size: 0.95rem;
  line-height: 1.45;
}

.landing-page .hero-visual-window__board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 12px;
}

.landing-page .hero-mini-panel {
  padding: 16px;
}

.landing-page .hero-mini-list,
.landing-page .hero-mini-timeline {
  display: grid;
  gap: 10px;
}

.landing-page .hero-mini-list article,
.landing-page .hero-mini-timeline div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(15, 24, 40, 0.82);
  border: 1px solid rgba(128, 187, 255, 0.1);
}

.landing-page .hero-mini-list strong,
.landing-page .hero-mini-timeline strong {
  display: block;
  color: #eef5ff;
  font-size: 0.9rem;
  line-height: 1.4;
}

.landing-page .hero-mini-list span,
.landing-page .hero-mini-timeline span {
  display: block;
  margin-top: 4px;
  color: #8ea6c8;
  font-size: 0.8rem;
  line-height: 1.45;
}

.landing-page .hero-mini-timeline div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.landing-page .hero-floating-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  z-index: 2;
}

.landing-page .hero-floating-card {
  position: relative;
  width: 100%;
  padding: 16px;
  box-shadow: 0 18px 26px rgba(2, 8, 20, 0.2);
}

.landing-page .hero-floating-card strong {
  display: block;
  color: #eef5ff;
  font-size: 0.9rem;
  line-height: 1.5;
}

.landing-page .hero-floating-bar {
  width: 100%;
  height: 6px;
  margin-top: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(115, 163, 215, 0.12);
}

.landing-page .hero-floating-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #52d5ff, #6c7eff);
  box-shadow: 0 0 14px rgba(76, 180, 255, 0.24);
}

.landing-page .hero-wordmark {
  position: relative;
}

.landing-page .hero-wordmark::after {
  content: "";
  position: absolute;
  left: 4%;
  bottom: -8%;
  width: 44%;
  height: 18%;
  background: linear-gradient(90deg, rgba(90, 164, 255, 0.22), rgba(90, 164, 255, 0));
  filter: blur(18px);
  opacity: 0.8;
}

.landing-page .hero-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.95rem, 3vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  max-width: 680px;
  text-shadow: 0 0 28px rgba(49, 116, 228, 0.12);
}

@media (max-width: 768px) {
  .landing-page .hero-title {
    max-width: 100%;
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.12;
  }
}

.landing-page .hero-actions .btn {
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.landing-page .hero-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 48, 102, 0.28);
}

.landing-page .hero-inline-link {
  transition: transform 180ms ease, color 180ms ease;
}

.landing-page .hero-inline-link:hover {
  transform: translateY(-1px);
  color: #edf5ff;
}

.landing-page .hero-trust .context-chip {
  transition: transform 180ms ease, border-color 220ms ease, background 220ms ease;
}

.landing-page .hero-trust .context-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(138, 195, 255, 0.24);
  background: rgba(13, 24, 40, 0.88);
}

.landing-page .hero-panel {
  position: relative;
  padding: 24px;
  border-color: rgba(128, 187, 255, 0.18);
  box-shadow:
    0 26px 52px rgba(2, 8, 20, 0.28),
    inset 0 1px 0 rgba(205, 231, 255, 0.07);
}

.landing-page .hero-panel > * + * {
  margin-top: 16px;
}

.landing-page .hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(104, 174, 255, 0.1);
  pointer-events: none;
}

.landing-page .hero-panel__status {
  position: relative;
  overflow: hidden;
}

.landing-page .hero-panel__signal-row {
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-page .hero-signal-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(132, 187, 255, 0.14);
  background: rgba(15, 24, 40, 0.78);
  color: #cddff5;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.landing-page .hero-signal-chip--active {
  color: #eaf6ff;
  border-color: rgba(118, 214, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(118, 214, 255, 0.06);
}

.landing-page .hero-signal-chip--active::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fe4aa;
  box-shadow: 0 0 0 6px rgba(111, 228, 170, 0.12);
  animation: landingPulse 2.2s ease-out infinite;
}

.landing-page .live-dot {
  animation: landingPulse 2.2s ease-out infinite;
}

.landing-page .preview-card {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.landing-page .preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(118, 214, 255, 0.08), transparent 35%, rgba(88, 104, 255, 0.08));
  opacity: 0.8;
  pointer-events: none;
}

.landing-page .preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(135, 196, 255, 0.18);
  box-shadow: 0 16px 30px rgba(4, 12, 26, 0.24);
}

.landing-page .ranking-list,
.landing-page .workflow-status-list {
  gap: 12px;
}

.landing-page .ranking-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 12px;
  align-items: center;
}

.landing-page .ranking-item__score {
  display: grid;
  justify-items: center;
  gap: 3px;
}

.landing-page .ranking-item__score small {
  color: #8fa7c9;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-page .ranking-item__bar {
  grid-column: 1 / -1;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(115, 163, 215, 0.12);
}

.landing-page .ranking-item__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #52d5ff, #6c7eff);
  box-shadow: 0 0 14px rgba(76, 180, 255, 0.28);
  animation: landingBarPulse 3.4s ease-in-out infinite;
}

.landing-page .pipeline-stage-strip {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.landing-page .pipeline-stage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(128, 187, 255, 0.12);
  background: rgba(12, 21, 36, 0.72);
  color: #8fa6c8;
  font-size: 0.72rem;
  font-weight: 700;
}

.landing-page .pipeline-stage--complete {
  color: #dcecff;
}

.landing-page .pipeline-stage--active {
  color: #eef5ff;
  border-color: rgba(118, 214, 255, 0.22);
  background: rgba(16, 31, 51, 0.82);
}

.landing-page .workflow-status-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.landing-page .workflow-status-item__dot,
.landing-page .overlay-activity-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6fe4aa;
  box-shadow: 0 0 0 6px rgba(111, 228, 170, 0.12);
}

.landing-page .workflow-status-item--active .workflow-status-item__dot {
  animation: landingPulse 2.1s ease-out infinite;
}

.landing-page .workflow-status-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(134, 182, 234, 0.12);
  background: rgba(17, 28, 46, 0.8);
  color: #ddebff;
  font-size: 0.72rem;
  font-weight: 700;
}

.landing-page .workflow-alert-rail {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.landing-page .workflow-alert-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(14, 25, 42, 0.8);
  border: 1px solid rgba(132, 187, 255, 0.12);
  color: #c9dcf5;
  font-size: 0.72rem;
  font-weight: 700;
}

.landing-page .analytics-mini-grid {
  gap: 12px;
}

.landing-page .analytics-mini-card {
  gap: 10px;
  position: relative;
}

.landing-page .mini-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
  width: 100%;
  height: 42px;
}

.landing-page .mini-chart span {
  display: block;
  width: 100%;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, rgba(91, 203, 255, 0.9), rgba(80, 112, 255, 0.64));
  box-shadow: 0 0 12px rgba(85, 168, 255, 0.18);
  animation: landingBarPulse 3.6s ease-in-out infinite;
}

.landing-page .mini-chart span:nth-child(2) { animation-delay: -0.6s; }
.landing-page .mini-chart span:nth-child(3) { animation-delay: -1.1s; }
.landing-page .mini-chart span:nth-child(4) { animation-delay: -1.6s; }
.landing-page .mini-chart span:nth-child(5) { animation-delay: -2.1s; }

.landing-page .hero-overlay-card {
  position: relative;
  width: 100%;
  margin-top: 16px;
  padding: 18px;
  border-color: rgba(128, 187, 255, 0.16);
  box-shadow: 0 16px 28px rgba(2, 8, 20, 0.18);
  backdrop-filter: blur(8px);
}

.landing-page .hero-overlay-card__label {
  margin: 0 0 12px;
  color: #8fdcff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
}

.landing-page .overlay-activity-list {
  display: grid;
  gap: 10px;
}

.landing-page .overlay-activity-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid rgba(128, 187, 255, 0.1);
}

.landing-page .overlay-activity-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.landing-page .overlay-activity-item__copy {
  min-width: 0;
}

.landing-page .overlay-activity-list strong {
  display: block;
  color: #e7f3ff;
  font-size: 0.84rem;
  line-height: 1.55;
}

.landing-page .overlay-activity-item__copy span {
  display: block;
  margin-top: 4px;
  color: #8ea5c7;
  font-size: 0.74rem;
  font-weight: 600;
}

.landing-page .feature-card,
.landing-page .workflow-card,
.landing-page .showcase-window,
.landing-page .analytics-tile,
.landing-page .comparison-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.landing-page .section-divider {
  opacity: 0.55;
}

.landing-page .site-footer__inner {
  position: relative;
}

@media (max-width: 1100px) {
  .landing-page .hero-overlay-card {
    margin-top: 14px;
  }
}

@media (max-width: 760px) {
  .landing-page .hero-beam,
  .landing-page .hero-grid {
    display: none;
  }

  .landing-page .workflow-status-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .landing-page .workflow-status-tag {
    grid-column: 2;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .hero-glow,
  .landing-page .hero-beam,
  .landing-page .hero-panel,
  .landing-page .showcase-window--main,
  .landing-page .showcase-window--side,
  .landing-page .live-dot,
  .landing-page .platform-tour-panel .live-dot::after,
  .landing-page .hiring-flow-track::after,
  .landing-page .hiring-flow-step.is-active .hiring-flow-node,
  .landing-page .ranking-item__bar span,
  .landing-page .mini-chart span {
    animation: none !important;
  }
}

body.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(61, 122, 255, 0.24), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(74, 210, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #07101c 0%, #050a14 48%, #03060d 100%);
  color: #d7e3f4;
}

.legal-page #particles {
  opacity: 0.72;
}

.legal-page .vignette {
  background: radial-gradient(circle at 50% 45%, transparent 40%, rgba(1, 4, 10, 0.62) 100%);
}

.legal-page .shortlistii-logo .logo-text {
  font-size: 1.8rem;
}

.legal-page .shortlistii-logo .logo-ii {
  margin-left: 0.36em;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(6, 12, 22, 0.78);
  border-bottom: 1px solid rgba(137, 193, 255, 0.12);
}

.legal-header__inner,
.legal-main,
.legal-footer__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.legal-nav a {
  color: #a9bdd7;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: #eef5ff;
}

.legal-main {
  padding: 48px 0 72px;
  position: relative;
  z-index: 6;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.legal-hero__copy h1 {
  margin: 14px 0 16px;
  max-width: 14ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #eef5ff;
}

.legal-hero__copy p:last-child {
  max-width: 70ch;
  margin: 0;
  color: #a1b5d1;
  font-size: 1.02rem;
  line-height: 1.82;
}

.legal-card,
.legal-meta-card,
.legal-document {
  border: 1px solid rgba(132, 174, 214, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(12, 20, 34, 0.88), rgba(8, 14, 26, 0.92));
  box-shadow:
    0 18px 40px rgba(2, 8, 20, 0.22),
    inset 0 1px 0 rgba(205, 231, 255, 0.06);
  backdrop-filter: blur(6px);
}

.legal-meta-card {
  padding: 24px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.legal-meta-card__label {
  color: #8fdcff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-meta-card strong {
  color: #edf5ff;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
}

.legal-meta-card p,
.legal-meta-card address {
  margin: 0;
  color: #a3b6d1;
  font-style: normal;
  line-height: 1.7;
}

.legal-content-shell {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 106px;
}

.legal-toc .legal-card {
  padding: 20px;
}

.legal-toc nav {
  display: grid;
  gap: 10px;
}

.legal-toc a {
  color: #a3b6d1;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.45;
  border-left: 2px solid transparent;
  padding-left: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.toc-icon,
.section-kicker__icon,
.about-belief-card__icon,
.legal-heading__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8fdcff;
}

.toc-icon svg,
.section-kicker__icon svg,
.about-belief-card__icon svg,
.legal-heading__icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-toc a span:last-child {
  min-width: 0;
}

.legal-toc a:hover,
.legal-toc a.is-active,
.legal-toc a[aria-current="location"] {
  color: #eef5ff;
  border-left-color: rgba(111, 228, 255, 0.72);
  transform: translateX(2px);
}

.legal-document {
  padding: 28px;
}

.legal-section + .legal-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(127, 171, 214, 0.1);
}

.legal-section {
  scroll-margin-top: 136px;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.25;
  color: #eef5ff;
}

.legal-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.legal-heading__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(38, 69, 107, 0.34), rgba(16, 28, 46, 0.7));
  box-shadow:
    inset 0 1px 0 rgba(205, 231, 255, 0.1),
    0 0 0 1px rgba(132, 174, 214, 0.12);
}

.legal-section p,
.legal-section li,
.legal-address {
  color: #a5b7d1;
  font-size: 0.98rem;
  line-height: 1.82;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 10px;
}

.legal-address {
  margin: 0 0 14px;
  font-style: normal;
}

.legal-footer {
  border-top: 1px solid rgba(127, 171, 214, 0.12);
  background: rgba(5, 10, 18, 0.88);
  position: relative;
  z-index: 6;
}

.legal-footer__inner {
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.legal-footer__inner p {
  margin: 12px 0 0;
  max-width: 48ch;
  color: #8ea6c8;
  line-height: 1.7;
}

.legal-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.legal-footer__links a {
  color: #d9e7f9;
  text-decoration: none;
  font-weight: 600;
}

.legal-footer__links a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .legal-hero,
  .legal-content-shell {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .legal-footer__inner {
    flex-direction: column;
  }

  .legal-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .legal-header__inner,
  .legal-main,
  .legal-footer__inner {
    width: calc(100% - 24px);
  }

  .legal-header__inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-nav {
    justify-content: flex-start;
  }

  .legal-main {
    padding: 28px 0 56px;
  }

  .legal-document,
  .legal-meta-card,
  .legal-toc .legal-card {
    padding: 20px;
  }

  .legal-hero__copy h1 {
    max-width: none;
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

body.about-page-shell {
  background:
    radial-gradient(circle at 14% 0%, rgba(74, 142, 255, 0.2), transparent 25%),
    radial-gradient(circle at 86% 8%, rgba(111, 228, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #07101c 0%, #050b15 44%, #03060d 100%);
}

.about-page-shell .legal-main {
  padding-top: 44px;
}

.about-main {
  display: grid;
  gap: 28px;
}

.about-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(132, 174, 214, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 19, 34, 0.9), rgba(7, 13, 24, 0.94));
  box-shadow:
    0 24px 48px rgba(2, 8, 20, 0.24),
    inset 0 1px 0 rgba(205, 231, 255, 0.07);
  backdrop-filter: blur(10px);
}

.about-panel::before,
.about-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 14%, rgba(107, 220, 255, 0.14), transparent 28%),
    radial-gradient(circle at 84% 86%, rgba(111, 139, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
  gap: 28px;
  align-items: center;
  padding: 20px 0 6px;
}

.about-hero::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 4%;
  width: 56%;
  height: 88%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(72, 130, 255, 0.18), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.about-hero__copy {
  position: relative;
  z-index: 2;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-kicker__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(36, 65, 101, 0.36), rgba(14, 25, 42, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(205, 231, 255, 0.08),
    0 0 0 1px rgba(132, 174, 214, 0.12);
}

.about-hero__copy h1 {
  margin: 14px 0 18px;
  max-width: 12ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 4.55rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #eef5ff;
}

.about-hero__lede {
  max-width: 63ch;
  margin: 0;
  color: #a5b8d1;
  font-size: 1.05rem;
  line-height: 1.86;
}

.about-hero__chips,
.about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-hero__chips {
  margin-top: 24px;
}

.about-hero__chips span,
.about-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(137, 193, 255, 0.16);
  background: rgba(12, 20, 34, 0.76);
  color: #d9e7f9;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(205, 231, 255, 0.05);
}

.about-hero__visual {
  position: relative;
  min-height: auto;
  padding: 30px 22px 22px;
  display: grid;
  gap: 16px;
  align-content: start;
  border: 1px solid rgba(132, 174, 214, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(12, 20, 35, 0.92), rgba(8, 14, 25, 0.96)),
    linear-gradient(135deg, rgba(77, 143, 255, 0.12), transparent 36%);
  box-shadow:
    0 32px 64px rgba(1, 8, 22, 0.34),
    inset 0 1px 0 rgba(205, 231, 255, 0.08);
}

.about-hero__visual::after {
  content: "";
  position: absolute;
  inset: 10% 16% 44% 12%;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(102, 186, 255, 0.14), transparent 72%);
  filter: blur(24px);
  animation: aboutAmbientDrift 8s ease-in-out infinite;
  pointer-events: none;
}

.about-hero__window,
.about-platform__window,
.about-litio__window {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  border: 1px solid rgba(127, 171, 214, 0.14);
  background: linear-gradient(180deg, rgba(13, 22, 37, 0.96), rgba(9, 15, 27, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(205, 231, 255, 0.06),
    0 16px 40px rgba(1, 8, 22, 0.2);
}

.about-hero__window {
  padding: 18px;
}

.about-hero__window-bar {
  display: flex;
  gap: 8px;
}

.about-hero__window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(140, 180, 218, 0.24);
}

.about-hero__window-head,
.about-platform__header,
.about-litio__window-head {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.about-hero__window-head p,
.about-platform__header span:first-child,
.about-litio__window-head span:first-child {
  margin: 0 0 6px;
  color: #8fdcff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero__window-head h2,
.about-platform__header strong,
.about-litio__window-head strong {
  margin: 0;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: 1.42rem;
  line-height: 1.22;
}

.about-status-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(137, 193, 255, 0.14);
  background: rgba(12, 20, 34, 0.82);
  color: #dcecff;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(205, 231, 255, 0.04);
}

.about-hero__metric-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-metric-card,
.about-story-card,
.about-belief-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(127, 171, 214, 0.12);
  background: rgba(11, 20, 34, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(205, 231, 255, 0.05),
    0 8px 24px rgba(2, 9, 20, 0.12);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.about-metric-card:hover,
.about-story-card:hover,
.about-belief-card:hover,
.about-platform__window:hover,
.about-litio__window:hover,
.about-company-panel:hover,
.about-principle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(137, 193, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(205, 231, 255, 0.06),
    0 18px 36px rgba(2, 9, 20, 0.2);
}

.about-metric-card {
  padding: 16px;
}

.about-metric-card--wide {
  grid-column: 1 / -1;
}

.about-metric-card span,
.about-story-card span {
  display: block;
  color: #8fdcff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-metric-card strong,
.about-story-card strong {
  display: block;
  margin-top: 10px;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  line-height: 1.34;
}

.about-metric-card p,
.about-story-card p,
.about-platform__stats span,
.about-litio__feed span,
.about-company-card address,
.about-company-card p,
.about-section-head__summary,
.about-prose p {
  color: #a5b7d1;
}

.about-metric-card p,
.about-story-card p {
  margin: 10px 0 0;
  line-height: 1.72;
}

.about-mini-list {
  margin: 12px 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 8px;
  color: #a5b7d1;
  line-height: 1.7;
}

.about-floating-card {
  position: relative;
  z-index: 2;
  width: auto;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(132, 174, 214, 0.14);
  background: rgba(10, 18, 31, 0.88);
  box-shadow:
    0 22px 44px rgba(1, 8, 22, 0.28),
    inset 0 1px 0 rgba(205, 231, 255, 0.06);
  backdrop-filter: blur(10px);
}

.about-hero__support-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-floating-card strong {
  display: block;
  margin-top: 10px;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.34;
}

.about-floating-card p {
  margin: 8px 0 0;
  color: #9fb3cf;
  line-height: 1.68;
}

.about-floating-card--signal {
  animation: none;
}

.about-floating-card--proof {
  animation: none;
}

.about-story,
.about-platform,
.about-litio,
.about-future {
  display: grid;
  gap: 24px;
}

.about-story,
.about-platform,
.about-litio {
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  padding: 28px;
}

.about-story__rail,
.about-platform__copy,
.about-litio__copy {
  align-self: center;
}

.about-story__rail {
  display: grid;
  gap: 14px;
}

.about-story-card {
  padding: 18px;
}

.about-story-card--quote {
  background:
    linear-gradient(180deg, rgba(13, 24, 41, 0.86), rgba(8, 15, 27, 0.94)),
    radial-gradient(circle at 84% 20%, rgba(111, 228, 255, 0.08), transparent 28%);
}

.about-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.about-section-head__summary {
  max-width: 50ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.about-page-shell .section-title h2,
.about-cta__copy h2 {
  margin: 10px 0 0;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.75rem, 2.55vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.032em;
}

.about-page-shell .section-title h2 {
  max-width: 18ch;
}

.about-prose {
  max-width: 74ch;
}

.about-prose p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.86;
}

.about-beliefs-block {
  display: grid;
  gap: 22px;
}

.about-beliefs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-belief-card {
  padding: 22px;
  min-height: 178px;
}

.about-belief-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.about-belief-card__icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(36, 65, 101, 0.34), rgba(14, 25, 42, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(205, 231, 255, 0.08),
    0 0 0 1px rgba(132, 174, 214, 0.12);
}

.about-belief-card h3 {
  margin: 0;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  line-height: 1.35;
}

.about-belief-card p {
  margin: 0;
  line-height: 1.74;
}

.about-platform__visual,
.about-litio__visual {
  position: relative;
}

.about-platform__window,
.about-litio__window {
  height: 100%;
  padding: 20px;
}

.about-platform__lanes {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.about-platform__lanes article span {
  display: block;
  margin-bottom: 8px;
  color: #dcecff;
  font-size: 0.94rem;
  font-weight: 600;
}

.about-lane {
  height: 10px;
  border-radius: 999px;
  background: rgba(34, 49, 76, 0.92);
  overflow: hidden;
}

.about-lane span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(111, 228, 255, 0.92), rgba(110, 138, 255, 0.9));
  box-shadow: 0 0 18px rgba(111, 228, 255, 0.24);
}

.about-platform__stats {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.about-platform__stats div,
.about-litio__feed article {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(127, 171, 214, 0.12);
  background: rgba(12, 20, 34, 0.72);
}

.about-platform__stats strong,
.about-litio__feed strong,
.about-company-card p {
  display: block;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.34;
}

.about-platform__stats span,
.about-litio__feed span {
  display: block;
  margin-top: 8px;
  line-height: 1.7;
}

.about-pill-list {
  margin-top: 22px;
}

.about-litio {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(11, 19, 34, 0.92), rgba(7, 13, 24, 0.96)),
    radial-gradient(circle at 82% 22%, rgba(111, 228, 255, 0.1), transparent 26%);
}

.about-pill-list--litio span {
  background: rgba(10, 19, 34, 0.86);
}

.about-litio__feed {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

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

.about-principle-card {
  padding: 28px;
}

.about-principle-card--accent {
  background:
    linear-gradient(180deg, rgba(12, 21, 37, 0.94), rgba(8, 14, 26, 0.98)),
    radial-gradient(circle at 16% 14%, rgba(111, 228, 255, 0.08), transparent 26%);
}

.about-future {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
}

.about-future__story,
.about-company-panel,
.about-cta {
  padding: 28px;
}

.about-company-panel {
  align-self: start;
}

.about-company-card p,
.about-company-card address {
  margin: 0;
  font-size: 1rem;
  line-height: 1.84;
  font-style: normal;
}

.about-company-card p {
  margin-bottom: 12px;
  font-weight: 700;
}

.about-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.about-cta__copy h2 {
  max-width: 19ch;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

@keyframes aboutAmbientDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(8px, -12px, 0) scale(1.04);
  }
}

@media (max-width: 1100px) {
  .about-hero,
  .about-story,
  .about-platform,
  .about-litio,
  .about-principles,
  .about-future,
  .about-beliefs {
    grid-template-columns: 1fr;
  }

  .about-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-hero__copy h1,
  .about-page-shell .section-title h2,
  .about-cta__copy h2 {
    max-width: none;
  }

  .about-hero__visual {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .about-page-shell .legal-main {
    padding-top: 28px;
  }

  .about-main {
    gap: 22px;
  }

  .about-story,
  .about-platform,
  .about-litio,
  .about-principle-card,
  .about-future__story,
  .about-company-panel,
  .about-cta {
    padding: 22px;
  }

  .about-hero {
    gap: 20px;
    padding-top: 6px;
  }

  .about-hero__copy h1 {
    font-size: clamp(2.2rem, 9vw, 3.35rem);
  }

  .about-hero__visual {
    min-height: auto;
    padding: 20px 16px 16px;
  }

  .about-hero__metric-grid {
    grid-template-columns: 1fr;
  }

  .about-hero__support-grid {
    grid-template-columns: 1fr;
  }

  .about-floating-card {
    position: static;
    width: 100%;
    margin-top: 0;
  }

  .about-status-pill {
    min-height: 32px;
    padding: 0 12px;
  }

  .about-hero__window-head,
  .about-platform__header,
  .about-litio__window-head,
  .about-cta {
    flex-direction: column;
  }

  .about-hero__chips,
  .about-pill-list,
  .about-cta__actions {
    width: 100%;
  }

  .about-cta__actions .btn {
    width: 100%;
  }
}

body.contact-page-shell {
  background:
    radial-gradient(circle at 14% 0%, rgba(74, 142, 255, 0.18), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(111, 228, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #07101c 0%, #050b15 48%, #03060d 100%);
}

.contact-page-shell .legal-main {
  padding-top: 44px;
}

.contact-main {
  display: grid;
  gap: 28px;
}

.contact-hero {
  padding-bottom: 8px;
}

.contact-hero__copy {
  position: relative;
  z-index: 2;
}

.contact-hero__copy h1 {
  max-width: 12ch;
}

.contact-hero__lede {
  max-width: 60ch;
  margin: 0;
  color: #a5b8d1;
  font-size: 1.04rem;
  line-height: 1.82;
}

.contact-hero__visual {
  min-height: 360px;
  padding: 24px;
  background:
    radial-gradient(circle at 78% 12%, rgba(72, 198, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(11, 22, 39, 0.92), rgba(7, 13, 24, 0.96));
}

.contact-hero__window {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(127, 171, 214, 0.14);
  background:
    radial-gradient(circle at 82% 10%, rgba(70, 218, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(13, 25, 45, 0.82), rgba(8, 15, 28, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(205, 231, 255, 0.06),
    0 16px 40px rgba(1, 8, 22, 0.2);
}

.contact-hero__window-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.contact-hero__window-head p {
  margin: 0 0 6px;
  color: #8fdcff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-hero__window-head h2 {
  margin: 0;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: 1.38rem;
  line-height: 1.22;
}

.contact-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(137, 193, 255, 0.14);
  background: rgba(12, 20, 34, 0.82);
  color: #dcecff;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-hero__signals {
  display: grid;
  gap: 12px;
}

.contact-signal-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  row-gap: 5px;
  min-height: 96px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(127, 171, 214, 0.12);
  background:
    radial-gradient(circle at 18% 0%, rgba(41, 143, 255, 0.14), transparent 36%),
    rgba(11, 20, 34, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(205, 231, 255, 0.05),
    0 8px 24px rgba(2, 9, 20, 0.12);
}

.contact-signal-card i {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(72, 178, 255, 0.24);
  border-radius: 10px;
  background: rgba(18, 83, 177, 0.26);
  color: #5edcff;
  font-size: 1.22rem;
  box-shadow: 0 0 28px rgba(24, 124, 255, 0.16);
}

.contact-signal-card span,
.contact-company-meta span {
  display: block;
  color: #8fdcff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-signal-card span,
.contact-signal-card strong {
  grid-column: 2;
  margin: 0;
}

.contact-signal-card strong,
.contact-company-card strong {
  display: block;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  line-height: 1.34;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.contact-column {
  display: grid;
  gap: 20px;
}

.contact-copy-card,
.contact-reasons-card,
.contact-company-card,
.contact-form-card {
  padding: 28px;
}

.contact-copy-card .section-title h2,
.contact-form-card .section-title h2 {
  max-width: 18ch;
}

.contact-reason-list {
  margin: 18px 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 12px;
  color: #a5b7d1;
  line-height: 1.75;
}

.contact-company-card address {
  margin: 14px 0 0;
  color: #a5b7d1;
  line-height: 1.82;
  font-style: normal;
}

.contact-company-meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(127, 171, 214, 0.1);
}

.contact-company-meta a {
  display: inline-block;
  margin-top: 8px;
  color: #eef5ff;
  text-decoration: none;
  font-weight: 600;
}

.contact-company-meta a:hover {
  color: #9fe7ff;
}

.contact-form {
  margin-top: 22px;
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

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

.contact-field label {
  color: #dcecff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-input {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(137, 193, 255, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(9, 18, 34, 0.96), rgba(6, 12, 24, 0.96));
  color: #eef5ff;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

select.contact-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  height: 50px;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(220, 236, 255, 0.75) 50%),
    linear-gradient(135deg, rgba(220, 236, 255, 0.75) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

select.contact-input option {
  color: #eef5ff;
  background: #091423;
}

select.contact-input option:disabled {
  color: #6f85a6;
  background: #091423;
}

.contact-input--textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-input:focus {
  outline: none;
  border-color: rgba(111, 228, 255, 0.5);
  background: rgba(8, 18, 34, 0.98);
  box-shadow: 0 0 0 3px rgba(111, 228, 255, 0.12), 0 0 28px rgba(64, 196, 255, 0.08);
}

.contact-input::placeholder {
  color: #6f85a6;
}

.contact-field__error {
  margin: 0;
  color: #ffb8c0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.contact-form__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 18px;
  align-items: center;
}

.contact-form__actions p {
  margin: 0;
  max-width: 38ch;
  color: #93a8c6;
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-submit-btn {
  position: relative;
  min-width: 178px;
  min-height: 48px;
  justify-content: center;
  gap: 10px;
}

.contact-submit-btn.is-submitting,
.contact-submit-btn[disabled] {
  opacity: 0.92;
  cursor: wait;
}

.contact-submit-btn__label {
  display: inline-flex;
  align-items: center;
}

.contact-submit-btn__spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 160ms ease, transform 160ms ease;
}

.contact-submit-btn.is-submitting .contact-submit-btn__spinner {
  opacity: 1;
  transform: scale(1);
  animation: contactButtonSpin 0.85s linear infinite;
}

.contact-success-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.contact-success-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 14, 0.7);
  backdrop-filter: blur(10px);
}

.contact-success-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 16px));
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(132, 174, 214, 0.16);
  background: linear-gradient(180deg, rgba(11, 19, 34, 0.96), rgba(7, 13, 24, 0.98));
  box-shadow:
    0 32px 64px rgba(1, 8, 22, 0.4),
    inset 0 1px 0 rgba(205, 231, 255, 0.08);
  transform: translateY(14px) scale(0.98);
  transition: transform 220ms ease;
}

.contact-success-modal.is-open .contact-success-modal__dialog {
  transform: translateY(0) scale(1);
}

.contact-success-modal__dialog h2 {
  margin: 12px 0 12px;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.contact-success-modal__dialog p:last-of-type {
  margin: 0;
  color: #a5b7d1;
  line-height: 1.8;
}

.contact-success-modal__actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
}

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

@media (max-width: 1040px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero__copy h1,
  .contact-copy-card .section-title h2,
  .contact-form-card .section-title h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .contact-page-shell .legal-main {
    padding-top: 28px;
  }

  .contact-main {
    gap: 22px;
  }

  .contact-copy-card,
  .contact-reasons-card,
  .contact-company-card,
  .contact-form-card {
    padding: 22px;
  }

  .contact-hero__copy h1 {
    font-size: clamp(2.2rem, 9vw, 3.35rem);
  }

  .contact-form__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-status-pill,
  .contact-form__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-success-modal__dialog {
    padding: 22px;
  }
}

/* Shortlistii launch homepage */
body.shortlistii-launch-page {
  --landing-page-gutter: clamp(24px, 3.4vw, 44px);
  --landing-section-inset: clamp(30px, 3.5vw, 56px);
  --landing-section-title-gap: clamp(34px, 4vw, 56px);
  --launch-bg: #020713;
  --launch-panel: rgba(8, 17, 37, 0.74);
  --launch-panel-strong: rgba(12, 23, 49, 0.92);
  --launch-border: rgba(119, 157, 255, 0.22);
  --launch-border-strong: rgba(139, 107, 255, 0.44);
  --launch-text: #f5f8ff;
  --launch-muted: #aab8d3;
  --launch-soft: #7182a8;
  --launch-blue: #58a6ff;
  --launch-cyan: #50e6ff;
  --launch-purple: #9a67ff;
  --launch-pink: #f06bdc;
  --launch-green: #43f0ad;
  background:
    linear-gradient(rgba(4, 9, 22, 0.86), rgba(4, 9, 22, 0.94)),
    #020713;
  color: var(--launch-text);
}

.shortlistii-launch-page #particles {
  opacity: 0.66;
}

.shortlistii-launch-page .vignette {
  background:
    linear-gradient(180deg, rgba(2, 7, 19, 0.08), rgba(2, 7, 19, 0.7)),
    radial-gradient(circle at 50% 45%, transparent 28%, rgba(1, 4, 13, 0.68) 100%);
}

.shortlistii-launch-page .launch-main,
.shortlistii-launch-page .launch-footer {
  position: relative;
  z-index: 6;
}

.shortlistii-launch-page .launch-shell {
  width: min(1240px, calc(100% - var(--landing-page-gutter) - var(--landing-page-gutter)));
  margin: 0 auto;
}

.shortlistii-launch-page .glass-card {
  border: 1px solid var(--launch-border);
  background:
    linear-gradient(180deg, rgba(14, 26, 55, 0.72), rgba(5, 12, 27, 0.86)),
    rgba(7, 15, 32, 0.72);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(18px);
}

.shortlistii-launch-page .btn {
  min-height: 46px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.shortlistii-launch-page .btn i {
  font-size: 1.08em;
}

.shortlistii-launch-page .btn-primary {
  border: 1px solid rgba(179, 210, 255, 0.2);
  background: linear-gradient(135deg, #5e95ff, #8b54ff 58%, #bf5df1);
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(104, 91, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.shortlistii-launch-page .btn-outline,
.shortlistii-launch-page .btn-ghost {
  border: 1px solid rgba(142, 177, 255, 0.24);
  background: rgba(8, 17, 36, 0.54);
  color: #edf4ff;
}

.shortlistii-launch-page .btn:hover {
  transform: translateY(-2px);
  border-color: rgba(116, 226, 255, 0.5);
}

.shortlistii-launch-page .launch-header {
  background: linear-gradient(180deg, rgba(2, 7, 19, 0.92), rgba(2, 7, 19, 0.56));
  border-bottom: 1px solid rgba(129, 167, 255, 0.08);
  backdrop-filter: blur(14px);
}

.shortlistii-launch-page .launch-header__shell {
  max-width: 1320px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.shortlistii-launch-page #mainMenu {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  max-width: 100%;
  padding: 5px;
  border: 1px solid rgba(111, 184, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 14, 31, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.shortlistii-launch-page #mainMenu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #b9c8df;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shortlistii-launch-page #mainMenu a::after {
  display: none;
}

.shortlistii-launch-page #mainMenu a:hover,
.shortlistii-launch-page #mainMenu a:focus-visible {
  border-color: rgba(82, 213, 255, 0.28);
  background: rgba(18, 45, 82, 0.72);
  color: #f4fbff;
  box-shadow: 0 0 22px rgba(64, 196, 255, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  outline: none;
}

.shortlistii-launch-page .header-actions {
  display: flex;
  align-items: center;
  align-self: center;
  justify-self: end;
  gap: 12px;
  height: 44px;
  margin-block: 0;
}

.shortlistii-launch-page .header-actions .btn {
  min-height: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-block: 0;
  padding-block: 0;
  vertical-align: middle;
}

.shortlistii-launch-page .header-actions .btn-primary {
  padding-inline: 18px;
}

.shortlistii-launch-page .launch-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 44px;
  isolation: isolate;
}

.shortlistii-launch-page .launch-hero::before,
.shortlistii-launch-page .launch-hero::after,
.shortlistii-launch-page .launch-feedback::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.shortlistii-launch-page .launch-hero::before {
  inset: 0;
  background:
    linear-gradient(rgba(61, 110, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 110, 255, 0.09) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

.shortlistii-launch-page .launch-hero::after {
  width: 58vw;
  height: 58vw;
  right: -22vw;
  top: -18vw;
  background: radial-gradient(circle, rgba(84, 108, 255, 0.32), rgba(2, 7, 19, 0) 66%);
  filter: blur(10px);
}

.shortlistii-launch-page .launch-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(560px, 1.16fr);
  gap: 48px;
  align-items: center;
}

.shortlistii-launch-page .launch-hero__copy {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.shortlistii-launch-page .launch-program-pill {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(142, 177, 255, 0.22);
  border-radius: 999px;
  background: rgba(6, 13, 29, 0.72);
  color: #b9c8e8;
  text-decoration: none;
  font-size: 0.76rem;
  overflow-wrap: anywhere;
}

.shortlistii-launch-page .launch-program-pill strong {
  color: #ffd975;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.shortlistii-launch-page .launch-program-pill i:first-child {
  color: #ffb84a;
}

.shortlistii-launch-page .launch-hero h1,
.shortlistii-launch-page .launch-section__title h2,
.shortlistii-launch-page .launch-feedback h2,
.shortlistii-launch-page .launch-demo-cta h2 {
  margin: 0;
  color: var(--launch-text);
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.shortlistii-launch-page .launch-hero h1 {
  max-width: 720px;
  font-size: clamp(2.65rem, 5.5vw, 5.9rem);
  line-height: 0.98;
}

.shortlistii-launch-page .launch-hero h1::first-line {
  color: #ffffff;
}

.shortlistii-launch-page .launch-hero h1 {
  background: linear-gradient(105deg, #ffffff 0%, #eef3ff 55%, #9a67ff 78%, #58a6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shortlistii-launch-page .launch-hero__copy > p {
  max-width: 650px;
  margin: 0;
  color: #b9c5dd;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.75;
}

.shortlistii-launch-page .launch-hero__actions,
.shortlistii-launch-page .launch-trust-bullets,
.shortlistii-launch-page .launch-audience-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.shortlistii-launch-page .launch-trust-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #b7c4df;
  font-size: 0.91rem;
}

.shortlistii-launch-page .launch-trust-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shortlistii-launch-page .launch-trust-bullets i {
  color: #9d8cff;
}

.shortlistii-launch-page .launch-hero__visual {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
}

.shortlistii-launch-page .launch-dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 540px;
  border-radius: 18px;
  overflow: hidden;
}

.shortlistii-launch-page .launch-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/static/smartInterview/images/landing/data-wave-bg.33f9024a2a0d.png") bottom right / 70% auto no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.shortlistii-launch-page .launch-dashboard__sidebar {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 14px;
  border-right: 1px solid rgba(134, 178, 255, 0.14);
  background: rgba(3, 10, 24, 0.54);
}

.shortlistii-launch-page .launch-dashboard__brand {
  margin-bottom: 14px;
  transform: scale(0.78);
  transform-origin: left center;
}

.shortlistii-launch-page .launch-dashboard__sidebar span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 9px;
  color: #9fb1d2;
  font-size: 0.77rem;
  font-weight: 700;
}

.shortlistii-launch-page .launch-dashboard__sidebar span.is-active {
  background: rgba(79, 132, 255, 0.17);
  color: #eef5ff;
}

.shortlistii-launch-page .launch-dashboard__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  padding: 28px;
  min-width: 0;
}

.shortlistii-launch-page .launch-dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.shortlistii-launch-page .launch-dashboard__top strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.shortlistii-launch-page .launch-dashboard__top span,
.shortlistii-launch-page .launch-dashboard__stats small {
  color: #79e6b3;
  font-size: 0.75rem;
}

.shortlistii-launch-page .live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 999px;
  background: #4ff0ad;
  box-shadow: 0 0 14px rgba(79, 240, 173, 0.86);
}

.shortlistii-launch-page .launch-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.shortlistii-launch-page .launch-dashboard__stats div,
.shortlistii-launch-page .launch-dashboard__panels section,
.shortlistii-launch-page .launch-feature-card,
.shortlistii-launch-page .launch-metric-card,
.shortlistii-launch-page .launch-feedback__cards article {
  border: 1px solid rgba(130, 170, 255, 0.16);
  background: rgba(5, 13, 31, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.shortlistii-launch-page .launch-dashboard__stats div {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 15px;
  border-radius: 12px;
}

.shortlistii-launch-page .launch-dashboard__stats span,
.shortlistii-launch-page .launch-dashboard__panels h2 {
  color: #9dadcc;
  font-size: 0.76rem;
  margin: 0;
}

.shortlistii-launch-page .launch-dashboard__stats strong {
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1;
}

.shortlistii-launch-page .launch-dashboard__panels {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 14px;
}

.shortlistii-launch-page .launch-dashboard__panels section {
  min-width: 0;
  border-radius: 14px;
  padding: 18px;
}

.shortlistii-launch-page .pipeline-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: #b8c6df;
  font-size: 0.77rem;
}

.shortlistii-launch-page .pipeline-row i {
  height: 5px;
  border-radius: 999px;
  background: rgba(74, 101, 154, 0.6);
  overflow: hidden;
}

.shortlistii-launch-page .pipeline-row i::after {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5ab0ff, #9a67ff);
  box-shadow: 0 0 14px rgba(118, 112, 255, 0.58);
}

.shortlistii-launch-page .pipeline-row b,
.shortlistii-launch-page .insight-row b {
  color: #eaf2ff;
  font-weight: 800;
}

.shortlistii-launch-page .score-orb {
  width: 112px;
  height: 112px;
  margin: 18px auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 8px solid rgba(99, 228, 255, 0.82);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 0 26px rgba(96, 116, 255, 0.34);
}

.shortlistii-launch-page .score-orb span {
  display: block;
  color: #97a7c8;
  font-size: 0.62rem;
}

.shortlistii-launch-page .insight-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: #aab8d4;
  font-size: 0.78rem;
}

.shortlistii-launch-page .launch-hero__robot {
  position: absolute;
  z-index: 2;
  right: -74px;
  bottom: 22px;
  width: min(310px, 38vw);
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 0 30px rgba(84, 115, 255, 0.34));
}

.shortlistii-launch-page .launch-trust-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(128, 159, 223, 0.14);
  border-bottom: 1px solid rgba(128, 159, 223, 0.1);
}

.shortlistii-launch-page .launch-trust-strip p {
  margin: 0;
  color: #dbe6ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.shortlistii-launch-page .launch-audience-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b8c6df;
  font-weight: 800;
}

.shortlistii-launch-page .launch-audience-list i {
  color: #91a8ff;
}

.shortlistii-launch-page .launch-section {
  padding: 28px 0;
}

.shortlistii-launch-page .launch-section__title {
  display: grid;
  gap: 10px;
  text-align: center;
  margin-bottom: 22px;
}

.shortlistii-launch-page .launch-section__title span,
.shortlistii-launch-page .launch-feedback__copy span,
.shortlistii-launch-page .launch-demo-cta__copy span {
  justify-self: center;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(139, 107, 255, 0.28);
  border-radius: 999px;
  background: rgba(116, 91, 255, 0.09);
  color: #b9b4ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shortlistii-launch-page .launch-section__title h2,
.shortlistii-launch-page .launch-feedback h2,
.shortlistii-launch-page .launch-demo-cta h2 {
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  line-height: 1.12;
}

.shortlistii-launch-page .launch-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.shortlistii-launch-page .launch-feature-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 282px;
  padding: 20px;
  border-radius: 12px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shortlistii-launch-page .launch-feature-card:hover,
.shortlistii-launch-page .launch-metric-card:hover,
.shortlistii-launch-page .launch-feedback__cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(97, 225, 255, 0.38);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28), 0 0 28px rgba(100, 103, 255, 0.12);
}

.shortlistii-launch-page .launch-feature-card img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(118, 102, 255, 0.28);
}

.shortlistii-launch-page .launch-feature-card h3,
.shortlistii-launch-page .launch-workflow h3,
.shortlistii-launch-page .launch-feedback__cards p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
}

.shortlistii-launch-page .launch-feature-card p,
.shortlistii-launch-page .launch-workflow p,
.shortlistii-launch-page .launch-feedback__copy p,
.shortlistii-launch-page .launch-demo-cta p,
.shortlistii-launch-page .launch-metric-card p {
  margin: 0;
  color: #9faccc;
  line-height: 1.62;
}

.shortlistii-launch-page .launch-feature-card a {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: #76bbff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.86rem;
}

.shortlistii-launch-page .launch-workflow,
.shortlistii-launch-page .launch-metrics,
.shortlistii-launch-page .launch-feedback__inner,
.shortlistii-launch-page .launch-demo-cta {
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
}

.shortlistii-launch-page .launch-workflow {
  position: relative;
}

.shortlistii-launch-page .launch-workflow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 53%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(87, 201, 255, 0.45), rgba(155, 104, 255, 0.5), transparent);
}

.shortlistii-launch-page .launch-workflow__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.shortlistii-launch-page .launch-workflow__steps article {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  min-width: 0;
}

.shortlistii-launch-page .launch-workflow__steps img {
  width: min(150px, 100%);
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(132, 173, 255, 0.16);
}

.shortlistii-launch-page .launch-workflow__steps span {
  color: #9db0d6;
  font-size: 0.78rem;
  font-weight: 900;
}

.shortlistii-launch-page .launch-workflow__steps p {
  font-size: 0.85rem;
}

.shortlistii-launch-page .launch-metrics {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.shortlistii-launch-page .launch-metrics__art {
  width: 100%;
  min-height: 170px;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(133, 176, 255, 0.14);
}

.shortlistii-launch-page .launch-metric-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 12px;
}

.shortlistii-launch-page .launch-metric-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(125, 92, 255, 0.15);
  color: #a782ff;
  font-size: 1.35rem;
}

.shortlistii-launch-page .launch-metric-card strong {
  color: #8b6dff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.shortlistii-launch-page .launch-metric-card span {
  color: #ffffff;
  font-weight: 900;
  text-transform: capitalize;
}

.shortlistii-launch-page .launch-metrics__note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: #8292b5;
  font-size: 0.84rem;
  line-height: 1.6;
}

.shortlistii-launch-page .launch-feedback {
  position: relative;
}

.shortlistii-launch-page .launch-feedback::before {
  inset: 0;
  background: url("/static/smartInterview/images/landing/ai-brain-network.da7a3db53700.png") center / cover no-repeat;
  opacity: 0.14;
}

.shortlistii-launch-page .launch-feedback__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.15fr) minmax(240px, 0.72fr);
  gap: 24px;
  align-items: center;
}

.shortlistii-launch-page .launch-feedback__copy {
  display: grid;
  gap: 12px;
}

.shortlistii-launch-page .launch-feedback__copy span,
.shortlistii-launch-page .launch-demo-cta__copy span {
  justify-self: start;
}

.shortlistii-launch-page .launch-feedback__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shortlistii-launch-page .launch-feedback__cards article {
  display: grid;
  gap: 12px;
  min-height: 170px;
  padding: 18px;
  border-radius: 12px;
}

.shortlistii-launch-page .launch-feedback__cards span {
  color: #7fb9ff;
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shortlistii-launch-page .launch-feedback__inner > img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  filter: drop-shadow(0 0 28px rgba(123, 100, 255, 0.26));
}

.shortlistii-launch-page .launch-demo-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(rgba(9, 17, 38, 0.82), rgba(5, 10, 24, 0.92)),
    url("/static/smartInterview/images/landing/data-wave-bg.33f9024a2a0d.png") center / cover no-repeat;
}

.shortlistii-launch-page .launch-demo-cta__copy {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.shortlistii-launch-page .launch-demo-cta__copy img {
  width: 150px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 28px rgba(126, 105, 255, 0.32));
}

.shortlistii-launch-page .launch-demo-cta__copy div {
  display: grid;
  gap: 12px;
}

.shortlistii-launch-page .launch-demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(130, 170, 255, 0.16);
  border-radius: 14px;
  background: rgba(6, 14, 32, 0.64);
}

.shortlistii-launch-page .launch-demo-form label {
  display: grid;
  gap: 7px;
}

.shortlistii-launch-page .launch-demo-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.shortlistii-launch-page .launch-demo-form input,
.shortlistii-launch-page .launch-demo-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(130, 170, 255, 0.18);
  border-radius: 8px;
  background: rgba(12, 23, 48, 0.78);
  color: #f5f8ff;
  padding: 0 14px;
  font: inherit;
}

.shortlistii-launch-page .launch-demo-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(235, 242, 255, 0.76) 50%),
    linear-gradient(135deg, rgba(235, 242, 255, 0.76) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.shortlistii-launch-page .launch-demo-form input::placeholder,
.shortlistii-launch-page .launch-demo-form select:invalid {
  color: #8b9abd;
}

.shortlistii-launch-page .launch-demo-form input:focus,
.shortlistii-launch-page .launch-demo-form select:focus {
  outline: none;
  border-color: rgba(91, 220, 255, 0.54);
  box-shadow: 0 0 0 3px rgba(91, 220, 255, 0.12);
}

.shortlistii-launch-page .launch-demo-form .full {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: center;
}

.shortlistii-launch-page .launch-footer {
  background: rgba(2, 7, 19, 0.84);
  border-top: 1px solid rgba(130, 170, 255, 0.14);
}

@media (max-width: 1180px) {
  .shortlistii-launch-page .launch-hero__layout,
  .shortlistii-launch-page .launch-demo-cta {
    grid-template-columns: 1fr;
  }

  .shortlistii-launch-page .launch-hero__visual {
    min-height: auto;
  }

  .shortlistii-launch-page .launch-dashboard {
    min-height: 500px;
  }

  .shortlistii-launch-page .launch-hero__robot {
    right: 12px;
    bottom: 10px;
    width: min(250px, 36vw);
  }

  .shortlistii-launch-page .launch-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shortlistii-launch-page .launch-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .shortlistii-launch-page .launch-metrics__art {
    grid-column: 1 / -1;
    height: 260px;
  }

  .shortlistii-launch-page .launch-feedback__inner {
    grid-template-columns: 1fr;
  }

  .shortlistii-launch-page .launch-feedback__inner > img {
    max-width: 460px;
    justify-self: center;
  }
}

@media (max-width: 1080px) {
  .shortlistii-launch-page .launch-header__shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .shortlistii-launch-page .header-actions .btn-ghost,
  .shortlistii-launch-page .header-actions .btn-primary,
  .shortlistii-launch-page #mainMenu {
    display: none;
  }

  .shortlistii-launch-page .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 920px) {
  .shortlistii-launch-page .launch-header__shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .shortlistii-launch-page .header-actions .btn-ghost,
  .shortlistii-launch-page .header-actions .btn-primary,
  .shortlistii-launch-page #mainMenu {
    display: none;
  }

  .shortlistii-launch-page .menu-toggle {
    display: inline-flex;
  }

  .shortlistii-launch-page .launch-trust-strip,
  .shortlistii-launch-page .launch-demo-cta__copy {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .shortlistii-launch-page .launch-feature-grid,
  .shortlistii-launch-page .launch-feedback__cards {
    grid-template-columns: 1fr 1fr;
  }

  .shortlistii-launch-page .launch-workflow::before {
    display: none;
  }

  .shortlistii-launch-page .launch-workflow__steps,
  .shortlistii-launch-page .launch-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  body.shortlistii-launch-page {
    --landing-page-gutter: clamp(20px, 6vw, 26px);
  }

  .shortlistii-launch-page .launch-shell {
    width: min(100% - var(--landing-page-gutter) - var(--landing-page-gutter), 1240px);
  }

  .shortlistii-launch-page .launch-hero {
    padding-top: 104px;
  }

  .shortlistii-launch-page .launch-hero__copy {
    gap: 18px;
  }

  .shortlistii-launch-page .launch-program-pill {
    width: 100%;
    border-radius: 14px;
  }

  .shortlistii-launch-page .launch-program-pill span {
    display: none;
  }

  .shortlistii-launch-page .launch-hero__actions,
  .shortlistii-launch-page .launch-hero__actions .btn,
  .shortlistii-launch-page .launch-trust-bullets,
  .shortlistii-launch-page .launch-trust-bullets li,
  .shortlistii-launch-page .launch-demo-form .btn {
    width: 100%;
    justify-content: center;
  }

  .shortlistii-launch-page .launch-dashboard {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .shortlistii-launch-page .launch-dashboard__sidebar {
    display: none;
  }

  .shortlistii-launch-page .launch-dashboard__content {
    padding: 18px;
  }

  .shortlistii-launch-page .launch-dashboard__stats,
  .shortlistii-launch-page .launch-dashboard__panels,
  .shortlistii-launch-page .launch-feature-grid,
  .shortlistii-launch-page .launch-workflow__steps,
  .shortlistii-launch-page .launch-metrics,
  .shortlistii-launch-page .launch-feedback__cards,
  .shortlistii-launch-page .launch-demo-form {
    grid-template-columns: 1fr;
  }

  .shortlistii-launch-page .launch-hero__robot {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    width: min(260px, 82vw);
    margin-top: -90px;
  }

  .shortlistii-launch-page .launch-trust-strip {
    display: grid;
  }

  .shortlistii-launch-page .launch-audience-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .shortlistii-launch-page .launch-feature-card {
    min-height: 0;
  }

  .shortlistii-launch-page .launch-metrics__art {
    height: 210px;
  }

  .shortlistii-launch-page .launch-demo-cta__copy img {
    width: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shortlistii-launch-page .btn,
  .shortlistii-launch-page .launch-feature-card,
  .shortlistii-launch-page .launch-metric-card,
  .shortlistii-launch-page .launch-feedback__cards article {
    transition: none;
  }
}

/* Shortlistii homepage V2 */
.shortlistii-launch-page {
  background:
    linear-gradient(180deg, rgba(2, 7, 19, 0.96), rgba(3, 8, 21, 0.92) 38%, #030711 100%),
    #030711;
}

.shortlistii-launch-page .vignette {
  opacity: 0.58;
}

.shortlistii-launch-page .launch-hero::before,
.shortlistii-launch-page .launch-hero::after,
.shortlistii-launch-page .launch-feedback::before {
  display: none;
}

.shortlistii-launch-page .launch-section {
  padding-block: clamp(70px, 9vw, 128px);
}

.shortlistii-launch-page .launch-section__title {
  max-width: 780px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.shortlistii-launch-page .launch-section__title h2 {
  max-width: 780px;
  font-size: clamp(2rem, 5vw, 4.75rem);
  line-height: 0.98;
}

.shortlistii-launch-page .product-badge,
.shortlistii-launch-page .launch-section__title span,
.shortlistii-launch-page .launch-demo-cta__copy span {
  color: #7fe6ff;
}

.launch-hero-v2 {
  min-height: 92vh;
  padding: 118px 0 clamp(46px, 7vw, 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.launch-hero-v2__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.launch-hero-v2__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
}

.product-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(112, 210, 255, 0.28);
  border-radius: 999px;
  background: rgba(8, 18, 38, 0.72);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.launch-hero-v2 h1 {
  margin: 0;
  color: #f6f9ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 7.2vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.launch-hero-v2__copy p {
  max-width: 670px;
  margin: 0;
  color: #b8c8e8;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.72;
}

.product-shot,
.product-stage__image {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.hero-product-shot {
  position: relative;
  border-radius: 8px;
  background: #071126;
  box-shadow:
    0 44px 95px rgba(0, 0, 0, 0.52),
    0 0 86px rgba(73, 166, 255, 0.22);
  transform: perspective(1400px) rotateX(2deg) rotateY(-4deg);
  animation: productFloat 7s ease-in-out infinite;
}

.hero-product-shot::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(135, 207, 255, 0.38);
  pointer-events: none;
}

.hero-product-shot img,
.product-stage__image img,
.audience-panel img,
.launch-demo-cta__copy img,
.product-modal img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-product-shot img {
  max-height: min(69vh, 730px);
  object-fit: contain;
  border-radius: 8px;
}

@keyframes productFloat {
  0%, 100% { transform: perspective(1400px) rotateX(2deg) rotateY(-4deg) translateY(0); }
  50% { transform: perspective(1400px) rotateX(2deg) rotateY(-4deg) translateY(-12px); }
}

.switch-grid,
.outcome-grid,
.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.switch-card,
.outcome-card,
.enterprise-card {
  min-height: 182px;
  border: 1px solid rgba(126, 185, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(10, 20, 42, 0.82), rgba(6, 12, 27, 0.86));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.switch-card:hover,
.outcome-card:hover,
.enterprise-card:hover,
.flow-rail button:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 215, 255, 0.54);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34), 0 0 34px rgba(65, 160, 255, 0.14);
}

.switch-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.switch-card span {
  color: #8f9fbd;
  font-weight: 800;
}

.switch-card i {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(76, 211, 255, 0.12);
  color: #62e0ff;
}

.switch-card strong {
  color: #f6f9ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.product-explorer {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  border-radius: 8px;
  padding: 14px;
}

.product-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
}

.product-tabs button {
  width: 100%;
  border: 1px solid rgba(128, 185, 255, 0.16);
  border-radius: 8px;
  background: rgba(6, 14, 31, 0.62);
  color: #b8c8e8;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.product-tabs button:hover,
.product-tabs button.is-active {
  border-color: rgba(98, 223, 255, 0.5);
  background: rgba(18, 40, 76, 0.76);
  color: #f4f9ff;
}

.product-stage {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
  gap: 18px;
  align-items: stretch;
}

.product-stage__image {
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(128, 185, 255, 0.2);
  border-radius: 8px;
  background: #061025;
  overflow: hidden;
}

.product-stage__image img {
  max-height: 690px;
  object-fit: contain;
  transition: opacity 180ms ease, transform 220ms ease;
}

.product-explorer.is-swapping .product-stage__image img {
  opacity: 0;
  transform: translateY(10px) scale(0.992);
}

.product-stage__meta {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(128, 185, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 12, 26, 0.68);
  padding: 22px;
}

.product-stage__meta span {
  color: #7ee8ff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-stage__meta h3 {
  margin: 0;
  color: #f6f9ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.05;
}

.product-stage__meta p {
  margin: 0;
  color: #aebedd;
  line-height: 1.65;
}

.flow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(9, minmax(120px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding: 30px 4px 112px;
  scrollbar-color: rgba(96, 210, 255, 0.45) rgba(8, 16, 34, 0.8);
}

.flow-line {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 58px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #58d8ff, #657cff, #43f0ad, transparent);
  background-size: 220% 100%;
  animation: flowLine 5.5s linear infinite;
}

.flow-rail button {
  position: relative;
  z-index: 1;
  min-height: 86px;
  border: 1px solid rgba(126, 185, 255, 0.24);
  border-radius: 8px;
  background: rgba(8, 18, 38, 0.92);
  color: #eef6ff;
  padding: 13px;
  font: inherit;
  font-weight: 900;
  cursor: default;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.flow-rail button::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #70e6ff;
  box-shadow: 0 0 18px rgba(112, 230, 255, 0.66);
  transform: translateX(-50%);
}

.flow-rail img {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  width: 210px;
  max-width: 62vw;
  max-height: 128px;
  object-fit: contain;
  border: 1px solid rgba(137, 201, 255, 0.28);
  border-radius: 8px;
  background: #071126;
  padding: 5px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.flow-rail button:hover img,
.flow-rail button:focus-visible img {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes flowLine {
  to { background-position: -220% 0; }
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.audience-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  border: 1px solid rgba(126, 185, 255, 0.24);
  border-radius: 8px;
  background: rgba(8, 17, 37, 0.76);
  padding: clamp(18px, 2.6vw, 30px);
  overflow: hidden;
}

.audience-panel span {
  color: #7ee8ff;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.audience-panel h2 {
  max-width: 720px;
  margin: 8px 0 0;
  color: #f6f9ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 3.4vw, 3.5rem);
  line-height: 1.04;
}

.audience-panel img {
  align-self: end;
  max-height: 650px;
  object-fit: contain;
  object-position: center bottom;
}

.outcome-grid,
.enterprise-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.outcome-card,
.enterprise-card {
  display: grid;
  align-content: end;
  gap: 18px;
}

.outcome-card i,
.enterprise-card i {
  color: #73e2ff;
  font-size: 1.65rem;
}

.outcome-card h3,
.enterprise-card h3 {
  margin: 0;
  color: #f6f9ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.2;
}

.shortlistii-launch-page .launch-demo-cta {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(9, 19, 42, 0.94), rgba(5, 11, 25, 0.94));
}

.shortlistii-launch-page .launch-demo-cta__copy {
  align-items: start;
}

.shortlistii-launch-page .launch-demo-cta__copy img {
  width: 100%;
  max-width: 560px;
  max-height: 360px;
  object-fit: contain;
  border: 1px solid rgba(126, 185, 255, 0.22);
  border-radius: 8px;
  background: #061025;
  padding: 5px;
}

.shortlistii-launch-page .launch-demo-cta__copy div {
  max-width: 690px;
}

.shortlistii-launch-page .launch-demo-form input,
.shortlistii-launch-page .launch-demo-form select {
  border-radius: 8px;
}

.final-product-cta {
  padding-top: 0;
}

.final-product-cta__inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  border: 1px solid rgba(126, 185, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 29, 59, 0.9), rgba(5, 12, 26, 0.94));
  padding: clamp(34px, 6vw, 74px);
  text-align: center;
}

.final-product-cta h2 {
  margin: 0;
  color: #f6f9ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: 0.98;
}

.final-product-cta p {
  margin: 0;
  color: #b8c8e8;
  font-size: 1.08rem;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  background: rgba(1, 5, 13, 0.82);
  backdrop-filter: blur(14px);
  padding: clamp(12px, 3vw, 34px);
}

.product-modal.is-open {
  display: grid;
}

.product-modal__dialog {
  position: relative;
  width: min(1480px, 100%);
  max-height: 92vh;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(126, 185, 255, 0.3);
  border-radius: 8px;
  background: #050c1b;
  padding: 12px;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.58);
  overflow: auto;
}

.product-modal__dialog h2 {
  margin: 0;
  padding: 6px 54px 0 4px;
  color: #e9f5ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.product-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(126, 185, 255, 0.3);
  border-radius: 999px;
  background: rgba(7, 16, 34, 0.95);
  color: #f6f9ff;
  cursor: pointer;
}

.product-modal img {
  max-height: calc(92vh - 86px);
  object-fit: contain;
  border-radius: 8px;
  background: #071126;
}

@media (max-width: 1180px) {
  .launch-hero-v2__inner,
  .product-stage,
  .audience-grid,
  .shortlistii-launch-page .launch-demo-cta {
    grid-template-columns: 1fr;
  }

  .hero-product-shot {
    transform: none;
  }

  .hero-product-shot img {
    max-height: none;
  }

  .switch-grid,
  .outcome-grid,
  .enterprise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-stage__image {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .launch-hero-v2 {
    min-height: 0;
    padding-top: 104px;
  }

  .launch-hero-v2__inner {
    gap: 28px;
  }

  .product-explorer {
    grid-template-columns: 1fr;
  }

  .product-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .product-tabs button {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
  }

  .flow-rail {
    padding-bottom: 134px;
  }

  .shortlistii-launch-page .launch-demo-cta__copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .shortlistii-launch-page .launch-section {
    padding-block: 62px;
  }

  .launch-hero-v2 h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .switch-grid,
  .outcome-grid,
  .enterprise-grid {
    grid-template-columns: 1fr;
  }

  .switch-card,
  .outcome-card,
  .enterprise-card {
    min-height: 136px;
  }

  .product-stage__meta {
    padding: 18px;
  }

  .audience-panel h2 {
    font-size: clamp(1.55rem, 9vw, 2.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product-shot,
  .flow-line {
    animation: none;
  }
}

/* Shortlistii reference homepage rebuild */
body.shortlistii-launch-page {
  --home-panel: rgba(6, 15, 32, 0.82);
  --home-panel-2: rgba(9, 21, 45, 0.72);
  --home-line: rgba(111, 190, 255, 0.2);
  --home-line-strong: rgba(112, 219, 255, 0.48);
  --home-blue: #2f8cff;
  --home-cyan: #58e5ff;
  --home-green: #28e29c;
  background:
    radial-gradient(circle at 58% 8%, rgba(24, 113, 255, 0.24), transparent 30%),
    radial-gradient(circle at 12% 20%, rgba(61, 206, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #020711 0%, #040a16 48%, #020610 100%);
}

.shortlistii-launch-page .btn-primary {
  background: linear-gradient(135deg, #168dff 0%, #1d6dff 62%, #22c9ff 100%);
  box-shadow: 0 14px 34px rgba(24, 124, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.shortlistii-launch-page #mainMenu a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.84rem;
}

.shortlistii-launch-page #mainMenu i {
  color: #9ecbff;
  font-size: 0.76rem;
}

.reference-home {
  position: relative;
  z-index: 6;
}

.reference-home .launch-section {
  padding-block: 18px;
}

.reference-home .launch-section__title {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 24px;
  text-align: center;
}

.reference-home .launch-section__title h2 {
  margin-top: 6px;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.14;
}

.reference-home .launch-section__title p {
  margin: 8px 0 0;
  color: #9fb0cf;
  font-size: 0.98rem;
}

.reference-hero {
  min-height: 650px;
  padding: 132px 0 44px;
}

.reference-hero .launch-hero-v2__inner {
  max-width: 1480px;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.22fr);
  gap: clamp(32px, 4.8vw, 78px);
}

.reference-hero .launch-hero-v2__copy {
  gap: 20px;
}

.reference-hero .product-badge {
  border-color: rgba(85, 226, 255, 0.28);
  background: rgba(5, 18, 34, 0.62);
  color: #5be9ff;
  box-shadow: inset 0 0 22px rgba(44, 171, 255, 0.08);
}

.shortlistii-launch-page .reference-hero h1 {
  max-width: 570px;
  font-size: clamp(3.4rem, 6.3vw, 6.35rem);
  line-height: 0.98;
  background: none;
  background-image: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  color: #f8fbff;
  -webkit-text-fill-color: currentColor;
}

.shortlistii-launch-page .reference-hero h1 span {
  color: var(--home-blue);
  -webkit-text-fill-color: var(--home-blue);
}

.reference-hero .launch-hero-v2__copy p {
  max-width: 520px;
  color: #c4d1e8;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.reference-hero .btn {
  min-height: 54px;
  border-radius: 8px;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: #cad8ef;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof-list i {
  color: var(--home-green);
}

.hero-visual-wrap {
  position: relative;
  min-width: 0;
}

.reference-hero .hero-product-shot {
  width: 100%;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(7, 20, 43, 0.96), rgba(3, 10, 23, 0.98));
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(91, 196, 255, 0.18),
    0 0 90px rgba(25, 129, 255, 0.28);
}

.reference-hero .hero-product-shot img {
  max-height: 575px;
  border-radius: 14px;
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(112, 219, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 13, 28, 0.88);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 28px rgba(42, 142, 255, 0.18);
  color: #eaf6ff;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.hero-float-card i {
  color: var(--home-cyan);
  font-size: 1rem;
}

.hero-float-card--one {
  left: -24px;
  top: 18%;
}

.hero-float-card--two {
  right: 5%;
  top: -18px;
}

.hero-float-card--three {
  right: -18px;
  bottom: 18%;
}

.built-for-strip {
  position: relative;
  z-index: 7;
  margin-top: 6px;
  padding: 18px 24px 24px;
  border-top: 1px solid rgba(99, 165, 255, 0.12);
  text-align: center;
}

.built-for-strip p {
  margin: 0 0 13px;
  color: #8192b3;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.built-for-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 58px);
}

.built-for-strip span {
  color: #d4ddef;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.38rem);
  font-weight: 700;
  opacity: 0.76;
}

.product-gallery-section,
.compact-workflow,
.outcomes-showcase,
.security-band,
#founding-recruiter-program {
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 16%, rgba(36, 136, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(8, 18, 39, 0.72), rgba(3, 9, 21, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 28px 70px rgba(0, 0, 0, 0.2);
  margin-block: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.product-gallery-shell {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 10px;
  border: 1px solid rgba(129, 191, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(54, 151, 255, 0.14), transparent 30%),
    rgba(5, 14, 31, 0.76);
  color: inherit;
  padding: 16px;
  text-align: left;
  cursor: zoom-in;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: var(--home-line-strong);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34), 0 0 34px rgba(44, 144, 255, 0.18);
  outline: none;
  transform: translateY(-5px);
}

.product-card__icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(82, 202, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(24, 117, 255, 0.32), rgba(23, 218, 255, 0.13));
  color: var(--home-cyan);
}

.product-card strong {
  color: #f2f7ff;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  line-height: 1.2;
}

.product-card em {
  min-height: 42px;
  color: #aebdd8;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-card img {
  width: 100%;
  height: 170px;
  margin-top: 8px;
  border: 1px solid rgba(98, 159, 225, 0.18);
  border-radius: 8px;
  background: #061124;
  object-fit: cover;
  object-position: top center;
  transition: transform 220ms ease;
}

.product-card:hover img,
.product-card:focus-visible img {
  transform: scale(1.025);
}

.product-card > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #39cfff;
  font-size: 0.82rem;
  font-weight: 800;
}

.compact-workflow .launch-section__title {
  margin-inline: auto;
  text-align: center;
}

.compact-workflow .launch-section__title h2 {
  max-width: 620px;
  margin-inline: auto;
}

.compact-workflow .flow-rail {
  grid-template-columns: repeat(9, minmax(92px, 1fr));
  gap: 20px;
  padding: 30px 0 4px;
  overflow: visible;
}

.compact-workflow .flow-line {
  top: 74px;
  left: 52px;
  right: 52px;
  height: 2px;
}

.compact-workflow .flow-rail button {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 0;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: default;
  box-shadow: none;
}

.compact-workflow .flow-rail button::before {
  display: none;
}

.compact-workflow .flow-rail button:hover {
  box-shadow: none;
}

.compact-workflow .flow-rail i {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(75, 174, 255, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(67, 218, 255, 0.18), transparent 58%),
    rgba(6, 18, 39, 0.96);
  color: #63dcff;
  font-size: 2rem;
  box-shadow: 0 0 0 8px rgba(34, 103, 255, 0.06), 0 0 34px rgba(39, 134, 255, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.compact-workflow .flow-rail button:last-child i {
  border-color: rgba(40, 226, 156, 0.4);
  color: var(--home-green);
  box-shadow: 0 0 0 8px rgba(40, 226, 156, 0.06), 0 0 34px rgba(40, 226, 156, 0.22);
}

.compact-workflow .flow-rail button:hover i,
.compact-workflow .flow-rail button:focus-visible i {
  border-color: var(--home-line-strong);
  transform: translateY(-5px);
}

.compact-workflow .flow-rail span {
  color: #eff6ff;
  font-weight: 900;
  text-align: center;
}

.audience-section {
  position: relative;
}

.audience-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 47%;
  width: min(240px, 30vw);
  height: 2px;
  background: linear-gradient(90deg, var(--home-blue), var(--home-cyan));
  opacity: 0.35;
  transform: translateX(-50%);
}

.audience-section .launch-section__title {
  margin-inline: auto;
  text-align: center;
}

.audience-section .launch-section__title h2 {
  margin-inline: auto;
}

.audience-grid {
  position: relative;
  z-index: 1;
}

.audience-panel {
  min-height: 560px;
  background:
    radial-gradient(circle at 80% 26%, rgba(33, 133, 255, 0.18), transparent 32%),
    rgba(5, 14, 31, 0.78);
}

.audience-panel h2 {
  font-size: clamp(1.55rem, 2.55vw, 2.65rem);
  line-height: 1.14;
}

.audience-panel img {
  width: 100%;
  border: 1px solid rgba(113, 183, 255, 0.18);
  border-radius: 10px;
  background: #061124;
  padding: 5px;
}

.outcome-card,
.enterprise-card {
  min-height: 160px;
}

.outcome-card p {
  margin: 0;
  color: #9eafcc;
  font-size: 0.84rem;
  line-height: 1.45;
}

.security-band {
  padding-block: 28px;
}

.security-band .launch-section__title h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.security-band .enterprise-grid {
  gap: 12px;
}

.security-band .enterprise-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  align-content: center;
  gap: 12px;
  padding: 18px;
}

.security-band .enterprise-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(81, 191, 255, 0.24);
  border-radius: 50%;
  background: rgba(18, 74, 145, 0.18);
  font-size: 1.25rem;
}

.security-band .enterprise-card h3 {
  font-size: 0.98rem;
}

#founding-recruiter-program {
  padding: clamp(26px, 4vw, 42px);
}

.shortlistii-launch-page .launch-demo-cta {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.shortlistii-launch-page .launch-demo-cta__copy {
  grid-template-columns: 96px 1fr;
  gap: 28px;
}

.founder-shield {
  width: 86px;
  height: 104px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 92% 15%, 86% 74%, 50% 100%, 14% 74%, 8% 15%);
  background:
    radial-gradient(circle at 50% 38%, rgba(85, 226, 255, 0.24), transparent 42%),
    linear-gradient(160deg, rgba(27, 112, 255, 0.32), rgba(6, 20, 50, 0.98));
  color: #6ee8ff;
  font-size: 2.25rem;
  box-shadow: 0 0 38px rgba(31, 124, 255, 0.28);
}

.founder-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.founder-benefits li {
  border: 1px solid rgba(112, 219, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 18, 39, 0.74);
  color: #cfe4ff;
  padding: 7px 10px;
  font-size: 0.8rem;
  font-weight: 800;
}

.shortlistii-launch-page .launch-demo-form {
  align-self: center;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #8293b0;
  font-size: 0.78rem;
  text-align: center;
}

.final-product-cta__inner {
  border-radius: 14px;
}

@media (max-width: 1280px) {
  .product-gallery-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compact-workflow .flow-rail {
    grid-template-columns: repeat(5, minmax(112px, 1fr));
    row-gap: 30px;
    overflow: visible;
  }

  .compact-workflow .flow-line {
    display: none;
  }
}

@media (max-width: 980px) {
  .reference-hero .launch-hero-v2__inner {
    grid-template-columns: 1fr;
  }

  .reference-hero {
    padding-top: 112px;
  }

  .hero-float-card {
    display: none;
  }

  .product-gallery-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .security-band .enterprise-grid,
  .outcome-grid,
  .enterprise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-section::after {
    display: none;
  }

  .audience-panel {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .reference-home .launch-section,
  .product-gallery-section,
  .compact-workflow,
  .outcomes-showcase,
  .security-band,
  #founding-recruiter-program {
    margin-block: 16px;
    padding: 20px;
  }

  .reference-hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.1rem);
  }

  .hero-proof-list,
  .built-for-strip div {
    justify-content: flex-start;
  }

  .built-for-strip {
    text-align: left;
  }

  .product-gallery-shell {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .product-card {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }

  .compact-workflow .flow-rail,
  .security-band .enterprise-grid,
  .outcome-grid,
  .enterprise-grid {
    grid-template-columns: 1fr;
  }

  .compact-workflow .flow-rail button {
    grid-template-columns: 58px 1fr;
    justify-items: start;
    text-align: left;
  }

  .compact-workflow .flow-rail i {
    width: 58px;
    height: 58px;
    font-size: 1.55rem;
  }

  .shortlistii-launch-page .launch-demo-cta__copy {
    grid-template-columns: 1fr;
  }
}

/* Shortlistii homepage V3 premium polish */
body.shortlistii-launch-page {
  --home-line: rgba(111, 190, 255, 0.12);
  --home-line-strong: rgba(112, 219, 255, 0.34);
  --premium-shadow: 0 18px 50px rgba(0, 0, 0, 0.26), 0 1px 0 rgba(255, 255, 255, 0.03) inset;
  --premium-shadow-lift: 0 28px 72px rgba(0, 0, 0, 0.34), 0 0 42px rgba(24, 141, 255, 0.14);
  background:
    radial-gradient(circle at 76% 8%, rgba(30, 142, 255, 0.17), transparent 34%),
    radial-gradient(circle at 16% 22%, rgba(83, 228, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #020711 0%, #040a16 48%, #020610 100%);
}

.reference-hero {
  min-height: 760px;
  padding: 148px 0 78px;
}

.reference-hero::before {
  content: "";
  position: absolute;
  inset: 78px 0 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(88, 229, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 229, 255, 0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 68% 18%, rgba(0, 0, 0, 0.72), transparent 62%);
}

.reference-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 30%, rgba(28, 130, 255, 0.16), transparent 30%),
    radial-gradient(circle at 36% 42%, rgba(68, 224, 255, 0.045), transparent 28%);
  opacity: 0.8;
}

.reference-hero .launch-hero-v2__inner {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - var(--landing-page-gutter) - var(--landing-page-gutter)));
  grid-template-columns: minmax(520px, 0.78fr) minmax(0, 1.12fr);
  gap: clamp(38px, 4.2vw, 72px);
}

.reference-hero .launch-hero-v2__copy {
  gap: 26px;
}

.shortlistii-launch-page .reference-hero h1 {
  max-width: 620px;
  font-size: clamp(3.75rem, 6.1vw, 6.6rem);
  letter-spacing: -0.035em;
}

.reference-hero .launch-hero-v2__copy p {
  margin-top: 4px;
  max-width: 610px;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
}

.reference-hero .launch-hero__actions {
  margin-top: 8px;
}

.hero-visual-wrap {
  transform-style: preserve-3d;
  width: min(100%, 760px);
  justify-self: end;
  margin-left: 0;
  translate: 42px 0;
  z-index: 0;
}

.reference-hero .launch-hero-v2__copy {
  z-index: 2;
}

.reference-hero .hero-product-shot {
  transform: translate3d(var(--hero-parallax-x, 0), var(--hero-parallax-y, 0), 0);
  animation: premiumDashboardFloat 9s ease-in-out infinite;
  will-change: transform;
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(90, 196, 255, 0.2),
    0 0 74px rgba(24, 141, 255, 0.22);
}

.reference-hero .hero-product-shot img {
  max-height: min(74vh, 760px);
}

.hero-float-card {
  min-width: 172px;
  border-color: rgba(112, 219, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(10, 27, 55, 0.84), rgba(4, 12, 26, 0.9));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26), 0 0 26px rgba(34, 156, 255, 0.1);
  transform: translate3d(var(--float-parallax-x, 0), var(--float-parallax-y, 0), 0);
  animation: premiumCardFloat 8s ease-in-out infinite;
  will-change: transform;
}

.hero-float-card--two {
  animation-delay: -2.4s;
}

.hero-float-card--three {
  animation-delay: -4.6s;
}

.hero-float-card--one {
  left: 34px;
  top: 24%;
}

.hero-float-card--two {
  right: 36px;
  top: 22px;
}

.hero-float-card--three {
  right: 28px;
  bottom: 18%;
}

@keyframes premiumDashboardFloat {
  0%, 100% { transform: translate3d(var(--hero-parallax-x, 0), var(--hero-parallax-y, 0), 0); }
  50% { transform: translate3d(var(--hero-parallax-x, 0), calc(var(--hero-parallax-y, 0) - 4px), 0); }
}

@keyframes premiumCardFloat {
  0%, 100% { transform: translate3d(var(--float-parallax-x, 0), var(--float-parallax-y, 0), 0); }
  50% { transform: translate3d(var(--float-parallax-x, 0), calc(var(--float-parallax-y, 0) - 5px), 0); }
}

.product-gallery-section,
.compact-workflow,
.outcomes-showcase,
.security-band,
#founding-recruiter-program {
  margin-block: 44px;
  border-color: var(--home-line);
  box-shadow: var(--premium-shadow);
}

.product-gallery-section {
  padding-block: clamp(36px, 5vw, 58px);
}

.product-gallery-shell {
  align-items: stretch;
}

.product-card {
  min-height: 350px;
  border-color: rgba(129, 191, 255, 0.14);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.product-card--primary {
  min-height: 384px;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(54, 151, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(9, 21, 45, 0.86), rgba(5, 14, 31, 0.8));
}

.product-card:hover,
.product-card:focus-visible {
  border-color: var(--home-line-strong);
  box-shadow: var(--premium-shadow-lift);
  transform: translate3d(0, -8px, 0);
}

.product-card img {
  height: 178px;
  object-fit: contain;
  padding: 5px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.product-card--primary img {
  height: 202px;
}

.product-card:hover img,
.product-card:focus-visible img {
  transform: scale(1.02);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.product-card > span:last-child i {
  transition: transform 250ms ease;
}

.product-card:hover > span:last-child i,
.product-card:focus-visible > span:last-child i {
  transform: translateX(4px);
}

.product-modal {
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.product-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-modal__dialog {
  transform: translateY(8px) scale(0.982);
  opacity: 0;
  transition: transform 240ms ease, opacity 220ms ease;
}

.product-modal.is-open .product-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.product-modal {
  place-items: center;
  padding: clamp(14px, 2.4vw, 34px);
  background:
    radial-gradient(circle at 50% 0%, rgba(55, 172, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(73, 217, 255, 0.12), transparent 28%),
    rgba(1, 5, 13, 0.86);
  backdrop-filter: blur(18px) saturate(1.12);
}

.product-modal__dialog {
  width: min(1560px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  gap: 14px;
  border: 1px solid rgba(105, 195, 255, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(10, 24, 50, 0.98), rgba(4, 10, 23, 0.98)),
    #050c1b;
  padding: clamp(12px, 1.5vw, 18px);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 0 48px rgba(45, 174, 255, 0.16);
  overflow: hidden;
  isolation: isolate;
}

.product-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(82, 213, 255, 0.16), transparent 24%, transparent 76%, rgba(82, 213, 255, 0.1)),
    radial-gradient(circle at 20% 0%, rgba(39, 129, 255, 0.18), transparent 34%);
  pointer-events: none;
}

.product-modal__dialog h2 {
  min-height: 42px;
  margin: 0;
  padding: 7px 58px 0 4px;
  color: #f3f8ff;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.product-modal__close {
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  border-color: rgba(112, 199, 255, 0.32);
  background: rgba(7, 17, 36, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.product-modal__close:hover,
.product-modal__close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(82, 213, 255, 0.76);
  background: rgba(13, 38, 75, 0.96);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.36), 0 0 26px rgba(82, 213, 255, 0.15);
  outline: none;
}

.product-modal img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 128px);
  border: 1px solid rgba(118, 189, 255, 0.18);
  border-radius: 14px;
  background: #061124;
  object-fit: contain;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.42);
}

.screenshot-open-cue {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(116, 226, 255, 0.36);
  border-radius: 999px;
  background: rgba(5, 16, 35, 0.78);
  color: #dff8ff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 0 24px rgba(64, 196, 255, 0.12);
  opacity: 0;
  transform: translate3d(0, 6px, 0) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.one-hire-preview__button:hover .screenshot-open-cue,
.one-hire-preview__button:focus-visible .screenshot-open-cue,
.dual-journey-shot__button:hover .screenshot-open-cue,
.dual-journey-shot__button:focus-visible .screenshot-open-cue {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.screenshot-open-cue i {
  font-size: 1.15rem;
}

.compact-workflow {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin-top: clamp(72px, 8vw, 118px);
  padding-inline: 0;
  padding-block: clamp(30px, 4vw, 48px);
}

.compact-workflow .flow-line {
  opacity: 0.55;
  background: linear-gradient(90deg, transparent, rgba(45, 141, 255, 0.65), rgba(88, 229, 255, 0.65), rgba(40, 226, 156, 0.5), transparent);
  background-size: 260% 100%;
}

.compact-workflow .flow-rail button {
  position: relative;
  transition: transform 250ms ease;
}

.compact-workflow .flow-rail button::after {
  content: attr(data-flow-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 210px;
  border: 1px solid rgba(112, 219, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 12, 26, 0.94);
  color: #cfe2ff;
  padding: 9px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 6px, 0);
  transition: opacity 200ms ease, transform 200ms ease;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  z-index: 4;
}

.compact-workflow .flow-rail button:hover,
.compact-workflow .flow-rail button:focus-visible {
  transform: translateY(-4px) scale(1.025);
}

.compact-workflow .flow-rail button:hover::after,
.compact-workflow .flow-rail button:focus-visible::after {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.compact-workflow .flow-rail i {
  border-color: rgba(75, 174, 255, 0.2);
  box-shadow: 0 0 0 8px rgba(34, 103, 255, 0.035), 0 0 28px rgba(39, 134, 255, 0.16);
}

.compact-workflow .flow-rail.is-in-view i {
  animation: workflowNodeGlow 900ms ease both;
}

.compact-workflow .flow-rail.is-in-view button:nth-of-type(2) i { animation-delay: 70ms; }
.compact-workflow .flow-rail.is-in-view button:nth-of-type(3) i { animation-delay: 140ms; }
.compact-workflow .flow-rail.is-in-view button:nth-of-type(4) i { animation-delay: 210ms; }
.compact-workflow .flow-rail.is-in-view button:nth-of-type(5) i { animation-delay: 280ms; }
.compact-workflow .flow-rail.is-in-view button:nth-of-type(6) i { animation-delay: 350ms; }
.compact-workflow .flow-rail.is-in-view button:nth-of-type(7) i { animation-delay: 420ms; }
.compact-workflow .flow-rail.is-in-view button:nth-of-type(8) i { animation-delay: 490ms; }
.compact-workflow .flow-rail.is-in-view button:nth-of-type(9) i { animation-delay: 560ms; }

@keyframes workflowNodeGlow {
  0% { box-shadow: 0 0 0 0 rgba(45, 141, 255, 0), 0 0 0 rgba(39, 134, 255, 0); }
  45% { box-shadow: 0 0 0 10px rgba(45, 141, 255, 0.08), 0 0 34px rgba(39, 134, 255, 0.24); }
  100% { box-shadow: 0 0 0 8px rgba(34, 103, 255, 0.035), 0 0 28px rgba(39, 134, 255, 0.16); }
}

.audience-section {
  padding-block: clamp(36px, 5vw, 60px);
}

.audience-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  width: min(320px, 32vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 229, 255, 0.7), transparent);
  opacity: 0.55;
  transform: translateX(-50%);
}

.audience-section::after {
  top: 56%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #58e5ff;
  opacity: 0;
  box-shadow: 0 0 18px rgba(88, 229, 255, 0.8);
  animation: audienceDataFlow 4.8s ease-in-out infinite;
}

@keyframes audienceDataFlow {
  0%, 100% { opacity: 0; transform: translateX(-180px); }
  20%, 80% { opacity: 0.75; }
  50% { transform: translateX(172px); }
}

.audience-panel,
.outcome-card,
.enterprise-card {
  border-color: rgba(126, 185, 255, 0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.outcome-card:hover,
.enterprise-card:hover,
.audience-panel:hover {
  box-shadow: var(--premium-shadow-lift);
}

.dual-journey-section {
  border: 1px solid rgba(83, 178, 255, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 8%, rgba(36, 136, 255, 0.12), transparent 34%),
    rgba(3, 10, 24, 0.9);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  padding: clamp(26px, 4.2vw, 54px);
}

.dual-journey-section::before,
.dual-journey-section::after {
  display: none;
}

.dual-journey-section .launch-section__title p {
  max-width: 720px;
  margin: 0 auto;
  color: #aab9d4;
  line-height: 1.65;
}

.dual-journey-shell {
  display: grid;
  gap: 20px;
}

.dual-journey-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(104px, 0.16fr) minmax(0, 1fr);
  gap: clamp(14px, 2.2vw, 24px);
  align-items: stretch;
}

.dual-journey-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  min-height: 560px;
  border: 1px solid rgba(109, 181, 255, 0.16);
  border-radius: 14px;
  background: rgba(4, 14, 32, 0.78);
  padding: clamp(18px, 2.4vw, 26px);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.dual-journey-panel__copy {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.dual-journey-panel__label {
  color: #58e5ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dual-journey-panel h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.32rem, 2.1vw, 2rem);
  line-height: 1.16;
}

.dual-journey-panel p {
  max-width: 560px;
  margin: 0;
  color: #a9b8d3;
  line-height: 1.58;
}

.dual-journey-chip {
  width: fit-content;
  max-width: 100%;
  margin-top: 4px;
  border: 1px solid rgba(88, 229, 255, 0.22);
  border-radius: 999px;
  background: rgba(24, 108, 180, 0.18);
  color: #cceeff;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.dual-journey-shot {
  align-self: end;
  display: grid;
  place-items: center;
  height: clamp(340px, 30vw, 430px);
  min-height: 0;
  margin: 20px 0 0;
  border: 1px solid rgba(112, 180, 250, 0.15);
  border-radius: 12px;
  background: rgba(4, 11, 25, 0.78);
  padding: 12px;
  overflow: hidden;
}

.dual-journey-shot__button,
.one-hire-preview__button {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.dual-journey-shot__button:focus-visible,
.one-hire-preview__button:focus-visible {
  outline: 2px solid rgba(82, 213, 255, 0.78);
  outline-offset: 4px;
  box-shadow: 0 0 0 8px rgba(31, 154, 255, 0.14);
}

.dual-journey-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border: 1px solid rgba(109, 171, 235, 0.16);
  border-radius: 9px;
  background: #061124;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.dual-journey-shot:hover img,
.dual-journey-shot__button:focus-visible img {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
}

.dual-journey-section.is-dual-changing .dual-journey-shot img {
  opacity: 0;
  transform: translate3d(12px, 0, 0);
}

.dual-journey-connector {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
}

.dual-journey-connector span {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(88, 229, 255, 0.7), rgba(45, 141, 255, 0.72), transparent);
  transform: translateY(-50%);
  overflow: hidden;
}

.dual-journey-connector span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -34%;
  width: 34%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #58e5ff, transparent);
  opacity: 0.75;
  animation: dualJourneyPulseX 3.2s ease-in-out infinite;
}

.dual-journey-connector strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 108px;
  min-height: 72px;
  border: 1px solid rgba(88, 229, 255, 0.22);
  border-radius: 999px;
  background: rgba(4, 14, 32, 0.92);
  color: #d9f5ff;
  padding: 12px 14px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(47, 167, 255, 0.14);
}

.dual-journey-section.is-dual-pulsing .dual-journey-connector strong {
  border-color: rgba(88, 229, 255, 0.46);
  box-shadow: 0 0 32px rgba(67, 213, 255, 0.24);
}

.dual-journey-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 8px;
  scrollbar-width: none;
}

.dual-journey-nav::-webkit-scrollbar {
  display: none;
}

.dual-journey-nav button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(103, 191, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 20, 43, 0.72);
  color: #8091af;
  padding: 0 14px 0 8px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.dual-journey-nav button span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(35, 58, 91, 0.72);
  color: #9fb2d0;
  font-size: 0.72rem;
  font-weight: 900;
}

.dual-journey-nav button:hover,
.dual-journey-nav button:focus-visible {
  outline: none;
  border-color: rgba(88, 229, 255, 0.36);
  color: #e4f5ff;
}

.dual-journey-nav button.is-complete {
  color: #a8bdd7;
}

.dual-journey-nav button.is-complete span {
  background: rgba(26, 89, 132, 0.64);
  color: #8de9ff;
}

.dual-journey-nav button.is-active {
  border-color: rgba(88, 229, 255, 0.48);
  background: rgba(22, 101, 172, 0.28);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(47, 167, 255, 0.15);
}

.dual-journey-nav button.is-active span {
  background: linear-gradient(145deg, #1b7dff, #39dfff);
  color: #ffffff;
}

.dual-journey-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.dual-journey-controls > span {
  color: #58e5ff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dual-journey-control {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(103, 191, 255, 0.22);
  border-radius: 10px;
  background: rgba(8, 23, 50, 0.86);
  color: #d8e8ff;
  padding: 0 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.dual-journey-control:hover,
.dual-journey-control:focus-visible {
  outline: none;
  border-color: rgba(88, 229, 255, 0.46);
  background: rgba(17, 78, 138, 0.44);
  box-shadow: 0 0 24px rgba(67, 213, 255, 0.16);
  transform: translateY(-2px);
}

.dual-journey-control:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

.dual-journey-control--next {
  border-color: rgba(88, 229, 255, 0.38);
  background: linear-gradient(145deg, rgba(23, 117, 255, 0.82), rgba(25, 197, 255, 0.68));
  color: #ffffff;
}

@keyframes dualJourneyPulseX {
  0% { transform: translateX(0); opacity: 0; }
  22% { opacity: 0.75; }
  100% { transform: translateX(390%); opacity: 0; }
}

@keyframes dualJourneyPulseY {
  0% { transform: translateY(0); opacity: 0; }
  22% { opacity: 0.75; }
  100% { transform: translateY(390%); opacity: 0; }
}

@media (max-width: 1040px) {
  .dual-journey-panels {
    grid-template-columns: 1fr;
  }

  .dual-journey-connector {
    min-height: 94px;
  }

  .dual-journey-connector span {
    left: 50%;
    right: auto;
    top: 8px;
    bottom: 8px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(88, 229, 255, 0.7), rgba(45, 141, 255, 0.72), transparent);
    transform: translateX(-50%);
  }

  .dual-journey-connector span::after {
    inset: -34% 0 auto;
    width: auto;
    height: 34%;
    background: linear-gradient(180deg, transparent, #58e5ff, transparent);
    animation-name: dualJourneyPulseY;
  }

  .dual-journey-panel {
    min-height: 0;
  }

  .dual-journey-shot {
    height: clamp(260px, 58vw, 390px);
  }
}

@media (max-width: 680px) {
  .dual-journey-section {
    padding: 22px;
  }

  .dual-journey-panel {
    padding: 16px;
  }

  .dual-journey-shot {
    height: clamp(220px, 62vw, 330px);
    padding: 10px;
  }

  .dual-journey-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
  }

  .dual-journey-control {
    width: 100%;
    padding-inline: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dual-journey-shot img,
  .dual-journey-nav button,
  .dual-journey-control,
  .dual-journey-connector span::after {
    animation: none;
    transition: none;
  }
}

.final-product-cta__inner {
  position: relative;
  overflow: hidden;
}

.final-product-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(35, 141, 255, 0.2), transparent 42%),
    url("/static/smartInterview/homepage-assets/dashboard.a85810774d33.png") center / 88% auto no-repeat;
  opacity: 0.055;
  filter: blur(1px);
  pointer-events: none;
}

.final-product-cta__inner > * {
  position: relative;
  z-index: 1;
}

.shortlistii-launch-page .btn {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.shortlistii-launch-page .btn-primary:hover,
.shortlistii-launch-page .btn-primary:focus-visible {
  background: linear-gradient(135deg, #26a4ff 0%, #237bff 58%, #40d6ff 100%);
  box-shadow: 0 18px 42px rgba(24, 124, 255, 0.36), 0 0 26px rgba(64, 214, 255, 0.16);
}

.shortlistii-launch-page .btn i {
  transition: transform 220ms ease;
}

.shortlistii-launch-page .btn:hover i,
.shortlistii-launch-page .btn:focus-visible i {
  transform: translateX(4px);
}

#mainHeader.launch-header {
  background: rgba(2, 7, 18, 0.68);
  border-bottom-color: rgba(129, 194, 255, 0.08);
  backdrop-filter: blur(18px);
}

@media (max-width: 1180px) {
  .reference-hero .launch-hero-v2__inner {
    grid-template-columns: 1fr;
  }

  .hero-visual-wrap {
    translate: 0;
    margin-left: 0;
  }

  .reference-hero .hero-product-shot img {
    max-height: none;
  }
}

@media (max-width: 980px) {
  .reference-hero {
    min-height: 0;
    padding-bottom: 58px;
  }

  .product-card--primary,
  .product-card {
    min-height: 0;
  }

  .product-card--primary img,
  .product-card img {
    height: 184px;
  }
}

@media (max-width: 720px) {
  .shortlistii-launch-page .reference-hero h1 {
    font-size: clamp(3rem, 14vw, 4.45rem);
  }

  .reference-hero {
    padding-top: 112px;
  }

  .product-card--primary,
  .product-card {
    flex-basis: min(84vw, 330px);
  }

  .compact-workflow .flow-rail button::after,
  .audience-section::before,
  .audience-section::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reference-hero .hero-product-shot,
  .hero-float-card,
  .compact-workflow .flow-rail.is-in-view i,
  .audience-section::after {
    animation: none;
  }

  .product-card,
  .product-card img,
  .shortlistii-launch-page .btn,
  .product-modal,
  .product-modal__dialog {
    transition: none;
  }
}

.one-hire-section {
  --one-hire-progress: 0%;
  max-width: min(1460px, calc(100% - var(--landing-page-gutter) - var(--landing-page-gutter)));
  border-color: rgba(84, 187, 255, 0.18);
  background:
    radial-gradient(circle at 78% 10%, rgba(47, 167, 255, 0.13), transparent 34%),
    rgba(3, 9, 22, 0.92);
}

.one-hire-section .launch-section__title p {
  max-width: 650px;
  margin-inline: auto;
  color: #aab9d4;
}

.one-hire-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.34fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
}

.one-hire-nav-panel {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(93, 184, 255, 0.16);
  border-radius: 14px;
  background: rgba(3, 12, 29, 0.72);
  padding: 22px 18px 22px 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.one-hire-progress-track {
  position: absolute;
  top: var(--one-hire-track-top, 42px);
  bottom: auto;
  left: 42px;
  width: 2px;
  height: var(--one-hire-track-height, calc(100% - 120px));
  border-radius: 999px;
  background: rgba(87, 141, 196, 0.22);
  overflow: hidden;
}

.one-hire-progress-track span {
  display: block;
  width: 100%;
  height: var(--one-hire-progress);
  border-radius: inherit;
  background: linear-gradient(180deg, #2d8dff, #58e5ff);
  box-shadow: 0 0 18px rgba(70, 204, 255, 0.42);
  transition: height 260ms ease;
}

.one-hire-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.one-hire-steps li {
  min-width: 0;
}

.one-hire-steps button {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 88px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #7f91b3;
  padding: 10px 12px 10px 0;
  text-align: left;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.one-hire-steps button:hover,
.one-hire-steps button:focus-visible {
  color: #dcecff;
  outline: none;
  border-color: rgba(88, 229, 255, 0.28);
  background: rgba(20, 75, 128, 0.16);
}

.one-hire-step__number {
  position: relative;
  z-index: 2;
  isolation: isolate;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(106, 163, 224, 0.22);
  border-radius: 50%;
  background: #0d2038;
  color: #7fa6d6;
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
}

.one-hire-step__number::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 19, 39, 0.98) 0 62%, rgba(6, 19, 39, 0.62) 70%, transparent 78%);
  pointer-events: none;
}

.one-hire-step__content {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding-top: 2px;
}

.one-hire-step__label {
  min-width: 0;
  color: #dbe8ff;
  font-weight: 850;
  line-height: 1.25;
}

.one-hire-step__summary {
  max-width: 210px;
  color: #8d9cb9;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.52;
}

.one-hire-steps button.is-complete {
  color: #a9c7e9;
}

.one-hire-steps button.is-complete .one-hire-step__number {
  border-color: rgba(54, 211, 255, 0.34);
  background: rgba(25, 88, 132, 0.34);
  color: #8de9ff;
}

.one-hire-steps button.is-active {
  border-color: transparent;
  background: transparent;
  color: #f4fbff;
  box-shadow: none;
  transform: none;
}

.one-hire-steps button.is-active .one-hire-step__number {
  border-color: rgba(96, 226, 255, 0.72);
  background: linear-gradient(145deg, #1b7dff, #39dfff);
  color: #ffffff;
  box-shadow: 0 0 22px rgba(67, 213, 255, 0.42);
}

.one-hire-steps button.is-active .one-hire-step__number::before {
  background: radial-gradient(circle, rgba(9, 32, 65, 0.98) 0 62%, rgba(39, 151, 255, 0.16) 70%, transparent 80%);
}

.one-hire-steps button.is-active .one-hire-step__label {
  color: #ffffff;
}

.one-hire-steps button.is-active .one-hire-step__summary {
  color: #c5d3e9;
}

.one-hire-demo {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 18px;
  min-width: 0;
}

.one-hire-preview {
  position: relative;
  display: grid;
  place-items: center;
  height: clamp(360px, 44vw, 620px);
  min-height: 0;
  margin: 0;
  border: 1px solid rgba(111, 184, 255, 0.17);
  border-radius: 16px;
  background: rgba(5, 15, 33, 0.86);
  padding: clamp(12px, 1.8vw, 20px);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 0 44px rgba(45, 141, 255, 0.12);
}

.one-hire-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.one-hire-preview img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(109, 171, 235, 0.2);
  border-radius: 10px;
  background: #061124;
  object-fit: contain;
  object-position: center center;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.one-hire-preview:hover img,
.one-hire-preview__button:focus-visible img {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.4);
}

.one-hire-section.is-step-changing .one-hire-preview img {
  opacity: 0;
  transform: translate3d(12px, 0, 0) scale(0.99);
}

.one-hire-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  border: 1px solid rgba(91, 181, 255, 0.14);
  border-radius: 14px;
  background: rgba(5, 16, 36, 0.76);
  padding: clamp(18px, 2.2vw, 24px);
}

.one-hire-copy h3,
.one-hire-completion h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.18;
}

.one-hire-copy p,
.one-hire-completion p {
  max-width: 720px;
  margin: 8px 0 0;
  color: #aab9d4;
  line-height: 1.62;
}

.one-hire-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #58e5ff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.one-hire-controls {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.one-hire-control {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(103, 191, 255, 0.22);
  border-radius: 10px;
  background: rgba(8, 23, 50, 0.86);
  color: #d8e8ff;
  padding: 0 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.one-hire-control:hover,
.one-hire-control:focus-visible {
  outline: none;
  border-color: rgba(88, 229, 255, 0.46);
  background: rgba(17, 78, 138, 0.44);
  box-shadow: 0 0 24px rgba(67, 213, 255, 0.18);
  transform: translateY(-2px);
}

.one-hire-control:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

.one-hire-control--next {
  border-color: rgba(88, 229, 255, 0.38);
  background: linear-gradient(145deg, rgba(23, 117, 255, 0.82), rgba(25, 197, 255, 0.68));
  color: #ffffff;
}

.one-hire-completion {
  border: 1px solid rgba(72, 213, 255, 0.22);
  border-radius: 14px;
  background: rgba(7, 25, 51, 0.84);
  padding: clamp(18px, 2.2vw, 24px);
  box-shadow: 0 0 34px rgba(47, 167, 255, 0.12);
}

.one-hire-completion.is-visible {
  animation: oneHireCompletionIn 240ms ease both;
}

.one-hire-completion .btn {
  margin-top: 16px;
}

@keyframes oneHireCompletionIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1060px) {
  .one-hire-shell {
    grid-template-columns: 1fr;
  }

  .one-hire-nav-panel {
    padding: 14px;
  }

  .one-hire-progress-track {
    top: auto;
    bottom: 10px;
    left: 16px;
    right: 16px;
    width: auto;
    height: 2px;
  }

  .one-hire-progress-track span {
    width: var(--one-hire-progress);
    height: 100% !important;
    transition: width 260ms ease;
  }

  .one-hire-steps {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 0 0 12px;
    scrollbar-width: none;
  }

  .one-hire-steps::-webkit-scrollbar {
    display: none;
  }

  .one-hire-steps li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .one-hire-steps button {
    grid-template-columns: 30px max-content;
    width: auto;
    min-height: 44px;
    padding: 6px 12px 6px 6px;
    white-space: nowrap;
  }

  .one-hire-step__number {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.78rem;
  }

  .one-hire-step__number::before {
    display: none;
  }

  .one-hire-step__content {
    padding-top: 0;
  }

  .one-hire-step__summary {
    display: none;
  }

  .one-hire-step__label {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 760px) {
  .one-hire-section {
    max-width: calc(100% - var(--landing-page-gutter) - var(--landing-page-gutter));
  }

  .one-hire-demo {
    gap: 14px;
  }

  .one-hire-copy {
    order: 1;
    display: grid;
    gap: 16px;
  }

  .one-hire-preview {
    order: 2;
    height: clamp(280px, 68vw, 430px);
    padding: 10px;
  }

  .one-hire-completion {
    order: 3;
  }

  .one-hire-controls {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .one-hire-control {
    width: 100%;
    padding-inline: 10px;
  }
}

@media (max-width: 480px) {
  .one-hire-steps button {
    grid-template-columns: 28px max-content;
    font-size: 0.86rem;
  }

  .one-hire-step__number {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }

  .one-hire-preview {
    height: clamp(240px, 72vw, 380px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .one-hire-progress-track span,
  .one-hire-steps button,
  .one-hire-preview img,
  .one-hire-control,
  .one-hire-completion.is-visible {
    animation: none;
    transition: none;
  }
}

.shortlistii-launch-page .reference-home .launch-section__title {
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
  margin-bottom: var(--landing-section-title-gap);
}

.shortlistii-launch-page .reference-home > .built-for-strip {
  margin-block: clamp(42px, 6vw, 88px) clamp(54px, 7vw, 96px);
}

.shortlistii-launch-page .reference-home > .built-for-strip p {
  margin-bottom: clamp(18px, 2.2vw, 30px);
}

.shortlistii-launch-page .reference-home > .one-hire-section,
.shortlistii-launch-page .reference-home > .compact-workflow,
.shortlistii-launch-page .reference-home > .dual-journey-section,
.shortlistii-launch-page .reference-home > .outcomes-showcase,
.shortlistii-launch-page .reference-home > .security-band,
.shortlistii-launch-page .reference-home > #founding-recruiter-program {
  margin-block: clamp(58px, 6.5vw, 96px);
}

.shortlistii-launch-page .reference-home > .compact-workflow {
  margin-top: clamp(82px, 8vw, 128px);
}

.shortlistii-launch-page .one-hire-section,
.shortlistii-launch-page .dual-journey-section,
.shortlistii-launch-page .outcomes-showcase,
.shortlistii-launch-page .security-band,
.shortlistii-launch-page #founding-recruiter-program {
  padding-inline: var(--landing-section-inset);
}

.shortlistii-launch-page .outcomes-showcase .outcome-grid,
.shortlistii-launch-page .security-band .enterprise-grid,
.shortlistii-launch-page .dual-journey-shell,
.shortlistii-launch-page .one-hire-shell {
  width: 100%;
}

.shortlistii-launch-page .outcome-card,
.shortlistii-launch-page .enterprise-card {
  padding-inline: clamp(24px, 2.4vw, 34px);
}

@media (max-width: 760px) {
  body.shortlistii-launch-page {
    --landing-section-inset: clamp(20px, 6vw, 28px);
    --landing-section-title-gap: 28px;
  }

  .shortlistii-launch-page .one-hire-section,
  .shortlistii-launch-page .dual-journey-section,
  .shortlistii-launch-page .outcomes-showcase,
  .shortlistii-launch-page .security-band,
  .shortlistii-launch-page #founding-recruiter-program {
    padding-inline: var(--landing-section-inset);
  }

  .shortlistii-launch-page .reference-home > .built-for-strip,
  .shortlistii-launch-page .reference-home > .one-hire-section,
  .shortlistii-launch-page .reference-home > .compact-workflow,
  .shortlistii-launch-page .reference-home > .dual-journey-section,
  .shortlistii-launch-page .reference-home > .outcomes-showcase,
  .shortlistii-launch-page .reference-home > .security-band,
  .shortlistii-launch-page .reference-home > #founding-recruiter-program {
    margin-block: 42px;
  }

  .shortlistii-launch-page .reference-home > .compact-workflow {
    margin-top: 58px;
  }

  .shortlistii-launch-page .outcome-card,
  .shortlistii-launch-page .enterprise-card {
    padding-inline: 22px;
  }
}

/* Shortlistii approved dark-theme landing direction */
.shortlistii-launch-page {
  --approved-panel: rgba(5, 16, 34, 0.76);
  --approved-panel-strong: rgba(7, 20, 43, 0.92);
  --approved-border: rgba(88, 176, 255, 0.17);
  --approved-border-strong: rgba(83, 207, 255, 0.36);
  --approved-blue: #157cff;
  --approved-cyan: #58e5ff;
}

.shortlistii-launch-page #mainMenu a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0;
}

.shortlistii-launch-page #mainMenu a i {
  font-size: 0.72rem;
  opacity: 0.72;
}

.shortlistii-launch-page .reference-hero {
  min-height: 700px;
  padding: 118px 0 64px;
  overflow: visible;
}

.shortlistii-launch-page .reference-hero .reveal-up,
.shortlistii-launch-page .reference-hero h1,
.shortlistii-launch-page .reference-hero .launch-hero-v2__copy p,
.shortlistii-launch-page .reference-hero .launch-hero__actions,
.shortlistii-launch-page .reference-hero .hero-proof-list,
.shortlistii-launch-page .reference-hero .hero-product-shot {
  opacity: 1 !important;
}

.shortlistii-launch-page .reference-hero .reveal-up {
  transform: none !important;
}

.shortlistii-launch-page .reference-hero::before,
.shortlistii-launch-page .reference-hero::after {
  z-index: 0;
}

.shortlistii-launch-page .reference-hero .launch-hero-v2__inner {
  position: relative;
  z-index: 1;
  align-items: center;
  grid-template-columns: minmax(390px, 0.86fr) minmax(560px, 1.14fr);
  gap: 48px;
}

.shortlistii-launch-page .reference-hero .product-badge {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--approved-cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shortlistii-launch-page .reference-hero h1 {
  max-width: 590px;
  color: #f8fbff;
  font-size: 3.68rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.shortlistii-launch-page .reference-hero h1 span {
  display: inline;
  background: linear-gradient(135deg, #1d86ff 0%, #157cff 45%, #49d8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.shortlistii-launch-page .reference-hero .launch-hero-v2__copy p {
  max-width: 560px;
  color: #d4def0;
  font-size: 1.08rem;
}

.shortlistii-launch-page .reference-hero .launch-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.shortlistii-launch-page .reference-hero .btn-outline {
  background: rgba(6, 15, 31, 0.72);
}

.shortlistii-launch-page .reference-hero .hero-product-shot {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  min-height: 0;
  border-radius: 14px;
  transform: none;
}

.shortlistii-launch-page .reference-hero .hero-product-shot img {
  max-height: 520px;
  object-fit: contain;
}

.shortlistii-launch-page .hero-visual-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  translate: 0;
}

.shortlistii-launch-page .hero-proof-list {
  gap: 16px 22px;
}

.shortlistii-launch-page .hero-proof-list li {
  color: #b9c9e4;
}

.shortlistii-launch-page .hero-proof-list i {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(77, 185, 255, 0.22);
  border-radius: 50%;
  background: rgba(13, 63, 129, 0.22);
  color: #78ddff;
}

.shortlistii-launch-page .reference-home > .built-for-strip {
  margin-block: 34px 44px;
  padding: 0;
  border: 0;
}

.shortlistii-launch-page .built-for-strip p,
.shortlistii-launch-page .ats-copy span,
.shortlistii-launch-page .security-hero span,
.shortlistii-launch-page .founder-card blockquote span {
  color: var(--approved-cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shortlistii-launch-page .hiring-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.shortlistii-launch-page .hiring-team-grid article,
.shortlistii-launch-page .problem-grid article,
.shortlistii-launch-page .outcome-card,
.shortlistii-launch-page .enterprise-card {
  border: 1px solid var(--approved-border);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(41, 143, 255, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(8, 22, 47, 0.82), rgba(4, 12, 26, 0.78));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.shortlistii-launch-page .hiring-team-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 14px;
  row-gap: 5px;
  min-height: 120px;
  padding: 22px 18px;
  text-align: left;
}

.shortlistii-launch-page .problem-grid article,
.shortlistii-launch-page .outcome-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: start;
  column-gap: 14px;
  row-gap: 5px;
}

.shortlistii-launch-page .hiring-team-grid i,
.shortlistii-launch-page .problem-grid i,
.shortlistii-launch-page .outcome-card i,
.shortlistii-launch-page .enterprise-card i,
.shortlistii-launch-page .founder-points i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(72, 178, 255, 0.24);
  border-radius: 10px;
  background: rgba(18, 83, 177, 0.26);
  color: #5edcff;
  font-size: 1.25rem;
  box-shadow: 0 0 28px rgba(24, 124, 255, 0.16);
}

.shortlistii-launch-page .hiring-team-grid i,
.shortlistii-launch-page .problem-grid i,
.shortlistii-launch-page .outcome-card i {
  grid-row: 1 / span 2;
  align-self: center;
}

.shortlistii-launch-page .hiring-team-grid h3,
.shortlistii-launch-page .problem-grid h3,
.shortlistii-launch-page .outcome-card h3,
.shortlistii-launch-page .enterprise-card h3 {
  margin: 0;
  color: #f4f8ff;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.shortlistii-launch-page .hiring-team-grid span,
.shortlistii-launch-page .problem-grid p,
.shortlistii-launch-page .outcome-card p {
  grid-column: 2;
  margin: 0;
}

.shortlistii-launch-page .hiring-team-grid span,
.shortlistii-launch-page .problem-grid p,
.shortlistii-launch-page .outcome-card p,
.shortlistii-launch-page .enterprise-card p {
  color: #a9b9d4;
  font-size: 0.88rem;
  line-height: 1.55;
}

.shortlistii-launch-page .recruiter-relief-section,
.shortlistii-launch-page .ats-section,
.shortlistii-launch-page .outcomes-showcase,
.shortlistii-launch-page .security-band,
.shortlistii-launch-page .founder-section,
.shortlistii-launch-page .dual-journey-section,
.shortlistii-launch-page .final-product-cta {
  border: 1px solid var(--approved-border);
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 0%, rgba(27, 116, 255, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(6, 18, 38, 0.7), rgba(3, 9, 21, 0.74));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  margin-block: 36px;
  padding: 34px;
}

.shortlistii-launch-page .problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.shortlistii-launch-page .problem-grid article {
  min-height: 142px;
  padding: 20px;
}

.shortlistii-launch-page .section-closing-line {
  max-width: 760px;
  margin: 22px auto 0;
  color: #c6d5eb;
  text-align: center;
}

.shortlistii-launch-page .recruiter-relief-section .launch-section__title {
  max-width: none;
}

.shortlistii-launch-page .recruiter-relief-section .launch-section__title h2 {
  max-width: none;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.14;
  white-space: nowrap;
}

.shortlistii-launch-page .ats-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
}

.shortlistii-launch-page .ats-copy h2 {
  margin: 14px 0 18px;
  color: #f5f8ff;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.shortlistii-launch-page .ats-copy p {
  max-width: 340px;
  margin: 0;
  color: #aebdd8;
  line-height: 1.65;
}

.shortlistii-launch-page .comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(90, 168, 255, 0.14);
  border-radius: 10px;
  background: rgba(4, 12, 28, 0.62);
}

.shortlistii-launch-page .comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #c3d2e9;
}

.shortlistii-launch-page .comparison-table th,
.shortlistii-launch-page .comparison-table td {
  border-bottom: 1px solid rgba(90, 168, 255, 0.12);
  padding: 17px 18px;
  text-align: left;
  font-size: 0.9rem;
}

.shortlistii-launch-page .comparison-table thead th {
  background: rgba(9, 25, 53, 0.86);
  color: #dce9ff;
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  letter-spacing: 0;
}

.shortlistii-launch-page .comparison-table thead th:last-child {
  background: linear-gradient(135deg, rgba(18, 103, 232, 0.62), rgba(11, 64, 136, 0.72));
  color: #ffffff;
  text-align: center;
}

.shortlistii-launch-page .comparison-table tbody tr:last-child th,
.shortlistii-launch-page .comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.shortlistii-launch-page .comparison-table tbody th {
  color: #f1f7ff;
  font-weight: 800;
}

.shortlistii-launch-page .comparison-table tbody th i {
  margin-right: 8px;
  color: #4fdcff;
}

.shortlistii-launch-page .comparison-table tbody td:last-child {
  color: #45c9ff;
  background: rgba(15, 83, 177, 0.16);
}

.shortlistii-launch-page .outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shortlistii-launch-page .outcome-card {
  min-height: 150px;
  padding: 20px;
}

.shortlistii-launch-page .security-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 32px;
}

.shortlistii-launch-page .security-hero {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.shortlistii-launch-page .security-orb {
  width: 124px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(80, 191, 255, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(83, 229, 255, 0.22), transparent 28%),
    radial-gradient(circle, rgba(17, 91, 211, 0.42), rgba(4, 14, 32, 0.92) 68%);
  color: #dff8ff;
  font-size: 2.4rem;
  box-shadow: 0 0 44px rgba(22, 125, 255, 0.35), inset 0 0 28px rgba(83, 229, 255, 0.1);
}

.shortlistii-launch-page .security-hero h2 {
  margin: 10px 0 10px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.shortlistii-launch-page .security-hero p {
  margin: 0;
  color: #aebdd8;
  line-height: 1.62;
}

.shortlistii-launch-page .security-band .enterprise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shortlistii-launch-page .security-band .enterprise-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  align-items: start;
  column-gap: 12px;
  row-gap: 4px;
  padding: 18px;
}

.shortlistii-launch-page .security-band .enterprise-card i {
  grid-row: 1 / span 2;
  align-self: center;
  border-radius: 8px;
}

.shortlistii-launch-page .security-band .enterprise-card h3 {
  margin: 0 0 4px;
}

.shortlistii-launch-page .security-band .enterprise-card p {
  grid-column: 2;
  margin: 0;
}

.shortlistii-launch-page .founder-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(220px, 0.36fr);
  align-items: center;
  gap: 28px;
}

.shortlistii-launch-page .founder-avatar {
  width: 104px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(88, 197, 255, 0.34);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(13, 47, 92, 0.94), rgba(4, 12, 27, 0.96));
  color: #6edcff;
  font-size: 2.8rem;
  box-shadow: 0 0 38px rgba(37, 132, 255, 0.22);
}

.shortlistii-launch-page .founder-avatar img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shortlistii-launch-page .founder-avatar i {
  grid-area: 1 / 1;
}

.shortlistii-launch-page .founder-card blockquote {
  margin: 0;
}

.shortlistii-launch-page .founder-card blockquote p {
  margin: 12px 0 14px;
  color: #dce8f9;
  font-size: 1.12rem;
  line-height: 1.65;
}

.shortlistii-launch-page .founder-card cite {
  color: #f6f9ff;
  font-style: normal;
  font-weight: 800;
}

.shortlistii-launch-page .founder-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 1px solid rgba(100, 175, 255, 0.14);
  list-style: none;
}

.shortlistii-launch-page .founder-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  color: #d3e1f5;
  font-weight: 750;
}

.shortlistii-launch-page .founder-section {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 0;
  border-color: rgba(95, 206, 255, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 48%, rgba(63, 180, 255, 0.36), transparent 34%),
    radial-gradient(circle at 22% 20%, rgba(58, 217, 255, 0.16), transparent 28%),
    linear-gradient(105deg, #03152e 0%, #062e59 48%, #0a4875 74%, #041a35 100%);
}

.shortlistii-launch-page .founder-section::before,
.shortlistii-launch-page .founder-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.shortlistii-launch-page .founder-section::before {
  inset: 0;
  background:
    radial-gradient(circle at 13% 20%, rgba(70, 218, 255, 0.1), transparent 10%),
    linear-gradient(90deg, rgba(2, 12, 28, 0.82) 0%, rgba(2, 18, 39, 0.68) 34%, rgba(3, 23, 48, 0.28) 58%, rgba(2, 12, 28, 0.12) 100%),
    linear-gradient(0deg, rgba(2, 12, 28, 0.42) 0%, transparent 42%, rgba(2, 12, 28, 0.3) 100%);
  z-index: 2;
}

.shortlistii-launch-page .founder-section::after {
  width: 390px;
  height: 390px;
  right: 13%;
  top: 50%;
  border: 1px solid rgba(104, 220, 255, 0.28);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 70px rgba(44, 150, 255, 0.12);
  z-index: 3;
}

.shortlistii-launch-page .founder-card {
  position: relative;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  z-index: 4;
}

.shortlistii-launch-page .founder-card__content {
  position: relative;
  z-index: 6;
  display: grid;
  align-content: center;
  justify-items: start;
  max-width: 610px;
  padding: clamp(34px, 4.6vw, 54px) 0 clamp(34px, 4.6vw, 54px) clamp(30px, 5.6vw, 58px);
}

.shortlistii-launch-page .founder-avatar {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border: 1px solid rgba(89, 218, 255, 0.42);
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 114, 196, 0.32), rgba(6, 24, 52, 0.86));
  color: #6de7ff;
  box-shadow: 0 0 40px rgba(45, 161, 255, 0.22), inset 0 0 22px rgba(76, 219, 255, 0.08);
}

.shortlistii-launch-page .founder-avatar i {
  font-size: 2rem;
}

.shortlistii-launch-page .founder-card blockquote {
  position: relative;
  z-index: 5;
  max-width: 590px;
  margin: 0;
}

.shortlistii-launch-page .founder-card blockquote span {
  display: block;
  margin-bottom: 16px;
  color: #5de8ff;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.shortlistii-launch-page .founder-card blockquote p {
  margin: 0 0 22px;
  color: #eef5ff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.72rem, 2.75vw, 2.85rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
}

.shortlistii-launch-page .founder-card blockquote p em {
  color: #5de8ff;
  font-style: normal;
}

.shortlistii-launch-page .founder-card cite {
  display: block;
  color: #ffffff;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
}

.shortlistii-launch-page .founder-card small {
  display: block;
  margin-top: 10px;
  color: rgba(219, 231, 250, 0.72);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 650;
}

.shortlistii-launch-page .founder-portrait {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 1;
}

.shortlistii-launch-page .founder-portrait::before,
.shortlistii-launch-page .founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.shortlistii-launch-page .founder-portrait::before {
  background:
    linear-gradient(90deg, rgba(2, 12, 28, 0.38) 0%, rgba(3, 19, 40, 0.08) 35%, rgba(3, 19, 40, 0) 72%, rgba(3, 19, 40, 0.05) 100%),
    linear-gradient(0deg, rgba(3, 19, 40, 0.46) 0%, rgba(3, 19, 40, 0) 42%, rgba(3, 19, 40, 0.2) 100%);
}

.shortlistii-launch-page .founder-portrait::after {
  display: none;
}

.shortlistii-launch-page .founder-portrait img {
  position: absolute;
  inset: 0;
  width: 112%;
  height: 160%;
  object-fit: cover;
  object-position: 66% center;
  filter: none;
  transform: none;
}

.shortlistii-launch-page .dual-journey-panel__copy strong {
  display: block;
  margin: 4px 0 8px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.shortlistii-launch-page .dual-journey-panel__copy a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: #4bd8ff;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.shortlistii-launch-page .dual-journey-panel__copy a:hover,
.shortlistii-launch-page .dual-journey-panel__copy a:focus-visible {
  color: #ffffff;
  outline: none;
}

.shortlistii-launch-page .final-product-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 285px;
  padding: clamp(36px, 5vw, 64px) clamp(24px, 6vw, 88px);
  text-align: center;
}

.shortlistii-launch-page .final-product-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 0;
  border-color: rgba(88, 167, 255, 0.32);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(4, 11, 24, 0.84), rgba(4, 10, 22, 0.92));
  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(144, 203, 255, 0.08);
}

.shortlistii-launch-page .final-product-cta::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -2;
  background: url("../homepage-assets/dashboard.a85810774d33.png") center 42% / cover no-repeat;
  opacity: 0.22;
  filter: blur(2px) saturate(0.9);
  transform: scale(1.03);
}

.shortlistii-launch-page .final-product-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 50%, rgba(35, 139, 255, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(2, 7, 16, 0.88), rgba(5, 17, 37, 0.76) 45%, rgba(2, 7, 16, 0.9)),
    linear-gradient(180deg, rgba(4, 10, 22, 0.42), rgba(2, 7, 16, 0.9));
  pointer-events: none;
}

.shortlistii-launch-page .final-product-cta__copy {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(100%, 900px);
  text-align: center;
}

.shortlistii-launch-page .final-product-cta h2 {
  max-width: 19ch;
  margin: 0;
  color: #f4f7ff;
  font-size: clamp(1.85rem, 3.35vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

.shortlistii-launch-page .final-product-cta p {
  justify-self: center;
  width: 100%;
  max-width: 640px;
  margin: 0;
  color: #c3d0e7;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 650;
  line-height: 1.5;
  text-align: center;
}

.shortlistii-launch-page .final-product-cta__inner::before {
  display: none;
}

.shortlistii-launch-page .final-demo-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shortlistii-launch-page .final-demo-form .btn {
  min-height: 54px;
  white-space: nowrap;
  box-shadow:
    0 18px 44px rgba(20, 134, 255, 0.26),
    0 0 38px rgba(69, 206, 255, 0.18);
}

.one-hire-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(40, 145, 255, 0.2), transparent 38%),
    rgba(1, 5, 13, 0.86);
  backdrop-filter: blur(18px) saturate(1.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.one-hire-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.one-hire-modal__dialog {
  position: relative;
  width: min(1500px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid rgba(105, 195, 255, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 0%, rgba(38, 137, 255, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(8, 22, 48, 0.98), rgba(3, 9, 21, 0.99));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.68), 0 0 54px rgba(45, 174, 255, 0.14);
  transform: translateY(10px) scale(0.982);
  opacity: 0;
  transition: transform 240ms ease, opacity 220ms ease;
}

.one-hire-modal.is-open .one-hire-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.one-hire-modal__close {
  position: sticky;
  top: 14px;
  float: right;
  z-index: 4;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(126, 207, 255, 0.28);
  border-radius: 10px;
  background: rgba(5, 15, 32, 0.92);
  color: #dff3ff;
  cursor: pointer;
}

.one-hire-modal__close:hover,
.one-hire-modal__close:focus-visible {
  border-color: rgba(88, 229, 255, 0.58);
  outline: none;
}

.one-hire-modal .one-hire-section {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 34px;
}

.one-hire-modal .one-hire-preview {
  height: min(52vh, 590px);
}

.one-hire-modal .launch-section__title {
  display: grid;
  justify-items: start;
  max-width: 840px;
  margin: 0 0 34px;
  padding-right: 50px;
  text-align: left;
}

.one-hire-modal .launch-section__title span {
  justify-self: start;
  margin: 0 0 10px;
}

.one-hire-modal .launch-section__title h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  line-height: 1.12;
  text-align: left;
}

.one-hire-modal .launch-section__title p {
  max-width: 760px;
  margin: 16px 0 0;
  text-align: left;
}

@media (max-width: 1200px) {
  .shortlistii-launch-page .reference-hero .launch-hero-v2__inner {
    grid-template-columns: 1fr;
    width: min(100%, calc(100% - 44px));
  }

  .shortlistii-launch-page .hero-visual-wrap {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .shortlistii-launch-page .hiring-team-grid,
  .shortlistii-launch-page .outcome-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shortlistii-launch-page .security-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .shortlistii-launch-page .reference-hero h1 {
    font-size: 3.18rem;
  }

  .shortlistii-launch-page .problem-grid,
  .shortlistii-launch-page .security-band .enterprise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shortlistii-launch-page .recruiter-relief-section .launch-section__title h2 {
    white-space: normal;
  }

  .shortlistii-launch-page .ats-section,
  .shortlistii-launch-page .founder-card,
  .shortlistii-launch-page .final-product-cta__inner {
    grid-template-columns: 1fr;
  }

  .shortlistii-launch-page .final-demo-form {
    justify-content: center;
  }

  .shortlistii-launch-page .founder-points {
    padding: 18px 0 0;
    border-top: 1px solid rgba(100, 175, 255, 0.14);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .shortlistii-launch-page .reference-hero {
    padding-top: 104px;
  }

  .shortlistii-launch-page .reference-hero .launch-hero-v2__inner,
  .shortlistii-launch-page .reference-hero .launch-hero-v2__copy,
  .shortlistii-launch-page .hero-visual-wrap,
  .shortlistii-launch-page .reference-hero .hero-product-shot {
    width: calc(100vw - 68px) !important;
    min-width: 0;
    max-width: calc(100vw - 68px);
  }

  .shortlistii-launch-page .reference-hero h1 {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.18;
    overflow-wrap: normal;
  }

  .shortlistii-launch-page .reference-hero h1 span {
    display: block;
    width: fit-content;
  }

  .shortlistii-launch-page .reference-hero .launch-hero-v2__copy p {
    width: 100%;
    max-width: calc(100vw - 68px);
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .shortlistii-launch-page .hero-proof-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .shortlistii-launch-page .reference-hero .launch-hero__actions,
  .shortlistii-launch-page .reference-hero .btn,
  .shortlistii-launch-page .final-demo-form .btn {
    width: 100%;
  }

  .shortlistii-launch-page .reference-hero .hero-product-shot img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
  }

  .shortlistii-launch-page .hiring-team-grid,
  .shortlistii-launch-page .problem-grid,
  .shortlistii-launch-page .outcome-grid,
  .shortlistii-launch-page .security-band .enterprise-grid {
    grid-template-columns: 1fr;
  }

  .shortlistii-launch-page .final-demo-form {
    width: 100%;
  }

  .shortlistii-launch-page .recruiter-relief-section,
  .shortlistii-launch-page .ats-section,
  .shortlistii-launch-page .outcomes-showcase,
  .shortlistii-launch-page .security-band,
  .shortlistii-launch-page .founder-section,
  .shortlistii-launch-page .dual-journey-section {
    padding: 22px;
  }

  .shortlistii-launch-page .final-product-cta {
    padding: 0;
  }

  .shortlistii-launch-page .security-hero {
    grid-template-columns: 1fr;
  }

  .shortlistii-launch-page .security-orb {
    width: 96px;
  }

  .shortlistii-launch-page .final-product-cta__inner {
    padding: 26px 20px;
  }

  .one-hire-modal {
    padding: 10px;
  }

  .one-hire-modal__dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .one-hire-modal .one-hire-section {
    padding: 20px 14px 18px;
  }

  .one-hire-modal .launch-section__title {
    padding-right: 44px;
  }

  .one-hire-modal .launch-section__title h2 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .one-hire-modal .one-hire-preview {
    height: 300px;
  }
}

/* Launch marketing pages */
.marketing-page-shell {
  background:
    radial-gradient(circle at 14% 0%, rgba(74, 142, 255, 0.18), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(111, 228, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #07101c 0%, #050b15 48%, #03060d 100%);
}

.marketing-header .legal-header__inner {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  justify-content: center;
  min-height: 82px;
}

.marketing-header .shortlistii-logo {
  justify-self: start;
}

.marketing-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
}

.marketing-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  max-width: 100%;
  padding: 5px;
  border: 1px solid rgba(111, 184, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 14, 31, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.marketing-nav a:not(.marketing-nav__cta) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #b9c8df;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.marketing-nav a:not(.marketing-nav__cta):hover,
.marketing-nav a:not(.marketing-nav__cta):focus-visible,
.marketing-nav a:not(.marketing-nav__cta)[aria-current="page"] {
  border-color: rgba(82, 213, 255, 0.28);
  background: rgba(18, 45, 82, 0.72);
  color: #f4fbff;
  box-shadow: 0 0 22px rgba(64, 196, 255, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  outline: none;
}

.marketing-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(179, 210, 255, 0.2);
  border-radius: 10px;
  background: linear-gradient(135deg, #26a4ff 0%, #237bff 58%, #40d6ff 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 36px rgba(24, 124, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.legal-nav .marketing-nav__cta:hover,
.legal-nav .marketing-nav__cta:focus-visible,
.marketing-nav__cta:hover,
.marketing-nav__cta:focus-visible {
  border-color: rgba(116, 226, 255, 0.5);
  background: linear-gradient(135deg, #26a4ff 0%, #237bff 58%, #40d6ff 100%);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(24, 124, 255, 0.36), 0 0 26px rgba(64, 214, 255, 0.16);
  outline: none;
  transform: translateY(-2px);
}

.legal-nav .marketing-nav__cta i,
.marketing-nav__cta i {
  transition: transform 220ms ease;
}

.legal-nav .marketing-nav__cta:hover i,
.legal-nav .marketing-nav__cta:focus-visible i,
.marketing-nav__cta:hover i,
.marketing-nav__cta:focus-visible i {
  transform: translateX(4px);
}

.launch-inner-main {
  display: grid;
  gap: 28px;
  padding-top: 44px;
}

.launch-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 54px) 0 clamp(12px, 2vw, 24px);
}

.launch-page-hero h1 {
  max-width: 12ch;
  margin: 14px 0 18px;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.45rem, 4.25vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.launch-page-hero p {
  max-width: 66ch;
  margin: 0;
  color: #a5b8d1;
  font-size: 1.05rem;
  line-height: 1.82;
}

.launch-page-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.launch-glass-card,
.launch-hero-window,
.launch-section-card,
.comparison-launch-card,
.founder-launch-card,
.launch-final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(132, 174, 214, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 19, 34, 0.9), rgba(7, 13, 24, 0.94));
  box-shadow:
    0 24px 48px rgba(2, 8, 20, 0.24),
    inset 0 1px 0 rgba(205, 231, 255, 0.07);
  backdrop-filter: blur(10px);
}

.launch-glass-card::before,
.launch-hero-window::before,
.launch-section-card::before,
.comparison-launch-card::before,
.founder-launch-card::before,
.launch-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 14%, rgba(107, 220, 255, 0.12), transparent 28%),
    radial-gradient(circle at 84% 86%, rgba(111, 139, 255, 0.1), transparent 30%);
  pointer-events: none;
}

.launch-glass-card {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.launch-glass-card > *,
.launch-hero-window > *,
.launch-section-card > *,
.comparison-launch-card > *,
.founder-launch-card > *,
.launch-final-cta > * {
  position: relative;
  z-index: 1;
}

.launch-card-kicker,
.launch-section-head .eyebrow {
  color: #8fdcff;
}

.launch-glass-card p {
  margin: 0;
  color: #a5b7d1;
  line-height: 1.76;
}

.launch-hero-window {
  min-height: 300px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.launch-window-bar {
  display: flex;
  gap: 8px;
}

.launch-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(140, 180, 218, 0.24);
}

.launch-window-stat {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(127, 171, 214, 0.12);
  background: rgba(11, 20, 34, 0.76);
}

.launch-window-stat span,
.launch-card-kicker,
.comparison-launch-table > div:first-child span {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-window-stat span {
  color: #8fdcff;
}

.launch-window-stat strong,
.security-window strong {
  display: block;
  margin-top: 10px;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.34;
}

.launch-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.launch-section-head h2,
.launch-final-cta h2 {
  max-width: 18ch;
  margin: 8px 0 0;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.72rem, 2.55vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.feature-grid-section {
  display: grid;
  gap: 4px;
}

.launch-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.launch-feature-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(132, 174, 214, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(11, 19, 34, 0.88), rgba(7, 13, 24, 0.94));
  box-shadow:
    0 18px 38px rgba(2, 8, 20, 0.2),
    inset 0 1px 0 rgba(205, 231, 255, 0.06);
}

.launch-feature-grid i,
.security-window i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(36, 65, 101, 0.5), rgba(14, 25, 42, 0.82));
  color: #8fdcff;
  font-size: 1.28rem;
  box-shadow:
    inset 0 1px 0 rgba(205, 231, 255, 0.08),
    0 0 0 1px rgba(132, 174, 214, 0.12);
}

.launch-feature-grid h3 {
  margin: 0 0 10px;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  line-height: 1.34;
  letter-spacing: 0;
}

.launch-feature-grid p,
.launch-final-cta p,
.security-window p {
  margin: 0;
  color: #a5b7d1;
  line-height: 1.74;
}

.launch-section-card,
.comparison-launch-card,
.launch-final-cta {
  padding: 28px;
}

.connected-workflow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.connected-workflow span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(137, 193, 255, 0.16);
  border-radius: 999px;
  background: rgba(12, 20, 34, 0.78);
  color: #dcecff;
  font-size: 0.92rem;
  font-weight: 700;
}

.connected-workflow span:not(:last-child)::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 3px;
  background: linear-gradient(90deg, rgba(111, 228, 255, 0.58), transparent);
}

.about-workflow span {
  min-height: 46px;
}

.about-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(112px, 136px));
  justify-content: center;
  gap: 18px;
  margin: 10px auto 0;
  isolation: isolate;
  overflow: visible;
}

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

.about-workflow span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 106px;
  padding: 13px 9px 11px;
  border-radius: 16px;
  text-align: center;
  line-height: 1.25;
  background:
    linear-gradient(180deg, rgba(14, 26, 45, 0.94), rgba(7, 14, 27, 0.96));
}

.about-workflow span i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111, 228, 255, 0.26);
  border-radius: 14px;
  background: rgba(8, 20, 36, 0.94);
  color: #8fdcff;
  font-size: 1.34rem;
  box-shadow: 0 0 26px rgba(69, 185, 255, 0.16);
}

.about-workflow span:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(100% + 2px);
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(111, 228, 255, 0.14), rgba(111, 228, 255, 0.92), rgba(111, 228, 255, 0.14));
  background-size: 180% 100%;
  animation: aboutWorkflowFlow 1.45s linear infinite;
}

.about-workflow span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  right: -13px;
  width: 10px;
  height: 10px;
  margin: 0;
  border-top: 2px solid rgba(111, 228, 255, 0.74);
  border-right: 2px solid rgba(111, 228, 255, 0.74);
  background: transparent;
  transform: rotate(45deg);
  z-index: 2;
}

@keyframes aboutWorkflowFlow {
  from {
    background-position: 180% 0;
  }
  to {
    background-position: 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-workflow span:not(:last-child)::before {
    animation: none;
  }
}

.about-security-grid {
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-security-grid .enterprise-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: start;
  column-gap: 12px;
  row-gap: 4px;
  padding: 18px;
}

.about-security-grid .enterprise-card i {
  grid-row: 1 / span 2;
  align-self: center;
  border-radius: 8px;
}

.about-security-grid .enterprise-card h3 {
  margin: 0 0 4px;
}

.about-security-grid .enterprise-card p {
  grid-column: 2;
  margin: 0;
}

.comparison-launch-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(132, 174, 214, 0.14);
  border-radius: 22px;
  background: rgba(6, 12, 22, 0.48);
}

.comparison-launch-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-launch-table > div + div {
  border-top: 1px solid rgba(132, 174, 214, 0.1);
}

.comparison-launch-table span,
.comparison-launch-table p {
  margin: 0;
  padding: 16px 18px;
}

.comparison-launch-table span {
  color: #8fdcff;
  background: rgba(12, 20, 34, 0.82);
}

.comparison-launch-table span + span,
.comparison-launch-table p + p {
  border-left: 1px solid rgba(132, 174, 214, 0.1);
}

.comparison-launch-table p {
  color: #a5b7d1;
  line-height: 1.62;
}

.comparison-launch-table p + p {
  color: #eef5ff;
  font-weight: 700;
}

.founder-launch-card {
  padding: 28px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.founder-launch-avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  border: 1px solid rgba(137, 193, 255, 0.2);
  background: linear-gradient(180deg, rgba(36, 65, 101, 0.58), rgba(14, 25, 42, 0.9));
  color: #eaf6ff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.founder-launch-card blockquote {
  margin: 0;
}

.founder-launch-card q {
  display: block;
  margin-top: 10px;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  line-height: 1.36;
}

.founder-launch-card cite {
  display: block;
  margin-top: 14px;
  color: #8fdcff;
  font-style: normal;
  font-weight: 800;
}

.launch-final-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.security-window {
  align-content: center;
}

.section-kicker__icon i {
  font-size: 1rem;
}

.platform-page-shell .launch-window-bar span:nth-child(1),
.aligned-marketing-page-shell .launch-window-bar span:nth-child(1) {
  background: #28c840;
  box-shadow: 0 0 14px rgba(40, 200, 64, 0.3);
}

.platform-page-shell .launch-window-bar span:nth-child(2),
.aligned-marketing-page-shell .launch-window-bar span:nth-child(2) {
  background: #ff5f57;
  box-shadow: 0 0 14px rgba(255, 95, 87, 0.32);
}

.platform-page-shell .launch-window-bar span:nth-child(3),
.aligned-marketing-page-shell .launch-window-bar span:nth-child(3) {
  background: #ffbd2e;
  box-shadow: 0 0 14px rgba(255, 189, 46, 0.3);
}

.platform-page-shell .launch-hero-window,
.aligned-marketing-page-shell .launch-hero-window {
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
}

.platform-page-shell .launch-window-stat,
.aligned-marketing-page-shell .launch-window-stat {
  align-self: center;
  text-align: center;
}

.aligned-marketing-page-shell .launch-window-stat p {
  margin: 12px 0 0;
  color: #a5b7d1;
  line-height: 1.72;
}

.aligned-marketing-page-shell .security-window .launch-window-stat i {
  margin: 0 auto 16px;
}

.platform-page-shell .feature-grid-section .launch-section-head,
.platform-page-shell .launch-section-card .launch-section-head,
.aligned-marketing-page-shell .feature-grid-section .launch-section-head,
.aligned-marketing-page-shell .launch-section-card .launch-section-head,
.aligned-marketing-page-shell .comparison-launch-card .launch-section-head {
  display: grid;
  justify-items: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.platform-page-shell .feature-grid-section .launch-section-head .eyebrow,
.platform-page-shell .launch-section-card .launch-section-head .eyebrow,
.platform-page-shell .feature-grid-section .launch-section-head h2,
.platform-page-shell .launch-section-card .launch-section-head h2,
.aligned-marketing-page-shell .feature-grid-section .launch-section-head .eyebrow,
.aligned-marketing-page-shell .launch-section-card .launch-section-head .eyebrow,
.aligned-marketing-page-shell .comparison-launch-card .launch-section-head .eyebrow,
.aligned-marketing-page-shell .feature-grid-section .launch-section-head h2,
.aligned-marketing-page-shell .launch-section-card .launch-section-head h2,
.aligned-marketing-page-shell .comparison-launch-card .launch-section-head h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 22ch;
  text-align: center;
}

.platform-page-shell .launch-feature-grid article,
.aligned-marketing-page-shell .launch-feature-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 6px;
  align-content: start;
}

.platform-page-shell .launch-feature-grid i,
.aligned-marketing-page-shell .launch-feature-grid i {
  grid-row: 1 / span 2;
  align-self: start;
  margin-bottom: 0;
}

.platform-page-shell .launch-feature-grid h3,
.platform-page-shell .launch-feature-grid p,
.aligned-marketing-page-shell .launch-feature-grid h3,
.aligned-marketing-page-shell .launch-feature-grid p {
  min-width: 0;
}

.platform-page-shell .launch-feature-grid p,
.aligned-marketing-page-shell .launch-feature-grid p {
  grid-column: 2;
}

@media (max-width: 1100px) {
  .marketing-header .legal-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 14px 0;
  }

  .marketing-header .shortlistii-logo,
  .marketing-nav,
  .marketing-header__actions {
    justify-self: center;
  }

  .marketing-nav {
    width: fit-content;
    max-width: 100%;
  }

  .launch-page-hero {
    grid-template-columns: 1fr;
  }

  .launch-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launch-page-hero h1,
  .launch-section-head h2,
  .launch-final-cta h2 {
    max-width: none;
  }

  .launch-section-head,
  .launch-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .marketing-nav {
    width: 100%;
    border-radius: 22px;
  }

  .marketing-nav a:not(.marketing-nav__cta) {
    flex: 1 1 calc(50% - 6px);
  }

  .legal-nav .marketing-nav__cta {
    width: 100%;
    justify-content: center;
  }

  .marketing-header__actions,
  .marketing-header__actions .marketing-nav__cta {
    width: 100%;
    justify-content: center;
  }

  .launch-inner-main {
    gap: 22px;
    padding-top: 28px;
  }

  .launch-page-hero {
    gap: 22px;
    padding-top: 8px;
  }

  .launch-page-hero h1 {
    font-size: clamp(2.15rem, 9vw, 3.25rem);
  }

  .launch-glass-card,
  .launch-hero-window,
  .launch-section-card,
  .comparison-launch-card,
  .founder-launch-card,
  .launch-final-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .launch-feature-grid {
    grid-template-columns: 1fr;
  }

  .launch-feature-grid article {
    min-height: auto;
  }

  .connected-workflow {
    display: grid;
  }

  .connected-workflow span {
    width: 100%;
    justify-content: space-between;
    border-radius: 18px;
  }

  .connected-workflow span:not(:last-child)::after {
    width: 24px;
  }

  .comparison-launch-table > div {
    grid-template-columns: 1fr;
  }

  .comparison-launch-table span + span,
  .comparison-launch-table p + p {
    border-left: 0;
    border-top: 1px solid rgba(132, 174, 214, 0.1);
  }

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

  .launch-page-actions .btn,
  .launch-final-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .platform-page-shell .launch-feature-grid article,
  .aligned-marketing-page-shell .launch-feature-grid article {
    grid-template-columns: 40px minmax(0, 1fr);
  }
}

@media (max-width: 920px) {
  .shortlistii-launch-page .founder-section {
    min-height: auto;
  }

  .shortlistii-launch-page .founder-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .shortlistii-launch-page .founder-card__content {
    max-width: none;
    padding: 38px 32px 32px;
  }

  .shortlistii-launch-page .founder-portrait {
    position: absolute;
    inset: 0;
    min-height: 0;
    opacity: 1;
  }

  .shortlistii-launch-page .founder-section::after {
    right: 50%;
    top: auto;
    bottom: 18px;
    width: 320px;
    height: 320px;
    transform: translateX(50%);
  }

  .about-workflow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-workflow::before,
  .about-workflow span:not(:last-child)::before,
  .about-workflow span:not(:last-child)::after {
    display: none;
  }

  .about-security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .shortlistii-launch-page .founder-section {
    padding: 0;
  }

  .shortlistii-launch-page .founder-card__content {
    padding: 32px 22px;
  }

  .shortlistii-launch-page .founder-avatar {
    width: 74px;
    height: 74px;
    margin-bottom: 22px;
  }

  .shortlistii-launch-page .founder-avatar i {
    font-size: 2rem;
  }

  .shortlistii-launch-page .founder-card blockquote span {
    margin-bottom: 18px;
    font-size: 0.84rem;
  }

  .shortlistii-launch-page .founder-card blockquote p {
    margin-bottom: 20px;
    font-size: clamp(1.72rem, 8vw, 2.35rem);
  }

  .shortlistii-launch-page .founder-portrait {
    opacity: 1;
  }

  .shortlistii-launch-page .founder-portrait img {
    object-position: 68% 50%;
  }

  .about-workflow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-workflow span {
    min-height: 74px;
    grid-template-columns: 52px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    align-content: center;
    text-align: left;
    padding: 12px 14px;
  }

  .about-workflow span i {
    width: 46px;
    height: 46px;
  }

  .about-security-grid {
    grid-template-columns: 1fr;
  }
}
