:root {
  color-scheme: dark;
  --color-bg: #0A0A0A;
  --color-surface: #161618;
  --color-surface-raised: #1C1C1F;
  --color-text: #FAFAFA;
  --color-text-muted: #A1A1AA;
  --color-brand-start: #A855F7;
  --color-brand-light: #A7A5FF;
  --color-brand: #7770FF;
  --color-brand-strong: #4A45FF;
  --color-brand-end: #3478FF;
  --color-success: #7EE2A8;
  --color-warning: #FFCF8A;
  --color-danger: #FF9A9A;
  --color-info: #7FB8FF;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.16);
  --color-overlay: rgba(255, 255, 255, 0.04);
  --color-overlay-strong: rgba(255, 255, 255, 0.08);
  --font-display: "Inter Tight", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter Tight", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-3xs: 0.5rem;
  --text-2xs: 0.625rem;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.75rem;
  --text-4xl: 2rem;
  --display-xs: clamp(1.75rem, 2.6vw, 2rem);
  --display-md: clamp(2.25rem, 4vw, 2.875rem);
  --display-lg: clamp(2.625rem, 7.5vw, 3.375rem);
  --display-xl: clamp(3rem, 4.4vw, 4.5rem);
  --radius-md: 12px;
  --radius-pill: 999px;
  --duration-standard: 300ms;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  margin-block: 0;
  font-family: var(--font-display);
  line-height: 1.15;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

body.has-locked-scroll {
  overflow: hidden;
}

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

:focus-visible {
  outline: 2px solid var(--color-brand-light);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 8px 16px;
  border: 1px solid var(--color-border-hover);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 650;
  transform: translateY(-160%);
  transition: transform var(--duration-standard) var(--ease-premium);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: clamp(760px, 100svh, 940px);
  padding-top: 80px;
  overflow: hidden;
  color: var(--color-text);
  background: var(--color-bg);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(
    ellipse 44% 32% at 52% 79%,
    rgba(91, 84, 255, 0.2),
    rgba(89, 121, 255, 0.08) 42%,
    transparent 72%
  );
  content: "";
  opacity: 0.55;
  pointer-events: none;
  animation: glow-breathe 8s var(--ease-premium) infinite;
}

.hero::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero__art {
  position: absolute;
  z-index: -3;
  right: 0;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  will-change: transform;
}

.hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(73, 82, 152, 0.1),
      transparent 37%
    ),
    linear-gradient(
      180deg,
      rgba(4, 5, 8, 0.97) 0%,
      rgba(5, 6, 10, 0.88) 19%,
      rgba(8, 9, 16, 0.45) 43%,
      rgba(6, 8, 15, 0.04) 69%
    );
  pointer-events: none;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(896px, calc(100% - 48px));
  padding: 16px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translate(-50%, 0);
}

.brand {
  display: block;
  width: 160px;
  height: 36px;
  flex-shrink: 0;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
  transform: translateY(-22.8%);
}

.nav-links {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 8px;
}

.nav-links a {
  position: relative;
  padding: 8px 16px;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color var(--duration-standard) var(--ease-premium);
}

.nav-links a::after {
  position: absolute;
  right: 14px;
  bottom: 3px;
  left: 14px;
  height: 1px;
  background: var(--color-brand-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-standard) var(--ease-premium);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 16px;
}

.nav-links__cta {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: transform var(--duration-standard) var(--ease-premium),
    background-position var(--duration-standard) var(--ease-premium),
    background-color var(--duration-standard) var(--ease-premium),
    border-color var(--duration-standard) var(--ease-premium),
    color var(--duration-standard) var(--ease-premium);
}

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

.button:focus-visible,
.menu-toggle:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--color-brand-light);
  outline-offset: 4px;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: min(880px, calc(100% - 40px));
  margin: 56px auto 0;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--display-xl);
  font-weight: 560;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-line-mask {
  display: block;
  overflow: hidden;
}

.hero-line {
  display: inline-block;
  color: var(--color-text);
  will-change: transform, opacity;
}

