: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-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);
}

.contact-panel::before,
.contact-hero__visual::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;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: 28px;
  align-items: center;
}

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

.contact-hero__copy h1 {
  margin: 14px 0 18px;
  max-width: 11ch;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.55rem, 4.1vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.048em;
}

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

.contact-hero__chips {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hero__chips 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);
}

.contact-hero__visual {
  position: relative;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(132, 174, 214, 0.16);
  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);
}

.contact-hero__window {
  position: relative;
  z-index: 2;
  padding: 18px;
  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);
}

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

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

.contact-hero__window-head {
  margin-top: 16px;
  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 {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-signal-card {
  padding: 16px;
  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);
}

.contact-signal-card--wide {
  grid-column: 1 / -1;
}

.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 strong,
.contact-company-card strong {
  display: block;
  margin-top: 10px;
  color: #eef5ff;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  line-height: 1.36;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1fr);
  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: 16ch;
}

.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: 20px;
}

.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.92rem;
  font-weight: 600;
}

.contact-input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(137, 193, 255, 0.14);
  border-radius: 14px;
  background: rgba(8, 15, 27, 0.92);
  color: #eef5ff;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.contact-input:focus {
  outline: none;
  border-color: rgba(111, 228, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(111, 228, 255, 0.12);
}

.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: 20px;
  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;
  line-height: 1.7;
}

.contact-submit-btn {
  position: relative;
  min-width: 170px;
  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-hero,
  .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,
  .contact-hero__visual {
    padding: 22px;
  }

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

  .contact-hero__window-head,
  .contact-form__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-hero__signals,
  .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;
  }
}
