/**
 * Allows you to use retina images at various pixel densities.
 * Examples:
 *
 *   @include retina(/images/mypic.jpg, 2);
 *   @include retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 *
 * @param  {Value}  $path               The path to the file name minus extension.
 * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * @param  {Value}  $extras: null       Any other `background` values to be added.
 */
.candidate-import-uploader {
  background: var(--candidate-section, transparent);
  border-top: 1px solid var(--candidate-line, rgba(0, 0, 0, 0.06));
  border-bottom: 1px solid var(--candidate-line, rgba(0, 0, 0, 0.06));
  padding: 56px 0;
}
.candidate-import-uploader .candidate-import-uploader-sources {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  margin: 0 auto 32px;
}
.candidate-import-uploader .candidate-import-uploader-sources-label {
  color: var(--candidate-text-muted, #626d7a);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.candidate-import-uploader .candidate-import-uploader-sources-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.candidate-import-uploader .candidate-import-uploader-sources-item {
  align-items: center;
  color: var(--candidate-text-muted, #626d7a);
  display: inline-flex;
  font-size: 14px;
  gap: 8px;
}
.candidate-import-uploader .candidate-import-uploader-sources-logo {
  display: block;
  height: 22px;
  width: 22px;
}
@media (max-width: 600px) {
  .candidate-import-uploader .candidate-import-uploader-sources-name {
    display: none;
  }
}
.candidate-import-uploader .candidate-import-uploader-inner {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .candidate-import-uploader .candidate-import-uploader-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 48px;
  }
}
.candidate-import-uploader .candidate-import-uploader-title {
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 12px;
}
@media (min-width: 880px) {
  .candidate-import-uploader .candidate-import-uploader-title {
    font-size: 36px;
  }
}
.candidate-import-uploader .candidate-import-uploader-lede {
  color: var(--candidate-text-muted, #626d7a);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.candidate-import-uploader .candidate-import-uploader-form {
  background: var(--candidate-panel-alt, var(--color-background-secondary));
  border: 1px solid var(--candidate-line-strong, rgba(0, 0, 0, 0.1));
  border-radius: 14px;
  box-shadow: var(--candidate-shadow, 0 18px 36px rgba(0, 0, 0, 0.08));
  padding: 24px;
}
.candidate-import-uploader .candidate-import-uploader-form .import-uploader-app .padded-upload-container,
.candidate-import-uploader .candidate-import-uploader-form .import-uploader-app .drop-zone-inner {
  background: transparent;
}
.candidate-import-uploader .candidate-import-uploader-form .candidate-import-uploader-fineprint {
  color: var(--candidate-text-muted, #626d7a);
  font-size: 12px;
  margin: 16px 0 0;
  text-align: center;
}

body.root--candidate-2026-b {
  --hcv2-alpha-dark-rgb: 17, 22, 27;
  --hcv2-alpha-light-rgb: 255, 255, 255;
  --hcv2-alpha-surface-rgb: var(--hcv2-alpha-light-rgb);
  --hcv2-accent: #0bbf7d;
  --hcv2-accent-dark: #2f4858;
  --hcv2-highlight: #ffb238;
  --hcv2-highlight-soft: #ffefd8;
  --hcv2-danger: #f5624c;
  --hcv2-blue: #3e92cc;
  --hcv2-blue-dark: #2f4858;
  --hcv2-line: rgba(26, 29, 26, 0.10);
  --hcv2-line-strong: rgba(26, 29, 26, 0.18);
  --hcv2-panel: var(--color-background-primary);
  --hcv2-panel-alt: var(--color-background-secondary);
  --hcv2-panel-soft: var(--color-background-tertiary);
  --hcv2-shadow: 0 24px 56px rgba(28, 43, 55, 0.14);
  --hcv2-shadow-soft: 0 14px 32px rgba(28, 43, 55, 0.08);
  --hcv2-nav: rgba(var(--hcv2-alpha-surface-rgb), 0.88);
  --hcv2-hero-bg: linear-gradient(160deg, rgba(var(--hcv2-alpha-surface-rgb), 0.9), rgba(230, 247, 244, 0.7));
  --hcv2-section-bg: linear-gradient(180deg, rgba(217, 238, 248, 0.38), rgba(var(--hcv2-alpha-surface-rgb), 0));
  --hcv2-mood-bg: linear-gradient(180deg, rgba(255, 239, 216, 0.85), rgba(var(--hcv2-alpha-surface-rgb), 0.30));
  --hcv2-dashboard-bg: linear-gradient(180deg, rgba(230, 244, 250, 0.80), rgba(var(--hcv2-alpha-surface-rgb), 0));
  --hcv2-card-bg: rgba(var(--hcv2-alpha-surface-rgb), 0.92);
  --hcv2-quarter-inactive: rgba(var(--hcv2-alpha-surface-rgb), 0.55);
  background: var(--color-background-primary);
  color: var(--color-text-high-contrast);
  overflow-x: hidden;
}
@media screen and (prefers-color-scheme: dark) {
  body.root--candidate-2026-b:not(.theme-light) {
    --color-background-primary-rgb: derive-rgb-values-from-hex(#192025);
    --color-background-primary: #192025;
    --color-background-secondary: #21282e;
    --color-background-tertiary: #272f35;
    --color-background-popup: #272f35;
    --color-background-popup-small: #2f3740;
    --color-background-scrim: rgba(0, 0, 0, 0.64);
    --color-background-scrim-high-contrast: rgba(0, 0, 0, 0.8);
    --color-border-primary: #2f3740;
    --color-border-secondary: #192025;
    --color-border-tertiary: #626d7a;
    --color-background-element-high-contrast: #626d7a;
    --color-background-element-medium-contrast: #3D4751;
    --color-background-element-medium-contrast-rgb: derive-rgb-values-from-hex(#3D4751);
    --color-background-element-low-contrast: #272f35;
    --color-background-action-high-contrast: #3e92cc;
    --color-background-action-high-contrast-rgb: derive-rgb-values-from-hex(#3e92cc);
    --color-background-action-high-contrast-alt: #afd8f4;
    --color-background-action-medium-contrast: #2f4858;
    --color-background-action-low-contrast: #2c3b47;
    --color-background-error-high-contrast: #f5624c;
    --color-background-error-medium-contrast: #452d2c;
    --color-text-high-contrast: #f9fbfc;
    --color-text-medium-contrast: #b4bfcc;
    --color-text-low-contrast: #8593a3;
    --color-text-lower-contrast: #626d7a;
    --color-text-high-contrast-inverse: #2f3740;
    --color-text-link: #afd8f4;
    --color-text-reversed: #fff;
    --color-text-status: #0bbf7d;
    --color-text-error-high-contrast: #f5624c;
    --color-text-error-medium-contrast: #f5624c;
    --color-text-error-low-contrast: #ffb238;
    --color-text-error-low-contrast-rgb: derive-rgb-values-from-hex(#ffb238);
    --color-text-button: #fff;
    --color-text-reversed-link: #afd8f4;
    --color-text-nav-high-contrast: #edf1f5;
    --color-text-nav-medium-contrast: #b4bfcc;
    --color-text-nav-low-contrast: #b4bfcc;
    --color-text-nav-lower-contrast: #626d7a;
    --color-background-banner: #2f4858;
    --color-background-code: rgba(98, 109, 122, 0.32);
    --color-background-header: #2c3b47;
    --color-background-highlight: rgba(255, 178, 56, 0.32);
    --color-background-note-menu-button: #2f4858;
    --color-background-reversed: #626d7a;
    --color-background-reversed-secondary: #8593a3;
    --color-background-reversed-secondary-rgb: derive-rgb-values-from-hex(#8593a3);
    --color-background-search-bar: #272f35;
    --color-background-task-value: #626d7a;
    --color-background-banner-alt: #601e75;
    --color-background-dialog: #2c3b47;
    --color-background-nav: #2c3b47;
    --color-background-nav-active: #3c5061;
    --color-background-nav-avatar: #2f4858;
    --color-background-nav-divider: #2f4858;
    --color-background-nav-menu: #2f4858;
    --color-background-nav-menu-button: #1c2b37;
    --color-background-nav-menu-divider: #2c3b47;
    --color-background-nav-menu-expanded: #1c2b37;
    --color-background-logo: #fff;
    --color-overlay-low-contrast: #3e92cc;
    --color-overlay-high-contrast: #fff;
    --opacity-overlay-low-contrast-hover: 0.24;
    --opacity-overlay-low-contrast-focus: 0.32;
    --opacity-overlay-low-contrast-press: 0.28;
    --opacity-overlay-high-contrast-hover: 0.08;
    --opacity-overlay-high-contrast-focus: 0.16;
    --opacity-overlay-high-contrast-press: 0.12;
    --mdc-theme-error: #f5624c;
    --mdc-theme-on-primary: #fff;
    --mdc-theme-on-secondary: #f9fbfc;
    --mdc-theme-primary: #3e92cc;
    --mdc-theme-secondary: #2c3b47;
    --mdc-theme-surface: #192025;
    --hcv2-alpha-surface-rgb: var(--hcv2-alpha-dark-rgb);
    --hcv2-line: rgba(var(--hcv2-alpha-light-rgb), 0.12);
    --hcv2-line-strong: rgba(var(--hcv2-alpha-light-rgb), 0.20);
    --hcv2-panel: rgba(var(--hcv2-alpha-light-rgb), 0.05);
    --hcv2-panel-alt: rgba(var(--hcv2-alpha-light-rgb), 0.08);
    --hcv2-panel-soft: rgba(var(--hcv2-alpha-light-rgb), 0.03);
    --hcv2-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
    --hcv2-shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.24);
    --hcv2-nav: rgba(17, 22, 27, 0.88);
    --hcv2-hero-bg: linear-gradient(160deg, rgba(var(--hcv2-alpha-light-rgb), 0.04), rgba(25, 201, 143, 0.06));
    --hcv2-section-bg: linear-gradient(180deg, rgba(var(--hcv2-alpha-light-rgb), 0.03), rgba(var(--hcv2-alpha-light-rgb), 0.01));
    --hcv2-mood-bg: linear-gradient(180deg, rgba(255, 200, 87, 0.08), rgba(var(--hcv2-alpha-light-rgb), 0.02));
    --hcv2-dashboard-bg: linear-gradient(180deg, rgba(62, 146, 204, 0.10), rgba(var(--hcv2-alpha-light-rgb), 0.02));
    --hcv2-card-bg: rgba(var(--hcv2-alpha-light-rgb), 0.07);
    --hcv2-quarter-inactive: rgba(var(--hcv2-alpha-light-rgb), 0.06);
    color-scheme: dark;
  }
}
body.root--candidate-2026-b.theme-dark {
  --color-background-primary-rgb: derive-rgb-values-from-hex(#192025);
  --color-background-primary: #192025;
  --color-background-secondary: #21282e;
  --color-background-tertiary: #272f35;
  --color-background-popup: #272f35;
  --color-background-popup-small: #2f3740;
  --color-background-scrim: rgba(0, 0, 0, 0.64);
  --color-background-scrim-high-contrast: rgba(0, 0, 0, 0.8);
  --color-border-primary: #2f3740;
  --color-border-secondary: #192025;
  --color-border-tertiary: #626d7a;
  --color-background-element-high-contrast: #626d7a;
  --color-background-element-medium-contrast: #3D4751;
  --color-background-element-medium-contrast-rgb: derive-rgb-values-from-hex(#3D4751);
  --color-background-element-low-contrast: #272f35;
  --color-background-action-high-contrast: #3e92cc;
  --color-background-action-high-contrast-rgb: derive-rgb-values-from-hex(#3e92cc);
  --color-background-action-high-contrast-alt: #afd8f4;
  --color-background-action-medium-contrast: #2f4858;
  --color-background-action-low-contrast: #2c3b47;
  --color-background-error-high-contrast: #f5624c;
  --color-background-error-medium-contrast: #452d2c;
  --color-text-high-contrast: #f9fbfc;
  --color-text-medium-contrast: #b4bfcc;
  --color-text-low-contrast: #8593a3;
  --color-text-lower-contrast: #626d7a;
  --color-text-high-contrast-inverse: #2f3740;
  --color-text-link: #afd8f4;
  --color-text-reversed: #fff;
  --color-text-status: #0bbf7d;
  --color-text-error-high-contrast: #f5624c;
  --color-text-error-medium-contrast: #f5624c;
  --color-text-error-low-contrast: #ffb238;
  --color-text-error-low-contrast-rgb: derive-rgb-values-from-hex(#ffb238);
  --color-text-button: #fff;
  --color-text-reversed-link: #afd8f4;
  --color-text-nav-high-contrast: #edf1f5;
  --color-text-nav-medium-contrast: #b4bfcc;
  --color-text-nav-low-contrast: #b4bfcc;
  --color-text-nav-lower-contrast: #626d7a;
  --color-background-banner: #2f4858;
  --color-background-code: rgba(98, 109, 122, 0.32);
  --color-background-header: #2c3b47;
  --color-background-highlight: rgba(255, 178, 56, 0.32);
  --color-background-note-menu-button: #2f4858;
  --color-background-reversed: #626d7a;
  --color-background-reversed-secondary: #8593a3;
  --color-background-reversed-secondary-rgb: derive-rgb-values-from-hex(#8593a3);
  --color-background-search-bar: #272f35;
  --color-background-task-value: #626d7a;
  --color-background-banner-alt: #601e75;
  --color-background-dialog: #2c3b47;
  --color-background-nav: #2c3b47;
  --color-background-nav-active: #3c5061;
  --color-background-nav-avatar: #2f4858;
  --color-background-nav-divider: #2f4858;
  --color-background-nav-menu: #2f4858;
  --color-background-nav-menu-button: #1c2b37;
  --color-background-nav-menu-divider: #2c3b47;
  --color-background-nav-menu-expanded: #1c2b37;
  --color-background-logo: #fff;
  --color-overlay-low-contrast: #3e92cc;
  --color-overlay-high-contrast: #fff;
  --opacity-overlay-low-contrast-hover: 0.24;
  --opacity-overlay-low-contrast-focus: 0.32;
  --opacity-overlay-low-contrast-press: 0.28;
  --opacity-overlay-high-contrast-hover: 0.08;
  --opacity-overlay-high-contrast-focus: 0.16;
  --opacity-overlay-high-contrast-press: 0.12;
  --mdc-theme-error: #f5624c;
  --mdc-theme-on-primary: #fff;
  --mdc-theme-on-secondary: #f9fbfc;
  --mdc-theme-primary: #3e92cc;
  --mdc-theme-secondary: #2c3b47;
  --mdc-theme-surface: #192025;
  --hcv2-alpha-surface-rgb: var(--hcv2-alpha-dark-rgb);
  --hcv2-line: rgba(var(--hcv2-alpha-light-rgb), 0.12);
  --hcv2-line-strong: rgba(var(--hcv2-alpha-light-rgb), 0.20);
  --hcv2-panel: rgba(var(--hcv2-alpha-light-rgb), 0.05);
  --hcv2-panel-alt: rgba(var(--hcv2-alpha-light-rgb), 0.08);
  --hcv2-panel-soft: rgba(var(--hcv2-alpha-light-rgb), 0.03);
  --hcv2-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
  --hcv2-shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.24);
  --hcv2-nav: rgba(17, 22, 27, 0.88);
  --hcv2-hero-bg: linear-gradient(160deg, rgba(var(--hcv2-alpha-light-rgb), 0.04), rgba(25, 201, 143, 0.06));
  --hcv2-section-bg: linear-gradient(180deg, rgba(var(--hcv2-alpha-light-rgb), 0.03), rgba(var(--hcv2-alpha-light-rgb), 0.01));
  --hcv2-mood-bg: linear-gradient(180deg, rgba(255, 200, 87, 0.08), rgba(var(--hcv2-alpha-light-rgb), 0.02));
  --hcv2-dashboard-bg: linear-gradient(180deg, rgba(62, 146, 204, 0.10), rgba(var(--hcv2-alpha-light-rgb), 0.02));
  --hcv2-card-bg: rgba(var(--hcv2-alpha-light-rgb), 0.07);
  --hcv2-quarter-inactive: rgba(var(--hcv2-alpha-light-rgb), 0.06);
  color-scheme: dark;
}
body.root--candidate-2026-b .page-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 24px;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-b .page-shell {
    padding: 0 32px;
  }
}
body.root--candidate-2026-b .section-kicker {
  color: var(--hcv2-accent);
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .section-title {
  font-family: "PT Serif", serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
}
body.root--candidate-2026-b .section-title .accent {
  color: var(--hcv2-accent);
  font-style: italic;
}
body.root--candidate-2026-b .section-title em {
  color: var(--hcv2-accent);
  font-style: italic;
}
body.root--candidate-2026-b .section-copy {
  color: var(--color-text-medium-contrast);
  font-size: 18px;
  line-height: 1.65;
  margin: 20px 0 0;
}
body.root--candidate-2026-b .section-head {
  margin-bottom: 52px;
  max-width: 780px;
}
body.root--candidate-2026-b .section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body.root--candidate-2026-b .hcv2-page {
  position: relative;
}
body.root--candidate-2026-b .hcv2-page::before {
  background: radial-gradient(circle at top right, rgba(255, 178, 56, 0.09), transparent 32%), radial-gradient(circle at bottom left, rgba(11, 191, 125, 0.07), transparent 30%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}
body.root--candidate-2026-b .hcv2-page,
body.root--candidate-2026-b .hcv2-nav,
body.root--candidate-2026-b .hcv2-footer {
  position: relative;
  z-index: 1;
}
body.root--candidate-2026-b .hcv2-nav {
  backdrop-filter: blur(18px);
  background: var(--hcv2-nav);
  border-bottom: 1px solid var(--color-border-primary);
  position: sticky;
  top: 0;
  z-index: 20;
}
body.root--candidate-2026-b .hcv2-nav .nav-inner {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 16px 0;
}
@media only screen and (max-width: 600px) {
  body.root--candidate-2026-b .hcv2-nav .nav-inner {
    padding-left: 12px;
    padding-right: 12px;
  }
}
body.root--candidate-2026-b .hcv2-nav .nav-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}
body.root--candidate-2026-b .hcv2-nav .brand-mark {
  border-radius: 10px;
  height: 34px;
  width: 34px;
}
body.root--candidate-2026-b .hcv2-nav .brand-word {
  font-family: "PT Serif", serif;
  font-size: 26px;
  line-height: 1;
}
body.root--candidate-2026-b .hcv2-nav .nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: flex-end;
}
body.root--candidate-2026-b .hcv2-nav .nav-link {
  color: var(--color-text-medium-contrast);
  font-size: 14px;
  font-weight: 500;
}
body.root--candidate-2026-b .hcv2-nav .nav-link:hover {
  color: var(--color-text-high-contrast);
}
body.root--candidate-2026-b .hcv2-nav .nav-cta-group {
  align-items: center;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
body.root--candidate-2026-b .hcv2-nav .nav-founder {
  background: rgba(255, 178, 56, 0.14);
  border: 1px solid rgba(255, 178, 56, 0.28);
  border-radius: 999px;
  color: var(--color-text-medium-contrast);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  white-space: nowrap;
}
body.root--candidate-2026-b .hcv2-nav .nav-start {
  align-items: center;
  background: var(--color-text-high-contrast);
  border-radius: 999px;
  color: var(--color-background-primary);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 6px;
  padding: 10px 18px;
}
body.root--candidate-2026-b .hcv2-hero {
  background: var(--hcv2-hero-bg);
  padding: 72px 0 96px;
}
body.root--candidate-2026-b .hcv2-hero .hero-inner {
  align-items: center;
  display: grid;
  gap: 52px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-b .hcv2-hero .hero-inner {
    gap: 64px;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
  }
}
body.root--candidate-2026-b .hcv2-hero .hero-pill {
  align-items: center;
  background: rgba(11, 191, 125, 0.12);
  border: 1px solid rgba(11, 191, 125, 0.22);
  border-radius: 999px;
  color: var(--color-text-high-contrast);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
}
body.root--candidate-2026-b .hcv2-hero .hero-pill a {
  text-decoration: underline;
}
body.root--candidate-2026-b .hcv2-hero .hero-pill-dot {
  background: var(--color-background-tertiary);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(11, 191, 125, 0.16);
  color: var(--color-text-high-contrast);
  display: inline-block;
  height: 7px;
  width: 7px;
}
body.root--candidate-2026-b .hcv2-hero .hero-h1 {
  font-family: "PT Serif", serif;
  font-size: clamp(42px, 6.5vw, 92px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.97;
  margin: 0 0 20px;
}
body.root--candidate-2026-b .hcv2-hero .hero-h1 em {
  color: var(--hcv2-accent);
  font-style: italic;
}
body.root--candidate-2026-b .hcv2-hero .hero-lead {
  color: var(--color-text-medium-contrast);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.62;
  margin: 0;
  max-width: 560px;
}
body.root--candidate-2026-b .hcv2-hero .hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
body.root--candidate-2026-b .hcv2-hero .btn-primary {
  align-items: center;
  background: var(--color-text-high-contrast);
  border-radius: 999px;
  color: var(--color-background-primary);
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  gap: 8px;
  padding: 15px 26px;
}
body.root--candidate-2026-b .hcv2-hero .btn-secondary {
  align-items: center;
  background: transparent;
  border: 1px solid var(--hcv2-line-strong);
  border-radius: 999px;
  color: var(--color-text-high-contrast);
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  gap: 8px;
  padding: 14px 24px;
}
body.root--candidate-2026-b .hcv2-hero .hero-proof {
  color: var(--color-text-medium-contrast);
  display: flex;
  flex-wrap: wrap;
  font-family: monospace;
  font-size: 11px;
  gap: 12px 24px;
  letter-spacing: 0.06em;
  margin-top: 26px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-hero .proof-item {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}
body.root--candidate-2026-b .hcv2-hero .proof-item::before {
  background: var(--hcv2-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(11, 191, 125, 0.14);
  content: "";
  display: inline-block;
  height: 6px;
  width: 6px;
}
body.root--candidate-2026-b .hcv2-hero .hero-visual {
  position: relative;
}
body.root--candidate-2026-b .hcv2-hero .agent-banner {
  align-items: center;
  background: #1c2b37;
  border: 1px solid rgba(var(--hcv2-alpha-light-rgb), 0.1);
  border-radius: 20px;
  box-shadow: 0 28px 52px rgba(5, 20, 31, 0.28);
  color: #fff;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  margin-bottom: -16px;
  padding: 14px 16px;
  position: relative;
  z-index: 2;
}
body.root--candidate-2026-b .hcv2-hero .banner-icon {
  background: linear-gradient(145deg, #0bbf7d, #3e92cc);
  border-radius: 14px;
  display: grid;
  font-size: 1.2rem;
  height: 44px;
  place-items: center;
  width: 44px;
}
body.root--candidate-2026-b .hcv2-hero .banner-title {
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
body.root--candidate-2026-b .hcv2-hero .banner-sub {
  color: rgba(var(--hcv2-alpha-light-rgb), 0.64);
  display: block;
  font-size: 0.78rem;
  margin-top: 2px;
}
body.root--candidate-2026-b .hcv2-hero .banner-tag {
  background: rgba(11, 191, 125, 0.22);
  border-radius: 999px;
  color: #b8ffdf;
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}
body.root--candidate-2026-b .hcv2-hero .dashboard-preview {
  background: var(--hcv2-panel);
  border: 1px solid var(--color-border-primary);
  border-radius: 26px;
  box-shadow: var(--hcv2-shadow);
  padding: 20px;
  position: relative;
  z-index: 1;
}
body.root--candidate-2026-b .hcv2-hero .dashboard-preview::before, body.root--candidate-2026-b .hcv2-hero .dashboard-preview::after {
  border-radius: 26px;
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
body.root--candidate-2026-b .hcv2-hero .dashboard-preview::before {
  background: linear-gradient(135deg, rgba(11, 191, 125, 0.18), rgba(62, 146, 204, 0.14));
  bottom: -20px;
  left: 60px;
  right: -20px;
  top: 34px;
  transform: rotate(2deg);
}
body.root--candidate-2026-b .hcv2-hero .dashboard-preview::after {
  background: rgba(255, 178, 56, 0.16);
  bottom: -34px;
  left: -14px;
  right: 76px;
  top: 110px;
  transform: rotate(-2.5deg);
}
body.root--candidate-2026-b .hcv2-hero .preview-toolbar {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
}
body.root--candidate-2026-b .hcv2-hero .preview-tabs {
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border-primary);
  border-radius: 12px;
  display: inline-flex;
  gap: 4px;
  padding: 5px;
}
body.root--candidate-2026-b .hcv2-hero .preview-tab {
  border-radius: 8px;
  color: var(--color-text-medium-contrast);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 11px;
}
body.root--candidate-2026-b .hcv2-hero .preview-tab.is-active {
  background: #2f4858;
  color: #fff;
}
body.root--candidate-2026-b .hcv2-hero .preview-meta {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-hero .preview-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
body.root--candidate-2026-b .hcv2-hero .mini-mood-float {
  background: var(--hcv2-panel);
  border: 1px solid var(--color-border-primary);
  border-radius: 18px;
  box-shadow: var(--hcv2-shadow-soft);
  margin-top: 12px;
  padding: 14px 16px;
}
body.root--candidate-2026-b .hcv2-hero .float-label {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-hero .float-pips {
  display: flex;
  gap: 7px;
}
body.root--candidate-2026-b .hcv2-hero .float-pip {
  align-items: center;
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border-primary);
  border-radius: 999px;
  color: var(--color-text-medium-contrast);
  display: inline-flex;
  font-size: 11px;
  height: 32px;
  justify-content: center;
  min-width: 32px;
}
body.root--candidate-2026-b .hcv2-hero .float-pip.is-active {
  background: rgba(11, 191, 125, 0.18);
  border-color: var(--hcv2-accent);
  color: #2f4858;
  font-weight: 700;
}
body.root--candidate-2026-b .hcv2-hero .float-note {
  color: var(--color-text-medium-contrast);
  font-size: 12px;
  margin: 8px 0 0;
}
body.root--candidate-2026-b .dash-panel {
  background: var(--hcv2-card-bg);
  border: 1px solid var(--color-border-primary);
  border-radius: 16px;
  overflow: hidden;
}
body.root--candidate-2026-b .panel-head {
  align-items: center;
  background: rgba(var(--hcv2-alpha-surface-rgb), 0.8);
  border-bottom: 1px solid var(--color-border-primary);
  color: var(--color-text-medium-contrast);
  display: flex;
  font-family: monospace;
  font-size: 10px;
  gap: 8px;
  justify-content: space-between;
  letter-spacing: 0.1em;
  padding: 10px 13px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .panel-head-icon {
  color: var(--hcv2-accent-dark);
  font-size: 16px;
}
body.root--candidate-2026-b .panel-body {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: calc(100% - 30px);
  justify-content: center;
  padding: 13px;
}
body.root--candidate-2026-b .panel-body.top-aligned {
  justify-content: flex-start;
}
body.root--candidate-2026-b .quarter-pills {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10px;
}
body.root--candidate-2026-b .q-pill {
  background: var(--hcv2-quarter-inactive);
  border: 1px solid var(--color-border-primary);
  border-radius: 10px;
  color: var(--color-text-medium-contrast);
  font-size: 11px;
  min-height: 52px;
  padding: 9px 10px;
}
body.root--candidate-2026-b .q-pill.is-active {
  background: rgba(11, 191, 125, 0.1);
  border-color: var(--hcv2-accent);
  color: var(--color-text-high-contrast);
}
body.root--candidate-2026-b .q-pill strong {
  display: block;
  font-size: 12px;
  margin-bottom: 2px;
}
body.root--candidate-2026-b .month-strip {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 10px;
}
body.root--candidate-2026-b .month-item {
  border: 1px solid var(--color-border-primary);
  border-radius: 7px;
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 9px;
  padding: 5px 2px;
  text-align: center;
  text-transform: uppercase;
}
body.root--candidate-2026-b .month-item.is-active {
  background: var(--hcv2-highlight);
  border-color: var(--hcv2-highlight);
  color: #1c2b37;
  font-weight: 700;
}
body.root--candidate-2026-b .focus-list {
  border: 1px solid var(--color-border-primary);
  border-radius: 10px;
  font-size: 11px;
  padding: 9px 10px;
}
body.root--candidate-2026-b .focus-list .focus-label {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .focus-list ul {
  color: var(--color-text-medium-contrast);
  margin: 0;
  padding-left: 14px;
}
body.root--candidate-2026-b .focus-list ul li {
  margin: 3px 0;
}
body.root--candidate-2026-b .bar-chart {
  align-items: flex-end;
  box-sizing: border-box;
  display: flex;
  gap: 7px;
  height: 96px;
  overflow: hidden;
  padding-left: 48px;
  padding-top: 22px;
  position: relative;
}
body.root--candidate-2026-b .bar-chart::before {
  color: var(--color-text-high-contrast);
  content: attr(data-total);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-weight: 700;
  left: 0;
  letter-spacing: -0.04em;
  position: absolute;
  top: 0;
}
body.root--candidate-2026-b .bar-col {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}
body.root--candidate-2026-b .bar-fill {
  background: #3e92cc;
  border-radius: 5px 5px 0 0;
  max-height: 100%;
  width: 100%;
}
body.root--candidate-2026-b .bar-day {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 8px;
  text-align: center;
  text-transform: uppercase;
}
body.root--candidate-2026-b .coach-items {
  display: grid;
  gap: 8px;
}
body.root--candidate-2026-b .coach-item {
  background: rgba(11, 191, 125, 0.06);
  border: 1px solid rgba(11, 191, 125, 0.14);
  border-radius: 10px;
  color: var(--color-text-medium-contrast);
  font-size: 11px;
  padding: 10px;
}
body.root--candidate-2026-b .coach-item strong {
  color: var(--color-text-high-contrast);
  display: block;
  font-size: 12px;
  margin-bottom: 3px;
}
body.root--candidate-2026-b .coach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}
body.root--candidate-2026-b .ctag {
  background: var(--color-background-secondary);
  border-radius: 999px;
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  padding: 3px 6px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .ctag.green {
  background: rgba(11, 191, 125, 0.14);
  color: #2f4858;
}
body.root--candidate-2026-b .sketch-block {
  border-left: 3px solid var(--hcv2-danger);
  padding-left: 11px;
}
body.root--candidate-2026-b .sketch-row {
  align-items: center;
  border-bottom: 1px solid rgba(11, 191, 125, 0.08);
  display: grid;
  gap: 10px;
  grid-template-columns: 38px 1fr;
  min-height: 26px;
}
body.root--candidate-2026-b .sketch-time {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 9px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .sketch-task {
  color: var(--color-text-high-contrast);
  font-family: "PT Serif", serif;
  font-size: 13px;
  font-style: italic;
}
body.root--candidate-2026-b .sketch-task.is-empty {
  color: transparent;
}
body.root--candidate-2026-b .hcv2-proof {
  border-bottom: 1px solid var(--color-border-primary);
  border-top: 1px solid var(--color-border-primary);
  padding: 18px 0;
}
body.root--candidate-2026-b .hcv2-proof .proof-inner {
  align-items: center;
  color: var(--color-text-medium-contrast);
  display: flex;
  flex-wrap: wrap;
  font-family: monospace;
  font-size: 11px;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-proof .proof-divider {
  background: var(--hcv2-line-strong);
  display: inline-block;
  height: 14px;
  width: 1px;
}
body.root--candidate-2026-b .hcv2-journey {
  background: var(--hcv2-section-bg);
  padding: 104px 0;
}
body.root--candidate-2026-b .hcv2-journey .journey-grid {
  display: grid;
  gap: 18px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-b .hcv2-journey .journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1400px) {
  body.root--candidate-2026-b .hcv2-journey .journey-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
body.root--candidate-2026-b .hcv2-journey .journey-card {
  background: var(--hcv2-panel);
  border: 1px solid var(--color-border-primary);
  border-radius: 20px;
  padding: 22px;
}
body.root--candidate-2026-b .hcv2-journey .journey-num {
  background: var(--color-text-high-contrast);
  border-radius: 12px;
  color: var(--color-background-primary);
  display: grid;
  font-family: monospace;
  font-size: 16px;
  font-weight: 700;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  width: 44px;
}
body.root--candidate-2026-b .hcv2-journey .journey-card:nth-child(2) .journey-num {
  background: #0bbf7d;
}
body.root--candidate-2026-b .hcv2-journey .journey-card:nth-child(3) .journey-num {
  background: #3e92cc;
}
body.root--candidate-2026-b .hcv2-journey .journey-card:nth-child(4) .journey-num {
  background: #f5624c;
}
body.root--candidate-2026-b .hcv2-journey .journey-card:nth-child(5) .journey-num {
  background: #2f4858;
}
body.root--candidate-2026-b .hcv2-journey .journey-h3 {
  font-family: "PT Serif", serif;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 8px;
}
body.root--candidate-2026-b .hcv2-journey .journey-copy {
  color: var(--color-text-medium-contrast);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
body.root--candidate-2026-b .hcv2-agent {
  background: radial-gradient(circle at 8% 25%, rgba(11, 191, 125, 0.16), transparent 24rem), radial-gradient(circle at 88% 65%, rgba(62, 146, 204, 0.18), transparent 26rem), #1c2b37;
  -webkit-clip-path: polygon(0 72px, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 72px, 100% 0, 100% 100%, 0 100%);
  color: #fff;
  margin-top: -72px;
  padding: 144px 0 128px;
}
body.root--candidate-2026-b .hcv2-agent .copy-kicker {
  color: rgba(var(--hcv2-alpha-light-rgb), 0.62);
}
body.root--candidate-2026-b .hcv2-agent .hcv2-agent-copy,
body.root--candidate-2026-b .hcv2-agent .hcv2-agent-right {
  min-width: 0;
}
body.root--candidate-2026-b .hcv2-agent .agent-layout {
  align-items: start;
  display: grid;
  gap: 56px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-b .hcv2-agent .agent-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}
body.root--candidate-2026-b .hcv2-agent .agent-h2 {
  color: #fff;
  font-family: "PT Serif", serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.03;
  margin: 12px 0 16px;
}
body.root--candidate-2026-b .hcv2-agent .agent-h2 em {
  color: #ffb238;
  font-style: italic;
}
body.root--candidate-2026-b .hcv2-agent .agent-body {
  color: rgba(var(--hcv2-alpha-light-rgb), 0.72);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 22px;
}
body.root--candidate-2026-b .hcv2-agent .founder-box {
  background: rgba(255, 178, 56, 0.1);
  border: 1px solid rgba(255, 178, 56, 0.24);
  border-radius: 18px;
  color: rgba(var(--hcv2-alpha-light-rgb), 0.88);
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
  margin-bottom: 26px;
  padding: 16px;
}
body.root--candidate-2026-b .hcv2-agent .founder-box .founder-star {
  align-items: center;
  background: rgba(255, 178, 56, 0.18);
  border-radius: 12px;
  display: inline-flex;
  font-size: 1.1rem;
  height: 38px;
  justify-content: center;
  width: 38px;
}
body.root--candidate-2026-b .hcv2-agent .founder-box strong {
  color: #ffb238;
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
body.root--candidate-2026-b .hcv2-agent .founder-box span {
  color: rgba(var(--hcv2-alpha-light-rgb), 0.64);
  font-size: 13px;
}
body.root--candidate-2026-b .hcv2-agent .agent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
body.root--candidate-2026-b .hcv2-agent .btn-yellow {
  align-items: center;
  background: #ffb238;
  border-radius: 999px;
  color: #1c2b37;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 7px;
  padding: 14px 22px;
}
body.root--candidate-2026-b .hcv2-agent .btn-ghost {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(var(--hcv2-alpha-light-rgb), 0.22);
  border-radius: 999px;
  color: rgba(var(--hcv2-alpha-light-rgb), 0.88);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 7px;
  padding: 13px 20px;
}
body.root--candidate-2026-b .hcv2-agent .tools-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media only screen and (max-width: 768px) {
  body.root--candidate-2026-b .hcv2-agent .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
body.root--candidate-2026-b .hcv2-agent .tool-tile {
  background: rgba(var(--hcv2-alpha-light-rgb), 0.05);
  border: 1px solid rgba(var(--hcv2-alpha-light-rgb), 0.09);
  border-radius: 16px;
  min-height: 110px;
  padding: 14px;
}
body.root--candidate-2026-b .hcv2-agent .tool-tile:nth-child(2n) {
  background: rgba(11, 191, 125, 0.09);
}
body.root--candidate-2026-b .hcv2-agent .tool-tile:nth-child(3n) {
  background: rgba(62, 146, 204, 0.1);
}
body.root--candidate-2026-b .hcv2-agent .tool-tile:nth-child(5n) {
  background: rgba(255, 178, 56, 0.1);
}
body.root--candidate-2026-b .hcv2-agent .tile-icon {
  background: rgba(var(--hcv2-alpha-light-rgb), 0.1);
  border-radius: 10px;
  font-size: 1rem;
  height: 32px;
  margin-bottom: 10px;
  width: 32px;
  display: grid;
  place-items: center;
}
body.root--candidate-2026-b .hcv2-agent .tile-name {
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
body.root--candidate-2026-b .hcv2-agent .tile-desc {
  color: rgba(var(--hcv2-alpha-light-rgb), 0.54);
  display: block;
  font-size: 11px;
  line-height: 1.4;
}
body.root--candidate-2026-b .hcv2-agent .agent-demo {
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(var(--hcv2-alpha-light-rgb), 0.1);
  border-radius: 18px;
  margin-top: 18px;
  padding: 18px;
}
body.root--candidate-2026-b .hcv2-agent .agent-demo .demo-label {
  color: rgba(var(--hcv2-alpha-light-rgb), 0.52);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-agent .agent-demo .demo-card {
  background: #eff8f8;
  border-radius: 14px;
  color: #1c2b37;
  padding: 14px;
}
body.root--candidate-2026-b .hcv2-agent .agent-demo .demo-title {
  align-items: center;
  color: #1c2b37;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 10px;
}
body.root--candidate-2026-b .hcv2-agent .agent-demo .demo-badge {
  background: rgba(11, 191, 125, 0.14);
  border-radius: 999px;
  color: #2f4858;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-agent .agent-demo .demo-body {
  background: #fff;
  border: 1px solid rgba(26, 29, 26, 0.12);
  border-radius: 10px;
  color: #2f4858;
  font-size: 13px;
  line-height: 1.6;
  padding: 11px;
}
body.root--candidate-2026-b .hcv2-agent .agent-demo .demo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
body.root--candidate-2026-b .hcv2-agent .agent-demo .demo-chip {
  background: #fff;
  border: 1px solid rgba(26, 29, 26, 0.12);
  border-radius: 999px;
  color: #2f4858;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 9px;
}
body.root--candidate-2026-b .hcv2-mood {
  background: var(--hcv2-mood-bg);
  padding: 112px 0;
}
body.root--candidate-2026-b .hcv2-mood .mood-split {
  align-items: center;
  display: grid;
  gap: 52px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-b .hcv2-mood .mood-split {
    gap: 80px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
body.root--candidate-2026-b .hcv2-mood .mood-copy .section-title {
  font-size: clamp(34px, 4.2vw, 62px);
}
body.root--candidate-2026-b .hcv2-mood .mood-quote {
  border-left: 3px solid var(--hcv2-highlight);
  margin-top: 26px;
  padding: 16px 20px;
}
body.root--candidate-2026-b .hcv2-mood .quote-text {
  font-family: "PT Serif", serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  margin: 0;
}
body.root--candidate-2026-b .hcv2-mood .quote-source {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  margin: 10px 0 0;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-mood .mood-stats {
  border-top: 1px solid var(--color-border-primary);
  display: grid;
  gap: 16px;
  margin-top: 30px;
  padding-top: 22px;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-b .hcv2-mood .mood-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
body.root--candidate-2026-b .hcv2-mood .mood-stats .stat-number {
  display: block;
  font-family: "PT Serif", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}
body.root--candidate-2026-b .hcv2-mood .mood-stats .stat-label {
  color: var(--color-text-medium-contrast);
  display: block;
  font-size: 13px;
  line-height: 1.55;
  margin-top: 6px;
}
body.root--candidate-2026-b .hcv2-mood .mood-panel {
  background: var(--hcv2-panel);
  border: 1px solid var(--color-border-primary);
  border-radius: 24px;
  box-shadow: var(--hcv2-shadow);
  padding: 24px;
}
body.root--candidate-2026-b .hcv2-mood .mood-week {
  border-bottom: 1px dashed var(--hcv2-line-strong);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding-bottom: 20px;
}
body.root--candidate-2026-b .hcv2-mood .mood-day {
  text-align: center;
}
body.root--candidate-2026-b .hcv2-mood .mood-face {
  align-items: center;
  background: rgba(255, 178, 56, 0.16);
  border-radius: 999px;
  display: inline-flex;
  font-family: monospace;
  font-size: 15px;
  height: 42px;
  justify-content: center;
  width: 42px;
}
body.root--candidate-2026-b .hcv2-mood .mood-face.high {
  background: rgba(11, 191, 125, 0.2);
}
body.root--candidate-2026-b .hcv2-mood .mood-face.low {
  background: rgba(245, 98, 76, 0.18);
}
body.root--candidate-2026-b .hcv2-mood .mood-day-name {
  color: var(--color-text-medium-contrast);
  display: block;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-top: 7px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-mood .mood-day-date {
  display: block;
  font-family: "PT Serif", serif;
  font-size: 13px;
  margin-top: 4px;
}
body.root--candidate-2026-b .hcv2-mood .mood-correlation {
  margin-top: 20px;
}
body.root--candidate-2026-b .hcv2-mood .correlation-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
body.root--candidate-2026-b .hcv2-mood .correlation-head h3 {
  font-family: "PT Serif", serif;
  font-size: 22px;
  margin: 0;
}
body.root--candidate-2026-b .hcv2-mood .correlation-head span {
  background: rgba(11, 191, 125, 0.12);
  border-radius: 999px;
  color: #2f4858;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 5px 9px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-mood .correlation-rows {
  display: grid;
  gap: 10px;
}
body.root--candidate-2026-b .hcv2-mood .corr-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(80px, 110px) minmax(0, 1fr) auto;
}
body.root--candidate-2026-b .hcv2-mood .corr-label {
  color: var(--color-text-medium-contrast);
  font-size: 13px;
}
body.root--candidate-2026-b .hcv2-mood .corr-bar {
  background: var(--hcv2-panel-soft);
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
}
body.root--candidate-2026-b .hcv2-mood .corr-fill {
  border-radius: 999px;
  display: block;
  height: 100%;
}
body.root--candidate-2026-b .hcv2-mood .corr-fill.pos {
  background: linear-gradient(90deg, #0bbf7d, #3e92cc);
}
body.root--candidate-2026-b .hcv2-mood .corr-fill.neg {
  background: linear-gradient(90deg, #f5624c, #ffb238);
}
body.root--candidate-2026-b .hcv2-mood .corr-val {
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
}
body.root--candidate-2026-b .hcv2-capture {
  padding: 104px 0;
}
body.root--candidate-2026-b .hcv2-capture .capture-split {
  align-items: start;
  display: grid;
  gap: 52px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-b .hcv2-capture .capture-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
body.root--candidate-2026-b .hcv2-capture .capture-visual {
  display: grid;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-b .hcv2-capture .capture-visual {
    grid-template-columns: 1fr 1fr;
  }
}
body.root--candidate-2026-b .hcv2-capture .capture-card,
body.root--candidate-2026-b .hcv2-capture .sort-card {
  background: var(--hcv2-panel);
  border: 1px solid var(--color-border-primary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--hcv2-shadow-soft);
}
body.root--candidate-2026-b .hcv2-capture .card-label {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 12px 14px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-capture .phone-frame {
  background: #1c2b37;
  border-radius: 24px;
  margin: 0 14px 14px;
  overflow: hidden;
}
body.root--candidate-2026-b .hcv2-capture .phone-top {
  background: #2f4858;
  color: #fff;
  display: flex;
  font-family: monospace;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 10px 12px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-capture .phone-input {
  background: rgba(var(--hcv2-alpha-light-rgb), 0.94);
  border: 1px solid rgba(26, 29, 26, 0.12);
  border-radius: 12px;
  color: #2f4858;
  font-size: 12px;
  line-height: 1.5;
  margin: 10px;
  min-height: 66px;
  padding: 10px;
}
body.root--candidate-2026-b .hcv2-capture .phone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0 10px;
}
body.root--candidate-2026-b .hcv2-capture .phone-chips span {
  background: rgba(var(--hcv2-alpha-light-rgb), 0.14);
  border-radius: 999px;
  color: var(--color-background-primary-rgb);
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  padding: 5px 7px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-capture .phone-task {
  border-bottom: 1px solid rgba(var(--hcv2-alpha-light-rgb), 0.07);
  color: rgba(var(--hcv2-alpha-light-rgb), 0.72);
  font-size: 11px;
  padding: 8px 10px;
}
body.root--candidate-2026-b .hcv2-capture .sort-inner {
  padding: 12px 14px 14px;
}
body.root--candidate-2026-b .hcv2-capture .sort-board {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto 1fr;
}
body.root--candidate-2026-b .hcv2-capture .sort-stack {
  display: grid;
  gap: 7px;
}
body.root--candidate-2026-b .hcv2-capture .note-card {
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border-primary);
  border-radius: 10px;
  color: var(--color-text-medium-contrast);
  font-size: 10px;
  line-height: 1.4;
  padding: 8px 10px;
}
body.root--candidate-2026-b .hcv2-capture .note-card strong {
  color: var(--color-text-high-contrast);
  display: block;
  font-size: 10px;
  margin-bottom: 2px;
}
body.root--candidate-2026-b .hcv2-capture .sort-arrow {
  align-items: center;
  background: rgba(11, 191, 125, 0.12);
  border: 1px solid rgba(11, 191, 125, 0.22);
  border-radius: 50%;
  color: #2f4858;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  width: 38px;
}
body.root--candidate-2026-b .hcv2-dashboard {
  background: var(--hcv2-dashboard-bg);
  padding: 112px 0;
}
body.root--candidate-2026-b .hcv2-dashboard .dash-showcase {
  background: linear-gradient(180deg, var(--color-background-primary-rgb), var(--color-background-secondary)), radial-gradient(circle at 4% 0%, rgba(11, 191, 125, 0.18), transparent 20rem), radial-gradient(circle at 98% 28%, rgba(62, 146, 204, 0.14), transparent 22rem);
  border: 1px solid var(--color-border-primary);
  border-radius: 30px;
  box-shadow: var(--hcv2-shadow);
  margin-top: 42px;
  padding: 24px;
}
body.root--candidate-2026-b .hcv2-dashboard .showcase-bar {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}
body.root--candidate-2026-b .hcv2-dashboard .ws-tabs {
  background: rgba(var(--hcv2-alpha-surface-rgb), 0.8);
  border: 1px solid var(--color-border-primary);
  border-radius: 14px;
  display: inline-flex;
  gap: 5px;
  padding: 5px;
}
body.root--candidate-2026-b .hcv2-dashboard .ws-tab {
  border-radius: 10px;
  color: var(--color-text-medium-contrast);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 13px;
}
body.root--candidate-2026-b .hcv2-dashboard .ws-tab.is-active {
  background: #2f4858;
  color: #fff;
}
body.root--candidate-2026-b .hcv2-dashboard .ws-meta {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-dashboard .showcase-grid {
  display: grid;
  gap: 14px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-b .hcv2-dashboard .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
body.root--candidate-2026-b .hcv2-dashboard .detail-row {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-b .hcv2-dashboard .detail-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
body.root--candidate-2026-b .hcv2-dashboard .detail-card {
  background: var(--color-background-primary-rgb);
  border: 1px solid var(--color-border-primary);
  border-radius: 18px;
  padding: 18px;
}
body.root--candidate-2026-b .hcv2-dashboard .detail-card strong {
  color: var(--color-text-high-contrast);
  display: block;
  font-size: 15px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
body.root--candidate-2026-b .hcv2-dashboard .detail-card p {
  color: var(--color-text-medium-contrast);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
body.root--candidate-2026-b .hcv2-cta {
  background: radial-gradient(circle at 18% 38%, rgba(11, 191, 125, 0.2), transparent 26rem), radial-gradient(circle at 84% 0%, rgba(62, 146, 204, 0.18), transparent 28rem), #1c2b37;
  padding: 110px 0;
  text-align: center;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container {
  display: flex;
  justify-content: center;
  margin: 40px auto 0;
  max-width: 960px;
  position: relative;
  width: calc(100% - 30px);
  z-index: 10;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-sign-up-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 400px;
}
@media only screen and (min-width: 600px) {
  body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-sign-up-form {
    flex-direction: row;
    max-width: none;
  }
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-input-wrapper {
  align-items: center;
  background: var(--color-background-primary);
  border: 1px solid var(--color-border-primary);
  border-radius: 5px;
  display: flex;
  padding: 8px 8px 8px 16px;
}
@media only screen and (min-width: 600px) {
  body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-input-wrapper {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-input-wrapper .material-icons {
  color: var(--color-text-lower-contrast);
  font-size: 16px;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-input-wrapper input.email-input {
  border: none;
  color: var(--color-text-medium-contrast);
  font-size: 16px;
  width: 100%;
  padding: 8px;
  -webkit-appearance: none;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-input-wrapper input.email-input:focus {
  outline: none;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-input-wrapper input.email-input::placeholder {
  color: var(--color-text-low-contrast);
  font-style: italic;
}
@media only screen and (min-width: 600px) {
  body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-input-wrapper input.email-input {
    min-width: 350px;
  }
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-submit-button {
  border: 1px solid transparent;
  font-size: 16px;
  height: auto;
  letter-spacing: normal;
  margin-top: 15px;
  padding: 10px 15px;
  text-transform: none;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-submit-button:not(:disabled) {
  background-color: #3e92cc;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-submit-button:not(:disabled) {
  color: var(--color-text-reversed);
}
@media only screen and (min-width: 600px) {
  body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-submit-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: 0;
  }
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container form {
  width: 100%;
}
body.root--candidate-2026-b .hcv2-cta .cta-inner {
  margin: 0 auto;
  max-width: 840px;
}
body.root--candidate-2026-b .hcv2-cta .cta-pill {
  background: rgba(71, 213, 213, 0.14);
  border: 1px solid rgba(71, 213, 213, 0.2);
  border-radius: 999px;
  color: var(--color-background-primary-rgb);
  display: inline-flex;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  padding: 8px 14px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-cta .cta-h2 {
  color: #fff;
  font-family: "PT Serif", serif;
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.03;
  margin: 0;
}
body.root--candidate-2026-b .hcv2-cta .cta-copy {
  color: rgba(var(--hcv2-alpha-light-rgb), 0.65);
  font-size: 18px;
  line-height: 1.6;
  margin: 20px auto 0;
  max-width: 620px;
}
body.root--candidate-2026-b .hcv2-cta .cta-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container {
  margin-top: 28px;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-sign-up-form {
  justify-content: center;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-input-wrapper {
  background: rgba(var(--hcv2-alpha-light-rgb), 0.1);
  border-color: rgba(var(--hcv2-alpha-light-rgb), 0.18);
  border-radius: 999px;
}
@media only screen and (min-width: 600px) {
  body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-input-wrapper {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-input-wrapper input.email-input {
  border-radius: 4px;
  background-color: var(--color-background-reversed-secondary);
  color: var(--color-text-reversed);
  margin-left: 10px;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-submit-button {
  border-radius: 999px;
  font-weight: 700;
  padding-left: 26px;
  padding-right: 26px;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-submit-button:not(:disabled) {
  background-color: #0bbf7d;
}
body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-submit-button:not(:disabled) {
  color: #1c2b37;
}
@media only screen and (min-width: 600px) {
  body.root--candidate-2026-b .hcv2-cta .sign-up-email-form-container .email-submit-button {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
}
body.root--candidate-2026-b .hcv2-cta .cta-footnote {
  color: rgba(var(--hcv2-alpha-light-rgb), 0.4);
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin: 16px 0 0;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-cta .cta-footnote a {
  text-decoration: underline;
}
body.root--candidate-2026-b .hcv2-footer {
  background: #1c2b37;
  color: rgba(var(--hcv2-alpha-light-rgb), 0.7);
  padding: 64px 0 36px;
}
body.root--candidate-2026-b .hcv2-footer .footer-shell {
  display: grid;
  gap: 36px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-b .hcv2-footer .footer-shell {
    grid-template-columns: minmax(220px, 1.1fr) minmax(0, 2fr);
  }
}
body.root--candidate-2026-b .hcv2-footer .footer-brand {
  align-items: center;
  color: #fff;
  display: inline-flex;
  gap: 12px;
}
body.root--candidate-2026-b .hcv2-footer .footer-brand-mark {
  border-radius: 10px;
  height: 34px;
  width: 34px;
}
body.root--candidate-2026-b .hcv2-footer .footer-brand-word {
  font-family: "PT Serif", serif;
  font-size: 24px;
  line-height: 1;
}
body.root--candidate-2026-b .hcv2-footer .footer-tagline {
  color: rgba(var(--hcv2-alpha-light-rgb), 0.5);
  font-size: 14px;
  line-height: 1.65;
  margin: 14px 0 0;
  max-width: 300px;
}
body.root--candidate-2026-b .hcv2-footer .footer-columns {
  display: grid;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-b .hcv2-footer .footer-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
body.root--candidate-2026-b .hcv2-footer .col-title {
  color: #fff;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
body.root--candidate-2026-b .hcv2-footer .col-links {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}
body.root--candidate-2026-b .hcv2-footer .col-links a:hover {
  color: #ffb238;
}
body.root--candidate-2026-b .hcv2-footer .footer-bottom {
  border-top: 1px solid rgba(var(--hcv2-alpha-light-rgb), 0.1);
  color: rgba(var(--hcv2-alpha-light-rgb), 0.4);
  display: flex;
  flex-direction: column;
  font-family: monospace;
  font-size: 10px;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-top: 36px;
  padding-top: 22px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-b .hcv2-footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  body.root--candidate-2026-b .hcv2-nav .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  body.root--candidate-2026-b .hcv2-hero {
    padding-top: 48px;
  }
  body.root--candidate-2026-b .hcv2-hero .preview-grid {
    grid-template-columns: 1fr;
  }
  body.root--candidate-2026-b .hcv2-agent .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.root--candidate-2026-b .hcv2-mood .mood-week {
    gap: 7px;
  }
}
@media (max-width: 560px) {
  body.root--candidate-2026-b .hcv2-journey,
  body.root--candidate-2026-b .hcv2-capture,
  body.root--candidate-2026-b .hcv2-dashboard,
  body.root--candidate-2026-b .hcv2-mood,
  body.root--candidate-2026-b .hcv2-cta {
    padding: 80px 0;
  }
  body.root--candidate-2026-b .hcv2-agent {
    padding: 108px 0 88px;
  }
  body.root--candidate-2026-b .hcv2-proof .proof-divider {
    display: none;
  }
  body.root--candidate-2026-b .hcv2-mood .mood-week {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  body.root--candidate-2026-b .hcv2-capture .capture-visual {
    grid-template-columns: 1fr;
  }
}