.hero-line--accent {
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(90deg, var(--color-brand-start) 0%, var(--color-brand) 48%, var(--color-brand-end) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__copy {
  width: min(660px, 100%);
  margin-top: 24px;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.hero__copy p {
  margin: 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.hero__actions .button {
  height: 50px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  transition: transform var(--duration-standard) var(--ease-premium);
}

.hero__actions .button:hover {
  transform: scale(1.05);
}

.button--primary {
  min-width: 154px;
  color: var(--color-text);
  background: linear-gradient(110deg, var(--color-brand-start) 0%, var(--color-brand-strong) 48%, var(--color-brand-end) 100%);
  background-position: 0 50%;
  background-size: 180% 180%;
}

.button--primary:hover {
  background-position: 100% 50%;
}

.button--white {
  min-width: 154px;
  color: var(--color-surface-raised);
  background: var(--color-text);
}

.button--white:hover {
  transform: translateY(-2px) scale(1.02);
}

.nav-cta {
  flex: 0 0 auto;
  min-width: 0;
  height: 38px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-overlay);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 8px auto;
  background: currentColor;
  transition: transform var(--duration-standard) var(--ease-premium),
    opacity var(--duration-standard) var(--ease-premium);
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.035);
  }
}

@media (max-width: 1020px) {
  .nav-links {
    gap: 0;
  }

  .hero__content {
    margin-top: 56px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 780px;
    height: 100svh;
    max-height: none;
    padding-top: 72px;
  }

  .site-header {
    padding: 8px 16px;
  }

  .brand {
    width: 150px;
    height: 34px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    z-index: 60;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 8px;
    padding: 16px;
    visibility: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(10, 10, 10, 0.92);
    opacity: 0;
    transform: translateY(-8px);
    backdrop-filter: blur(16px);
    transition: opacity var(--duration-standard) var(--ease-premium),
      transform var(--duration-standard) var(--ease-premium),
      visibility var(--duration-standard) var(--ease-premium);
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 8px 16px;
    text-align: left;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-links__cta {
    display: block;
    margin-top: 8px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: linear-gradient(110deg, var(--color-brand-start) 0%, var(--color-brand-strong) 48%, var(--color-brand-end) 100%);
    color: var(--color-text);
    font-weight: 600;
    text-align: center;
  }

  .hero__content {
    width: min(680px, calc(100% - 44px));
    margin-top: 56px;
  }

  .hero h1 {
    font-size: var(--display-lg);
  }

  .hero__copy {
    font-size: var(--text-lg);
  }

  .hero__art {
    bottom: -70px;
    object-position: 54% center;
  }

}

@media (max-width: 560px) {
  .hero {
    min-height: 750px;
    padding-top: 64px;
  }

  .site-header {
    padding: 8px 16px;
  }

  .brand {
    width: 132px;
    height: 32px;
  }

  .hero__shade {
    background:
      linear-gradient(
        180deg,
        rgba(4, 5, 8, 0.98) 0%,
        rgba(5, 6, 10, 0.91) 34%,
        rgba(8, 9, 16, 0.47) 58%,
        rgba(6, 8, 15, 0.03) 82%
      );
  }

  .hero__content {
    width: calc(100% - 32px);
    margin-top: 48px;
  }

  .hero h1 {
    font-size: var(--display-md);
    line-height: 1.1;
  }

  .hero__copy {
    margin-top: 24px;
    font-size: var(--text-base);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    margin-top: 24px;
  }

  .button--primary {
    width: min(270px, 100%);
  }

  .hero__art {
    bottom: -52px;
    object-position: 56% center;
  }

}

.trust-strip {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 72px;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
  padding: 16px 0;
}

.trust-strip__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  width: 100%;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  color: var(--color-text-muted);
  font-size: var(--text-base);
  font-weight: 510;
  line-height: 1.5;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.trust-strip__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--color-brand-light);
}

.trust-strip__check svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .trust-strip__inner {
    width: min(720px, calc(100% - 48px));
    padding: 24px 0;
  }

  .trust-strip__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .trust-strip__item {
    font-size: var(--text-base);
    white-space: normal;
    text-align: center;
  }

  .trust-strip__item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .trust-strip__inner {
    width: calc(100% - 40px);
    padding: 32px 0;
  }

  .trust-strip__items {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-strip__item {
    grid-column: auto;
    justify-content: flex-start;
    width: min(290px, 100%);
    margin: 0 auto;
    text-align: left;
  }

  .trust-strip__item:last-child {
    grid-column: auto;
  }
}

.insights {
  width: 100%;
  height: 854px;
  overflow: hidden;
  color: var(--color-text);
  background: var(--color-bg);
}

.insights__inner {
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
  padding-top: 128px;
}

.insights__header {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.insights__heading {
  max-width: 720px;
}

.insights__eyebrow {
  margin: 0 0 8px;
  color: var(--color-brand-light);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.insights h2 {
  margin: 0;
  color: var(--color-text);
  font-size: var(--display-md);
  font-weight: 520;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.insights__subheading {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-base);
  font-weight: 430;
  line-height: 1.6;
  letter-spacing: -0.025em;
}

.insights__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin-top: 40px;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.insights__cards::-webkit-scrollbar {
  display: none;
}

.insight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 32px) / 3);
  height: 444px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  scroll-snap-align: start;
  transition: border-color var(--duration-standard) var(--ease-premium),
    transform var(--duration-standard) var(--ease-premium);
}

.insight-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.insight-card__text {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.insight-card h3 {
  margin: 0;
  font-size: var(--text-2xl);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.insight-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--text-base);
  font-weight: 430;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.insight-card__visual {
  position: relative;
  z-index: 1;
  margin-top: auto;
  margin-left: auto;
  width: 82%;
  height: 280px;
}

.insight-card__visual-glow {
  position: absolute;
  z-index: 0;
  inset: -35%;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.55), transparent 62%);
  filter: blur(30px);
  opacity: 0.85;
  pointer-events: none;
  transition: opacity var(--duration-standard) var(--ease-premium);
}

.insight-card:nth-child(2) .insight-card__visual-glow {
  background: radial-gradient(circle, rgba(92, 139, 255, 0.5), transparent 62%);
}

.insight-card:nth-child(3) .insight-card__visual-glow {
  background: radial-gradient(circle, rgba(217, 114, 184, 0.5), transparent 62%);
}

.insight-card:hover .insight-card__visual-glow {
  opacity: 1;
}

.insight-card__visual-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
}

@media (max-width: 980px) {
  .insights {
    height: auto;
    min-height: 740px;
    padding-bottom: 64px;
  }

  .insights__inner {
    width: calc(100% - 64px);
  }

  .insight-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 680px) {
  .insights {
    min-height: 725px;
    padding-bottom: 56px;
  }

  .insights__inner {
    width: calc(100% - 40px);
    padding-top: 120px;
  }

  .insights__header {
    align-items: flex-start;
    gap: 24px;
  }

  .insights h2 {
    font-size: var(--display-md);
  }

  .insights__subheading {
    font-size: var(--text-base);
  }

  .insights__cards {
    flex-wrap: nowrap;
    margin-top: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .insight-card {
    flex-basis: 88%;
    height: 524px;
    border-radius: var(--radius-md);
  }

  .insight-card__text {
    padding: 32px;
  }

  .insight-card h3 {
    font-size: var(--text-2xl);
  }

  .insight-card__visual {
    height: 320px;
  }
}

.feature-grid {
  position: relative;
  width: 100%;
  padding: 160px 0 120px;
  color: var(--color-text);
  background: var(--color-bg);
}

.feature-grid__inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
}

.feature-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.feature-col--a {
  grid-column: span 3;
  padding-top: 32px;
}

.feature-grid__intro {
  margin-bottom: 32px;
}

.feature-grid__eyebrow {
  margin: 0 0 8px;
  color: var(--color-brand-light);
  font-size: var(--text-sm);
  font-weight: 620;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.feature-grid__intro h2 {
  margin: 0;
  color: var(--color-text);
  font-size: var(--display-xs);
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.feature-grid__subheading {
  margin: 16px 0 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 440;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.feature-col--bc {
  grid-column: span 3;
  gap: 24px;
  justify-content: flex-end;
}

.feature-col--de {
  grid-column: span 6;
  gap: 24px;
  padding-top: 32px;
}

.feature-card--a {
  margin-top: auto;
}

.feature-card {
  position: relative;
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: transform var(--duration-standard) var(--ease-premium),
    border-color var(--duration-standard) var(--ease-premium);
}

.feature-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
}

.feature-card h3 {
  margin: 16px 0 0;
  color: var(--color-text);
  font-size: var(--text-2xl);
  font-weight: 640;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 8px 0 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 440;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card__icon--orange {
  color: var(--color-warning);
  background: rgba(249, 115, 22, 0.1);
}

.feature-card__icon--blue {
  color: var(--color-info);
  background: rgba(14, 165, 233, 0.1);
}

.feature-card__icon--pink {
  color: var(--color-brand-start);
  background: rgba(236, 72, 153, 0.1);
}

.feature-card__icon--purple {
  color: var(--color-brand-start);
  background: rgba(124, 58, 237, 0.12);
}

.feature-card--d,
.feature-card--e {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px;
}

.feature-card__main {
  flex: 0 0 210px;
  min-width: 0;
}

.transcript-panel,
.transcript-window {
  flex: 1 1 auto;
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-raised);
}

.transcript-panel__header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.transcript-panel__avatar {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
}

.transcript-panel__avatar--ai {
  background: var(--color-brand-end);
}

.transcript-panel__header strong {
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 650;
}

.transcript-panel__text {
  margin: 16px 0 0;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 440;
  line-height: 1.6;
}

.transcript-panel__link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-overlay);
  color: var(--color-text);
  font-size: var(--text-xs);
  font-weight: 560;
}

.transcript-panel__wave {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.transcript-panel__wave i {
  display: block;
  width: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-brand-end);
}

.transcript-panel__wave i:nth-child(1) {
  height: 8px;
}

.transcript-panel__wave i:nth-child(2) {
  height: 14px;
}

.transcript-panel__wave i:nth-child(3) {
  height: 20px;
}

.transcript-panel__wave i:nth-child(4) {
  height: 12px;
}

.transcript-panel__wave i:nth-child(5) {
  height: 6px;
}

.transcript-window__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.transcript-window__play {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--color-surface-raised);
  color: var(--color-text);
  cursor: default;
}

.transcript-window__play svg {
  width: 12px;
  height: 12px;
  margin-left: 8px;
}

.transcript-window__wave {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.transcript-window__wave i {
  display: block;
  width: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--color-brand), var(--color-brand-end));
}

.transcript-window__wave i:nth-child(1) { height: 8px; }
.transcript-window__wave i:nth-child(2) { height: 16px; }
.transcript-window__wave i:nth-child(3) { height: 22px; }
.transcript-window__wave i:nth-child(4) { height: 10px; }
.transcript-window__wave i:nth-child(5) { height: 18px; }
.transcript-window__wave i:nth-child(6) { height: 24px; }
.transcript-window__wave i:nth-child(7) { height: 12px; }
.transcript-window__wave i:nth-child(8) { height: 20px; }
.transcript-window__wave i:nth-child(9) { height: 9px; }
.transcript-window__wave i:nth-child(10) { height: 15px; }

.transcript-window__list {
  display: grid;
  gap: 16px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.transcript-window__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.transcript-window__avatar {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-text);
  object-fit: cover;
}

.transcript-window__avatar--ai {
  background: var(--color-brand-end);
}

.transcript-window__list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: var(--text-xs);
  font-weight: 650;
}

.transcript-window__list p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 440;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .feature-card--d,
  .feature-card--e {
    flex-direction: column;
  }

  .feature-card__main {
    flex-basis: auto;
  }
}

@media (max-width: 900px) {
  .feature-grid__inner {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: calc(100% - 64px);
  }

  .feature-col--a,
  .feature-col--bc {
    grid-column: span 3;
    padding-top: 0;
    justify-content: flex-start;
  }

  .feature-col--de {
    grid-column: span 6;
    padding-top: 0;
  }

  .feature-card--a {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .feature-grid {
    padding: 64px 0 72px;
  }

  .feature-grid__inner {
    display: flex;
    flex-direction: column;
    width: calc(100% - 40px);
    gap: 16px;
  }

  .feature-card,
  .feature-card--d,
  .feature-card--e {
    padding: 32px;
  }
}

.how-it-works {
  position: relative;
  width: 100%;
  padding: 120px 0;
  color: var(--color-text);
  background: var(--color-bg);
}

.how-it-works__inner {
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
}

.how-it-works__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 72px;
}

.how-it-works__header h2 {
  margin: 0;
  max-width: 640px;
  font-size: var(--display-md);
  font-weight: 640;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.how-it-works__header p {
  max-width: 600px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-base);
  font-weight: 440;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.how-it-works__header .button {
  flex-shrink: 0;
  margin-top: 8px;
  padding: 0 24px;
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.how-step {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.how-step__label {
  position: relative;
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 16px;
  padding-bottom: 8px;
  color: var(--color-brand-light);
  font-size: var(--text-sm);
  font-weight: 620;
  letter-spacing: -0.01em;
}

.how-step__label::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 26px;
  height: 2px;
  border-radius: var(--radius-md);
  background: var(--color-brand-light);
  content: "";
}

.how-step h3 {
  margin: 0 0 16px;
  font-size: var(--text-2xl);
  font-weight: 620;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.how-step > p {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--text-sm);
  font-weight: 430;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.how-step__visual {
  position: relative;
  height: 480px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

/* Step 1 — upload waveform */
.how-step__visual--upload {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 40% 55%, rgba(168, 110, 255, 0.5), transparent 50%),
    radial-gradient(circle at 60% 42%, rgba(255, 130, 110, 0.32), transparent 45%),
    radial-gradient(circle at 52% 62%, rgba(255, 110, 180, 0.3), transparent 45%),
    var(--color-surface-raised);
}

.upload-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0 24px;
}

.upload-wave__bars {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  height: 130px;
}

.upload-wave__bars i {
  display: block;
  flex: 1 1 auto;
  min-width: 2px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.55);
}

.upload-wave__bars--left i:nth-child(1) { height: 20%; }
.upload-wave__bars--left i:nth-child(2) { height: 42%; }
.upload-wave__bars--left i:nth-child(3) { height: 30%; }
.upload-wave__bars--left i:nth-child(4) { height: 62%; }
.upload-wave__bars--left i:nth-child(5) { height: 40%; }
.upload-wave__bars--left i:nth-child(6) { height: 78%; }
.upload-wave__bars--left i:nth-child(7) { height: 52%; }
.upload-wave__bars--left i:nth-child(8) { height: 88%; }
.upload-wave__bars--left i:nth-child(9) { height: 60%; }
.upload-wave__bars--left i:nth-child(10) { height: 96%; }
.upload-wave__bars--left i:nth-child(11) { height: 72%; }
.upload-wave__bars--left i:nth-child(12) { height: 100%; opacity: 0.85; }

.upload-wave__bars--right i:nth-child(1) { height: 100%; opacity: 0.85; }
.upload-wave__bars--right i:nth-child(2) { height: 72%; }
.upload-wave__bars--right i:nth-child(3) { height: 96%; }
.upload-wave__bars--right i:nth-child(4) { height: 60%; }
.upload-wave__bars--right i:nth-child(5) { height: 88%; }
.upload-wave__bars--right i:nth-child(6) { height: 52%; }
.upload-wave__bars--right i:nth-child(7) { height: 78%; }
.upload-wave__bars--right i:nth-child(8) { height: 40%; }
.upload-wave__bars--right i:nth-child(9) { height: 62%; }
.upload-wave__bars--right i:nth-child(10) { height: 30%; }
.upload-wave__bars--right i:nth-child(11) { height: 42%; }
.upload-wave__bars--right i:nth-child(12) { height: 20%; }

.upload-wave__button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: var(--color-surface-raised);
  color: var(--color-text);
}

.upload-wave__button svg {
  width: 38px;
  height: 38px;
}

/* Step 2 — call card */
.how-step__visual--call {
  padding: 32px;
}

.call-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.call-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.call-card__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-brand), var(--color-brand-strong));
  color: var(--color-text);
}

.call-card__icon svg {
  width: 18px;
  height: 18px;
}

.call-card__top > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.call-card__top strong {
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 620;
}

.call-card__top span {
  color: var(--color-brand-light);
  font-size: var(--text-xs);
  font-weight: 500;
}

.call-card__wave {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.call-card__wave i {
  display: block;
  width: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--color-brand), var(--color-brand-start));
}

.call-card__wave i:nth-child(1) { height: 6px; }
.call-card__wave i:nth-child(2) { height: 14px; }
.call-card__wave i:nth-child(3) { height: 22px; }
.call-card__wave i:nth-child(4) { height: 10px; }
.call-card__wave i:nth-child(5) { height: 18px; }
.call-card__wave i:nth-child(6) { height: 26px; }
.call-card__wave i:nth-child(7) { height: 12px; }
.call-card__wave i:nth-child(8) { height: 20px; }
.call-card__wave i:nth-child(9) { height: 8px; }
.call-card__wave i:nth-child(10) { height: 24px; }
.call-card__wave i:nth-child(11) { height: 14px; }
.call-card__wave i:nth-child(12) { height: 19px; }
.call-card__wave i:nth-child(13) { height: 9px; }
.call-card__wave i:nth-child(14) { height: 16px; }

.call-card__center {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
}

.call-card__pulse {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(139, 124, 255, 0.35);
  border-radius: 50%;
}

.call-card__pulse::before,
.call-card__pulse::after {
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(139, 124, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.call-card__pulse::after {
  inset: -60px;
  border-color: rgba(139, 124, 255, 0.1);
}

.call-card__avatar {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-brand), var(--color-brand-strong));
  color: var(--color-text);
  font-size: var(--text-3xl);
  font-weight: 700;
}

.call-card__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--color-overlay);
}

.call-card__control {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  cursor: default;
}

.call-card__control svg {
  width: 19px;
  height: 19px;
}

.call-card__control--end {
  background: var(--color-danger);
}

.call-card__control--end svg {
  transform: rotate(135deg);
}

.call-card__dialpad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.call-card__dialpad i {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

/* Step 3 — candidates card */
.how-step__visual--candidates {
  padding: 32px;
}

.candidates-card h4 {
  margin: 0 0 16px;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 640;
}

.candidates-card__list {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.candidates-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px;
  border-radius: var(--radius-md);
  background: var(--color-overlay);
}

.candidates-card__avatar {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.candidates-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  margin-right: auto;
}

.candidates-card__info strong {
  color: var(--color-text);
  font-size: var(--text-xs);
  font-weight: 620;
}

.candidates-card__info span {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
}

.candidates-card__score {
  flex-shrink: 0;
  padding: 8px 8px;
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 700;
}

.candidates-card__score--high {
  color: var(--color-success);
  background: rgba(73, 202, 123, 0.16);
}

.candidates-card__score--mid {
  color: var(--color-warning);
  background: rgba(255, 180, 60, 0.16);
}

.candidates-card__btn {
  flex-shrink: 0;
  padding: 8px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-overlay);
  color: var(--color-text);
  font-size: var(--text-xs);
  font-weight: 560;
}

.candidates-card__insights {
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.candidates-card__insights > p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  font-weight: 560;
}

.candidates-card__chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.candidates-card__chip {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px;
  border-radius: var(--radius-md);
  background: var(--color-overlay);
}

.candidates-card__chip-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.candidates-card__chip-icon svg {
  width: 11px;
  height: 11px;
}

.candidates-card__chip-icon--green {
  color: var(--color-success);
  background: rgba(73, 202, 123, 0.16);
}

.candidates-card__chip-icon--blue {
  color: var(--color-info);
  background: rgba(92, 139, 255, 0.16);
}

.candidates-card__chip-icon--red {
  color: var(--color-danger);
  background: rgba(255, 90, 90, 0.16);
}

.candidates-card__chip > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.candidates-card__chip strong {
  color: var(--color-text);
  font-size: var(--text-2xs);
  font-weight: 640;
}

.candidates-card__chip span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-2xs);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.candidates-card__recommendation {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--color-success);
  font-size: var(--text-sm);
  font-weight: 620;
}

.candidates-card__recommendation svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .how-it-works__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .how-step:last-child {
    grid-column: span 2;
  }

  .how-step__visual--candidates {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .how-it-works {
    padding: 72px 0;
  }

  .how-it-works__inner {
    width: calc(100% - 40px);
  }

  .how-it-works__header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
  }

  .how-it-works__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-step:last-child {
    grid-column: auto;
  }

  .how-step__visual--candidates {
    max-width: none;
  }

  .how-step__visual {
    height: 420px;
  }
}

.recruiter-dashboard {
  width: 100%;
  min-height: 940px;
  color: var(--color-text);
  background:
    radial-gradient(circle at 76% 49%, rgba(93, 82, 255, 0.12), transparent 31%),
    var(--color-bg);
}

.recruiter-dashboard__inner {
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
  padding: 128px 0 128px;
}

.recruiter-dashboard__heading {
  max-width: 760px;
}

.recruiter-dashboard__eyebrow {
  margin: 0 0 8px;
  color: var(--color-brand);
  font-size: var(--text-sm);
  font-weight: 570;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.recruiter-dashboard__heading h2 {
  margin: 0;
  font-size: var(--display-md);
  font-weight: 520;
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.recruiter-dashboard__heading > p:last-child {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-base);
  font-weight: 420;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.recruiter-dashboard__layout {
  display: grid;
  grid-template-columns: minmax(0, 35fr) minmax(0, 65fr);
  align-items: start;
  gap: 32px;
  margin-top: 40px;
}

.dashboard-steps {
  display: flex;
  flex-direction: column;
}

.dashboard-step {
  appearance: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 70vh;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 24px;
  color: inherit;
  text-align: left;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity var(--duration-standard) var(--ease-premium),
    border-color var(--duration-standard) var(--ease-premium);
}

.dashboard-step.is-active {
  border-color: var(--color-brand);
  opacity: 1;
}

/* The first item sits at the natural top of the track (matching the
   sticky visual's fixed top offset) instead of being vertically centered
   in a tall min-height block — otherwise it starts lower than the
   dashboard image on initial view. The bottom padding restores scroll
   distance before the next item activates, since it no longer has the
   70vh min-height the rest of the track uses. */
.dashboard-step:first-child {
  justify-content: flex-start;
  min-height: 0;
  padding-top: 96px;
  padding-bottom: 40vh;
}

/* The last item keeps the standard centered/tall treatment but adds a
   large trailing buffer so the grid's containing block stays tall enough
   for the sticky visual to remain pinned until the user has fully
   scrolled past this item, instead of releasing early. */
.dashboard-step:last-child {
  padding-bottom: 75vh;
}

.dashboard-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--color-brand-strong), var(--color-brand));
  font-size: var(--text-xs);
}

.dashboard-step__title {
  display: block;
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-lg);
  font-weight: 550;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.dashboard-step__description {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--text-sm);
  font-weight: 420;
  line-height: 1.5;
  letter-spacing: -0.02em;
  opacity: 0;
  transition: max-height var(--duration-standard) var(--ease-premium),
    margin-top var(--duration-standard) var(--ease-premium),
    opacity var(--duration-standard) var(--ease-premium);
}

.dashboard-step.is-active .dashboard-step__description {
  max-height: 160px;
  margin-top: 8px;
  opacity: 1;
}

.dashboard-step__description strong {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}

.dashboard-visual {
  position: sticky;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 96px;
  margin: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.dashboard-visual__canvas {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 600px;
  height: 446px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transform: scale(var(--visual-scale, 1));
  transform-origin: top center;
}

.dashboard-visual__topbar {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 190px 34px;
  align-items: center;
  gap: 16px;
  height: 54px;
  padding: 0 16px;
  border-bottom: 1px solid var(--color-border);
  background: rgba(12, 13, 20, 0.92);
}

.dashboard-visual__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 650;
}

.dashboard-visual__brand span {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--color-brand), var(--color-brand-strong));
}

.dashboard-visual__search {
  padding: 8px 8px;
  color: rgba(255, 255, 255, 0.28);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  font-size: var(--text-2xs);
}

.dashboard-visual__avatar,
.dashboard-visual__candidate-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-brand-strong), var(--color-brand-light));
  font-size: var(--text-2xs);
  font-weight: 700;
}

.dashboard-visual__avatar {
  width: 30px;
  height: 30px;
}

.dashboard-visual__body {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  flex: 1 1 auto;
  min-height: 0;
}

.dashboard-visual__sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-right: 1px solid var(--color-border);
  background: rgba(9, 10, 16, 0.76);
}

.dashboard-visual__sidebar span {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-md);
  background: var(--color-overlay-strong);
}

.dashboard-visual__sidebar span.is-active {
  background: var(--color-brand);
}

.dashboard-visual__main {
  position: relative;
  z-index: 2;
  padding: 16px;
}

.dashboard-visual__candidate {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-visual__candidate-avatar {
  width: 34px;
  height: 34px;
}

.dashboard-visual__candidate div:nth-child(2) {
  display: grid;
  gap: 8px;
}

.dashboard-visual__candidate strong {
  font-size: var(--text-xs);
}

.dashboard-visual__candidate div span {
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-2xs);
}

.dashboard-visual__status {
  margin-left: auto;
  padding: 8px 8px;
  color: var(--color-success);
  border: 1px solid rgba(96, 214, 143, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(54, 184, 106, 0.08);
  font-size: var(--text-3xs);
}

.dashboard-visual__active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 8px 16px;
  border: 1px solid rgba(122, 115, 255, 0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(105, 96, 255, 0.12), rgba(105, 96, 255, 0.025));
}

.dashboard-visual__active span {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-3xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-visual__active strong {
  color: var(--color-brand-light);
  font-size: var(--text-2xs);
}

.dashboard-visual__panels {
  position: relative;
  margin-top: 16px;
}

.dashboard-panel {
  display: none;
}

.dashboard-panel.is-active {
  display: block;
}

.dashboard-widget__clear {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 8px;
  color: var(--color-success);
  border-radius: var(--radius-md);
  background: rgba(73, 202, 123, 0.08);
  font-size: var(--text-3xs);
}

/* Shared badge / chip components, reused across panels */
.dashboard-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: var(--text-3xs);
  font-weight: 650;
  letter-spacing: 0.02em;
}

.dashboard-badge--amber {
  color: var(--color-warning);
  border-color: rgba(255, 180, 60, 0.28);
  background: rgba(255, 180, 60, 0.12);
}

.dashboard-badge--violet {
  color: var(--color-brand-light);
  border-color: rgba(126, 119, 255, 0.3);
  background: rgba(126, 119, 255, 0.14);
}

.dashboard-badge--green {
  color: var(--color-success);
  border-color: rgba(96, 214, 143, 0.28);
  background: rgba(73, 202, 123, 0.12);
}

.dashboard-chip {
  display: inline-flex;
  padding: 8px 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: var(--text-3xs);
  font-weight: 560;
}

.dashboard-chip--green {
  color: var(--color-success);
  border-color: rgba(96, 214, 143, 0.24);
  background: rgba(73, 202, 123, 0.08);
}

.dashboard-chip--red {
  color: var(--color-danger);
  border-color: rgba(255, 90, 70, 0.24);
  background: rgba(255, 90, 70, 0.08);
}

/* 1. Hiring Recommendation */
.dashboard-rec__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-rec__score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
}

.dashboard-rec__score strong {
  color: var(--color-success);
  font-size: var(--text-4xl);
  line-height: 1;
}

.dashboard-rec__score span {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
}

.dashboard-rec__note {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-2xs);
  line-height: 1.6;
}

.dashboard-rec__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.dashboard-rec__actions button {
  padding: 8px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-overlay);
  color: var(--color-text);
  font: inherit;
  font-size: var(--text-3xs);
  font-weight: 600;
  cursor: pointer;
}

.dashboard-rec__actions button.is-primary {
  border-color: transparent;
  background: linear-gradient(145deg, var(--color-brand), var(--color-brand-strong));
}

/* 2. Structured Scorecards */
.dashboard-scorecard-list {
  display: grid;
  gap: 16px;
}

.dashboard-scorecard-row {
  display: grid;
  grid-template-columns: 96px 1fr 24px;
  align-items: center;
  gap: 8px;
}

.dashboard-scorecard-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-2xs);
}

.dashboard-scorecard-row i {
  position: relative;
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--color-overlay-strong);
}

.dashboard-scorecard-row i::after {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-brand), var(--color-brand-start));
  content: "";
}

.dashboard-scorecard-row strong {
  color: var(--color-text);
  font-size: var(--text-2xs);
  text-align: right;
}

/* 3. Interview Recordings & Transcripts */
.dashboard-recording__label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-3xs);
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.dashboard-recording__player {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-overlay);
}

.dashboard-recording__play {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-text);
}

.dashboard-recording__play::after {
  position: absolute;
  top: 50%;
  left: 57%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--color-surface-raised);
  content: "";
  transform: translate(-50%, -50%);
}

.dashboard-recording__time {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-3xs);
  white-space: nowrap;
}

.dashboard-recording__track {
  flex: 1;
  height: 3px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
}

.dashboard-recording__track i {
  display: block;
  width: var(--progress);
  height: 100%;
  background: linear-gradient(90deg, var(--color-brand), var(--color-success));
}

.dashboard-recording__links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.dashboard-recording__links a {
  color: var(--color-brand-light);
  font-size: var(--text-3xs);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dashboard-tag-group {
  margin-top: 16px;
}

.dashboard-tag-group__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-3xs);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.dashboard-tag-group__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-flags {
  margin-top: 16px;
}

.dashboard-flags__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-3xs);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.dashboard-flags ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-flags li {
  position: relative;
  padding-left: 8px;
  color: rgba(255, 176, 168, 0.85);
  font-size: var(--text-3xs);
  line-height: 1.5;
}

.dashboard-flags li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-danger);
  content: "";
}

/* 4. AI Insights (full panel) */
.dashboard-insights-full__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-3xs);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.dashboard-insights-full__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-insights-full__list li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-2xs);
  line-height: 1.5;
}

.dashboard-insights-full__list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-brand);
  content: "";
}

.dashboard-insights-full__list li strong {
  color: var(--color-text);
  font-weight: 650;
}

/* 5. Resume vs Job Match */
.dashboard-breakdown {
  display: grid;
  gap: 16px;
}

.dashboard-breakdown__row + .dashboard-breakdown__row {
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.dashboard-breakdown__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.dashboard-breakdown__head span {
  color: var(--color-text);
  font-size: var(--text-2xs);
  font-weight: 620;
}

.dashboard-breakdown__head em {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-3xs);
  font-style: normal;
}

.dashboard-breakdown__head strong {
  font-size: var(--text-xs);
}

.dashboard-breakdown__head strong.is-green {
  color: var(--color-success);
}

.dashboard-breakdown__head strong.is-amber {
  color: var(--color-warning);
}

.dashboard-breakdown__head strong.is-red {
  color: var(--color-danger);
}

.dashboard-breakdown__bar {
  height: 4px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--color-overlay-strong);
}

.dashboard-breakdown__bar i {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
}

.dashboard-breakdown__bar i.is-green {
  background: var(--color-success);
}

.dashboard-breakdown__bar i.is-amber {
  background: var(--color-warning);
}

.dashboard-breakdown__bar i.is-red {
  background: var(--color-danger);
}

.dashboard-breakdown__row p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-3xs);
  line-height: 1.5;
}

/* 6. Interview Integrity Signals (full panel) */
.dashboard-integrity-full__summary {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.dashboard-integrity-full__summary strong {
  color: var(--color-text);
  font-size: var(--text-3xl);
  line-height: 1;
}

.dashboard-integrity-full__summary span {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-2xs);
}

.dashboard-integrity-full__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-integrity-full__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.dashboard-integrity-full__list li span {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-3xs);
}

.dashboard-integrity-full__list li em {
  padding: 8px 8px;
  border-radius: var(--radius-pill);
  font-size: var(--text-3xs);
  font-style: normal;
  font-weight: 650;
}

.dashboard-integrity-full__list li em.is-pass {
  color: var(--color-success);
  background: rgba(73, 202, 123, 0.1);
}

/* 7. Compare Candidates */
.dashboard-compare-list {
  display: grid;
  gap: 8px;
}

.dashboard-compare-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  padding: 8px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.dashboard-compare-row.is-best {
  border-color: rgba(96, 214, 143, 0.3);
  background: rgba(73, 202, 123, 0.05);
}

.dashboard-compare-row__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-brand-strong), var(--color-brand-light));
  font-size: var(--text-3xs);
  font-weight: 700;
}

.dashboard-compare-row__info {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.dashboard-compare-row__info strong {
  font-size: var(--text-2xs);
}

.dashboard-compare-row__info span {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-3xs);
}

.dashboard-compare-row__info p {
  margin: 8px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--text-3xs);
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-compare-row__score {
  color: var(--color-text);
  font-size: var(--text-2xs);
  font-weight: 700;
}

.dashboard-visual__glow {
  position: absolute;
  right: -12%;
  bottom: -20%;
  width: 54%;
  height: 50%;
  border-radius: 50%;
  background: rgba(102, 89, 255, 0.18);
  filter: blur(55px);
  pointer-events: none;
}

@media (max-width: 1040px) {
  .recruiter-dashboard {
    min-height: 1420px;
  }

  .recruiter-dashboard__inner {
    width: calc(100% - 64px);
  }

  .recruiter-dashboard__layout {
    grid-template-columns: 1fr;
  }

  .dashboard-visual {
    position: relative;
    top: auto;
    align-items: center;
    padding-top: 0;
    height: 480px;
    max-height: none;
    grid-row: 1;
  }

  .dashboard-step:first-child {
    justify-content: center;
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .dashboard-step:last-child {
    padding-bottom: 24px;
  }

  .dashboard-visual__canvas {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .dashboard-steps {
    gap: 8px;
    margin-top: 8px;
    padding-bottom: 0;
  }

  .dashboard-step {
    display: block;
    min-height: 0;
    padding: 24px 8px 24px 24px;
    opacity: 1;
  }

  .dashboard-step.is-active .dashboard-step__description {
    max-height: 220px;
  }
}

@media (max-width: 620px) {
  .recruiter-dashboard {
    min-height: 0;
  }

  .recruiter-dashboard__inner {
    width: calc(100% - 32px);
    padding: 112px 0 64px;
  }

  .recruiter-dashboard__heading h2 {
    font-size: var(--display-md);
  }

  .recruiter-dashboard__heading > p:last-child {
    font-size: var(--text-sm);
  }

  .recruiter-dashboard__layout {
    gap: 24px;
    margin-top: 32px;
  }

  .dashboard-visual {
    height: 470px;
  }

  .dashboard-visual__canvas {
    border-radius: var(--radius-md);
  }

  .dashboard-visual__topbar {
    grid-template-columns: 1fr 30px;
  }

  .dashboard-visual__search {
    display: none;
  }

  .dashboard-visual__body {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .dashboard-visual__main {
    padding: 16px;
  }

  .dashboard-scorecard-row {
    grid-template-columns: 74px 1fr 22px;
  }

  .dashboard-step__title {
    font-size: var(--text-lg);
  }
}

.cta-waitlist {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(640px, calc(100% - 48px));
  min-height: min(720px, 100svh);
  margin: 0 auto;
  padding: 64px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  text-align: center;
}

.cta-waitlist::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 680px;
  height: 340px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.16), transparent 70%);
  content: "";
  transform: translate(-50%, -35%);
  pointer-events: none;
}

.cta-waitlist__copy h2 {
  margin: 0;
  color: var(--color-text);
  font-size: var(--display-md);
  font-weight: 680;
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.cta-waitlist__copy p {
  max-width: 460px;
  margin: 16px auto 0;
  color: var(--color-text-muted);
  font-size: var(--text-base);
  font-weight: 440;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.cta-waitlist__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  margin-top: 40px;
}

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

.cta-waitlist__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.cta-waitlist__field label {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 560;
  letter-spacing: -0.01em;
}

.cta-waitlist__field input {
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  font: inherit;
  font-size: var(--text-sm);
  transition: border-color var(--duration-standard) var(--ease-premium),
    background-color var(--duration-standard) var(--ease-premium);
}

.cta-waitlist__field input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.cta-waitlist__field input:focus-visible {
  border-color: rgba(154, 133, 255, 0.6);
  background: var(--color-surface-raised);
  outline: none;
}

.cta-waitlist__submit {
  width: 100%;
  min-height: 50px;
  padding: 0 24px;
}

.cta-waitlist__submit:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.cta-waitlist__success {
  margin: 16px 0 0;
  color: var(--color-success);
  font-size: var(--text-sm);
  font-weight: 560;
}

.cta-waitlist__success.is-error {
  color: var(--color-danger);
}

@media (max-width: 560px) {
  .cta-waitlist {
    min-height: 640px;
    padding: 64px 0;
  }

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

.site-footer {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  color: var(--color-text);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
  padding: 0 0 32px;
}

.site-footer__card {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(400px, 1fr);
  align-items: start;
  gap: 64px;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.site-footer__brand-block {
  min-width: 0;
}

.site-footer__brand {
  display: block;
  width: 152px;
  height: 36px;
  overflow: hidden;
}

.site-footer__brand img {
  width: 100%;
  height: auto;
  transform: translateY(-22.8%);
}

.site-footer__brand-bottom {
  margin-top: 24px;
}

.site-footer__tagline {
  max-width: 400px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--text-sm);
  font-weight: 460;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

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

.site-footer__links > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.site-footer__links h2 {
  margin: 0 0 16px;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.site-footer__links a {
  margin-bottom: 8px;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 460;
  line-height: 1.2;
  letter-spacing: -0.02em;
  transition: color var(--duration-standard) var(--ease-premium),
    transform var(--duration-standard) var(--ease-premium);
}

.site-footer__links a:hover {
  color: var(--color-text);
  transform: translateX(2px);
}

.site-footer__links a:focus-visible,
.site-footer__brand:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

.site-footer__bottom {
  margin-top: 32px;
}

.site-footer__bottom p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 460;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .site-footer__card {
    grid-template-columns: minmax(224px, 1fr) minmax(360px, 1.4fr);
    gap: 32px;
  }

  .site-footer__links {
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .site-footer__inner {
    width: calc(100% - 40px);
    padding: 0 0 24px;
  }

  .site-footer__card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
    border-radius: var(--radius-md);
  }

  .site-footer__brand-bottom {
    margin-top: 24px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}
