/**
 * 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.
 */
.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;
}
.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) {
  .sign-up-email-form-container .email-sign-up-form {
    flex-direction: row;
    max-width: none;
  }
}
.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) {
  .sign-up-email-form-container .email-input-wrapper {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.sign-up-email-form-container .email-input-wrapper .material-icons {
  color: var(--color-text-lower-contrast);
  font-size: 16px;
}
.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;
}
.sign-up-email-form-container .email-input-wrapper input.email-input:focus {
  outline: none;
}
.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) {
  .sign-up-email-form-container .email-input-wrapper input.email-input {
    min-width: 350px;
  }
}
.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;
}
.sign-up-email-form-container .email-submit-button:not(:disabled) {
  background-color: #3e92cc;
}
.sign-up-email-form-container .email-submit-button:not(:disabled) {
  color: var(--color-text-reversed);
}
@media only screen and (min-width: 600px) {
  .sign-up-email-form-container .email-submit-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: 0;
  }
}
.sign-up-email-form-container form {
  width: 100%;
}

.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-a {
  --candidate-alpha-dark-rgb: 17, 22, 27;
  --candidate-alpha-light-rgb: 255, 255, 255;
  --candidate-alpha-surface-rgb: var(--candidate-alpha-light-rgb);
  --candidate-accent: #0bbf7d;
  --candidate-accent-strong: #2f4858;
  --candidate-highlight: #ffb238;
  --candidate-highlight-soft: #ffefd8;
  --candidate-danger: #f5624c;
  --candidate-line: rgba(26, 29, 26, 0.1);
  --candidate-line-strong: rgba(26, 29, 26, 0.18);
  --candidate-panel: var(--color-background-primary);
  --candidate-panel-alt: var(--color-background-secondary);
  --candidate-panel-soft: var(--color-background-tertiary);
  --candidate-shadow: 0 24px 48px rgba(28, 43, 55, 0.12);
  --candidate-nav: rgba(var(--candidate-alpha-surface-rgb), 0.86);
  --candidate-hero: linear-gradient(180deg, rgba(255, 178, 56, 0.08), rgba(var(--candidate-alpha-surface-rgb), 0));
  --candidate-section: linear-gradient(180deg, rgba(217, 238, 248, 0.45), rgba(var(--candidate-alpha-surface-rgb), 0));
  --candidate-section-alt: linear-gradient(180deg, rgba(255, 239, 216, 0.9), rgba(var(--candidate-alpha-surface-rgb), 0.3));
  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-a: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;
    --candidate-accent-strong: #afd8f4;
    --candidate-alpha-surface-rgb: var(--candidate-alpha-dark-rgb);
    --candidate-line: rgba(var(--candidate-alpha-light-rgb), 0.12);
    --candidate-line-strong: rgba(var(--candidate-alpha-light-rgb), 0.22);
    --candidate-panel: rgba(var(--candidate-alpha-light-rgb), 0.04);
    --candidate-panel-alt: rgba(var(--candidate-alpha-light-rgb), 0.06);
    --candidate-panel-soft: rgba(var(--candidate-alpha-light-rgb), 0.03);
    --candidate-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
    --candidate-nav: rgba(17, 22, 27, 0.82);
    --candidate-hero: linear-gradient(180deg, rgba(var(--candidate-alpha-light-rgb), 0.02), rgba(var(--candidate-alpha-light-rgb), 0));
    --candidate-section: linear-gradient(180deg, rgba(var(--candidate-alpha-light-rgb), 0.03), rgba(var(--candidate-alpha-light-rgb), 0.01));
    --candidate-section-alt: linear-gradient(180deg, rgba(255, 178, 56, 0.14), rgba(var(--candidate-alpha-light-rgb), 0.02));
    color-scheme: dark;
  }
}
body.root--candidate-2026-a.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;
  --candidate-accent-strong: #afd8f4;
  --candidate-alpha-surface-rgb: var(--candidate-alpha-dark-rgb);
  --candidate-line: rgba(var(--candidate-alpha-light-rgb), 0.12);
  --candidate-line-strong: rgba(var(--candidate-alpha-light-rgb), 0.22);
  --candidate-panel: rgba(var(--candidate-alpha-light-rgb), 0.04);
  --candidate-panel-alt: rgba(var(--candidate-alpha-light-rgb), 0.06);
  --candidate-panel-soft: rgba(var(--candidate-alpha-light-rgb), 0.03);
  --candidate-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
  --candidate-nav: rgba(17, 22, 27, 0.82);
  --candidate-hero: linear-gradient(180deg, rgba(var(--candidate-alpha-light-rgb), 0.02), rgba(var(--candidate-alpha-light-rgb), 0));
  --candidate-section: linear-gradient(180deg, rgba(var(--candidate-alpha-light-rgb), 0.03), rgba(var(--candidate-alpha-light-rgb), 0.01));
  --candidate-section-alt: linear-gradient(180deg, rgba(255, 178, 56, 0.14), rgba(var(--candidate-alpha-light-rgb), 0.02));
  color-scheme: dark;
}
body.root--candidate-2026-a a {
  color: inherit;
  text-decoration: none;
}
body.root--candidate-2026-a .content-wrapper,
body.root--candidate-2026-a .candidate-page {
  min-width: 0;
  width: 100%;
}
body.root--candidate-2026-a .page-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 24px;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-a .page-shell {
    padding: 0 32px;
  }
}
body.root--candidate-2026-a .section-head {
  margin-bottom: 56px;
  max-width: 760px;
}
body.root--candidate-2026-a .section-head.is-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body.root--candidate-2026-a .head-kicker,
body.root--candidate-2026-a .copy-kicker,
body.root--candidate-2026-a .shell-kicker {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
body.root--candidate-2026-a .head-title,
body.root--candidate-2026-a .copy-title,
body.root--candidate-2026-a .shell-title {
  font-family: "PT Serif", serif;
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
body.root--candidate-2026-a .head-title .accent,
body.root--candidate-2026-a .copy-title .accent,
body.root--candidate-2026-a .shell-title .accent {
  color: var(--candidate-accent);
  font-style: italic;
}
body.root--candidate-2026-a .head-copy,
body.root--candidate-2026-a .copy-lede,
body.root--candidate-2026-a .shell-copy {
  color: var(--color-text-medium-contrast);
  font-size: 18px;
  line-height: 1.65;
  margin: 22px 0 0;
}
body.root--candidate-2026-a .candidate-page {
  max-width: 100vw;
  overflow-x: clip;
  position: relative;
}
body.root--candidate-2026-a .candidate-page::before {
  background: radial-gradient(circle at top right, rgba(255, 178, 56, 0.1), transparent 30%), radial-gradient(circle at bottom left, rgba(11, 191, 125, 0.08), transparent 30%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}
body.root--candidate-2026-a .candidate-nav,
body.root--candidate-2026-a .candidate-page,
body.root--candidate-2026-a .candidate-footer {
  position: relative;
  z-index: 1;
}
body.root--candidate-2026-a .candidate-nav {
  backdrop-filter: blur(16px);
  background: var(--color-background-primary);
  border-bottom: 1px solid var(--candidate-line);
  position: sticky;
  top: 0;
  z-index: 20;
}
body.root--candidate-2026-a .candidate-nav .nav-shell {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 16px;
  padding-top: 16px;
}
body.root--candidate-2026-a .candidate-nav .nav-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}
body.root--candidate-2026-a .candidate-nav .brand-mark {
  border-radius: 10px;
  height: 34px;
  width: 34px;
}
body.root--candidate-2026-a .candidate-nav .brand-word {
  font-family: "PT Serif", serif;
  font-size: 26px;
  line-height: 1;
}
body.root--candidate-2026-a .candidate-nav .nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: flex-end;
}
body.root--candidate-2026-a .candidate-nav .links-link {
  color: var(--color-text-medium-contrast);
  font-size: 14px;
  font-weight: 500;
}
body.root--candidate-2026-a .candidate-nav .links-link:hover {
  color: var(--color-text-high-contrast);
}
body.root--candidate-2026-a .candidate-nav .links-cta {
  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: 8px;
  padding: 10px 18px;
}
body.root--candidate-2026-a .candidate-hero {
  background: var(--candidate-hero);
  padding: 72px 0 84px;
}
body.root--candidate-2026-a .candidate-hero .hero-shell {
  align-items: center;
  display: grid;
  gap: 48px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-a .candidate-hero .hero-shell {
    gap: 64px;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  }
}
body.root--candidate-2026-a .candidate-hero .copy-kicker {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}
body.root--candidate-2026-a .candidate-hero .kicker-dot {
  background: var(--candidate-highlight);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 178, 56, 0.18);
  display: inline-block;
  height: 8px;
  width: 8px;
}
body.root--candidate-2026-a .candidate-hero .highlight {
  box-shadow: inset 0 -0.3em 0 rgba(255, 178, 56, 0.28);
  display: inline-block;
}
body.root--candidate-2026-a .candidate-hero .copy-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
body.root--candidate-2026-a .candidate-hero .actions-primary,
body.root--candidate-2026-a .candidate-hero .actions-secondary {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  gap: 8px;
  padding: 15px 24px;
}
body.root--candidate-2026-a .candidate-hero .actions-primary {
  background: var(--color-text-high-contrast);
  color: var(--color-background-primary);
}
body.root--candidate-2026-a .candidate-hero .actions-secondary {
  background: transparent;
  border: 1px solid var(--candidate-line-strong);
  color: var(--color-text-high-contrast);
}
body.root--candidate-2026-a .candidate-hero .copy-metadata {
  color: var(--color-text-medium-contrast);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 30px;
}
body.root--candidate-2026-a .candidate-hero .metadata-item {
  align-items: center;
  display: inline-flex;
  font-family: monospace;
  font-size: 12px;
  gap: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-hero .metadata-item a {
  text-decoration: underline;
}
body.root--candidate-2026-a .candidate-hero .item-icon {
  border: 1.5px solid var(--candidate-accent);
  border-radius: 50%;
  display: inline-block;
  height: 14px;
  position: relative;
  width: 14px;
}
body.root--candidate-2026-a .candidate-hero .item-icon::after {
  border-bottom: 1.5px solid var(--candidate-accent);
  border-right: 1.5px solid var(--candidate-accent);
  content: "";
  height: 6px;
  left: 4px;
  position: absolute;
  top: 1px;
  transform: rotate(40deg);
  width: 3px;
}
body.root--candidate-2026-a .candidate-hero .hero-visual {
  min-height: 560px;
  position: relative;
}
body.root--candidate-2026-a .candidate-hero .visual-card {
  background: var(--candidate-panel);
  border: 1px solid var(--candidate-line);
  border-radius: 18px;
  box-shadow: var(--candidate-shadow);
  padding: 20px;
  position: absolute;
}
body.root--candidate-2026-a .candidate-hero .card-note {
  right: 24px;
  top: 0;
  transform: rotate(2deg);
  width: min(100%, 330px);
  z-index: 4;
}
body.root--candidate-2026-a .candidate-hero .card-quarter {
  left: 0;
  top: 140px;
  transform: rotate(-3deg);
  width: min(100%, 290px);
  z-index: 3;
}
body.root--candidate-2026-a .candidate-hero .card-agent {
  background: linear-gradient(135deg, #1c2b37, #272f35);
  border-color: transparent;
  bottom: 0;
  color: #fff;
  right: 54px;
  transform: rotate(1deg);
  width: min(100%, 310px);
  z-index: 5;
}
body.root--candidate-2026-a .candidate-hero .card-agent .card-head,
body.root--candidate-2026-a .candidate-hero .card-agent .card-copy {
  color: rgba(var(--candidate-alpha-light-rgb), 0.78);
}
body.root--candidate-2026-a .candidate-hero .card-agent .card-title {
  color: #fff;
}
body.root--candidate-2026-a .candidate-hero .card-mood {
  background: var(--candidate-panel-soft);
  bottom: 110px;
  left: 40px;
  transform: rotate(-2deg);
  width: min(100%, 250px);
  z-index: 2;
}
body.root--candidate-2026-a .candidate-hero .card-head {
  color: var(--color-text-medium-contrast);
  display: flex;
  font-family: monospace;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-hero .card-title {
  font-family: "PT Serif", serif;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 14px;
}
body.root--candidate-2026-a .candidate-hero .card-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
body.root--candidate-2026-a .candidate-hero .card-list li {
  align-items: flex-start;
  color: var(--color-text-medium-contrast);
  display: flex;
  gap: 9px;
}
body.root--candidate-2026-a .candidate-hero .list-check {
  border: 1.5px solid var(--candidate-line-strong);
  border-radius: 5px;
  flex: 0 0 14px;
  height: 14px;
  margin-top: 4px;
  position: relative;
  width: 14px;
}
body.root--candidate-2026-a .candidate-hero .is-done .list-check {
  background: var(--candidate-accent);
  border-color: var(--candidate-accent);
}
body.root--candidate-2026-a .candidate-hero .is-done .list-check::after {
  border-bottom: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  content: "";
  height: 6px;
  left: 4px;
  position: absolute;
  top: 1px;
  transform: rotate(40deg);
  width: 3px;
}
body.root--candidate-2026-a .candidate-hero .is-done span:last-child {
  opacity: 0.6;
  text-decoration: line-through;
}
body.root--candidate-2026-a .candidate-hero .callout {
  color: var(--candidate-highlight);
}
body.root--candidate-2026-a .candidate-hero .card-copy,
body.root--candidate-2026-a .candidate-hero .card-quote {
  color: var(--color-text-medium-contrast);
  line-height: 1.6;
  margin: 0;
}
body.root--candidate-2026-a .candidate-hero .card-pips {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
body.root--candidate-2026-a .candidate-hero .pips-item {
  align-items: center;
  background: rgba(var(--candidate-alpha-surface-rgb), 0.06);
  border-radius: 999px;
  display: inline-flex;
  font-family: monospace;
  height: 30px;
  justify-content: center;
  min-width: 30px;
  padding: 0 8px;
}
body.root--candidate-2026-a .candidate-hero .is-active {
  background: var(--candidate-highlight);
  color: #1c2b37;
  font-weight: 700;
}
body.root--candidate-2026-a .candidate-proof {
  border-bottom: 1px solid var(--candidate-line);
  border-top: 1px solid var(--candidate-line);
  padding: 20px 0;
}
body.root--candidate-2026-a .candidate-proof .proof-shell {
  align-items: center;
  color: var(--color-text-medium-contrast);
  display: flex;
  flex-wrap: wrap;
  font-family: monospace;
  font-size: 11px;
  gap: 12px;
  justify-content: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-proof .shell-divider {
  background: var(--candidate-line-strong);
  display: inline-block;
  height: 14px;
  width: 1px;
}
body.root--candidate-2026-a .candidate-journey,
body.root--candidate-2026-a .candidate-dashboard,
body.root--candidate-2026-a .candidate-quotes,
body.root--candidate-2026-a .candidate-cta {
  padding: 110px 0;
}
body.root--candidate-2026-a .candidate-journey a,
body.root--candidate-2026-a .candidate-dashboard a,
body.root--candidate-2026-a .candidate-quotes a,
body.root--candidate-2026-a .candidate-cta a {
  text-decoration: underline;
}
body.root--candidate-2026-a .candidate-journey {
  background: var(--candidate-section);
}
body.root--candidate-2026-a .candidate-journey .journey-grid {
  display: grid;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-a .candidate-journey .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1400px) {
  body.root--candidate-2026-a .candidate-journey .journey-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
body.root--candidate-2026-a .candidate-journey .pic-mini img {
  border-radius: 5px;
  border: 1px solid var(--candidate-line);
  margin-top: 20px;
  width: 100%;
}
body.root--candidate-2026-a .candidate-journey .journey-step {
  background: var(--candidate-panel);
  border: 1px solid var(--candidate-line);
  border-radius: 20px;
  padding: 28px;
}
body.root--candidate-2026-a .candidate-journey .step-number {
  color: var(--candidate-accent);
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-journey .step-icon {
  background: rgba(11, 191, 125, 0.1);
  border-radius: 14px;
  color: var(--candidate-accent-strong);
  font-size: 24px;
  margin: 18px 0;
  padding: 12px;
}
body.root--candidate-2026-a .candidate-journey .step-title {
  font-family: "PT Serif", serif;
  font-size: 30px;
  line-height: 1.15;
  margin: 0;
}
body.root--candidate-2026-a .candidate-journey .step-title .accent {
  color: var(--candidate-accent);
  font-style: italic;
}
body.root--candidate-2026-a .candidate-journey .step-copy {
  color: var(--color-text-medium-contrast);
  line-height: 1.7;
  margin: 16px 0 0;
}
body.root--candidate-2026-a .candidate-journey .step-mini {
  background: var(--candidate-panel-soft);
  border: 1px solid var(--candidate-line);
  border-radius: 12px;
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 14px;
}
body.root--candidate-2026-a .candidate-journey .mini-row,
body.root--candidate-2026-a .candidate-journey .mini-pair,
body.root--candidate-2026-a .candidate-journey .mini-score {
  align-items: center;
  display: flex;
  font-family: monospace;
  font-size: 12px;
  gap: 10px;
  justify-content: space-between;
}
body.root--candidate-2026-a .candidate-journey .row-dot {
  background: var(--candidate-accent);
  border-radius: 50%;
  flex: 0 0 7px;
  height: 7px;
  width: 7px;
}
body.root--candidate-2026-a .candidate-journey .row-dot.is-warm {
  background: var(--candidate-highlight);
}
body.root--candidate-2026-a .candidate-journey .score-bar {
  background: linear-gradient(90deg, var(--candidate-accent), #3e92cc);
  border-radius: 999px;
  display: inline-block;
  flex: 1;
  height: 5px;
}
body.root--candidate-2026-a .candidate-journey .score-bar.is-tall {
  width: 88%;
}
body.root--candidate-2026-a .candidate-journey .score-bar.is-mid {
  width: 66%;
}
body.root--candidate-2026-a .candidate-journey .score-bar.is-low {
  width: 34%;
}
body.root--candidate-2026-a .candidate-dashboard {
  background: linear-gradient(180deg, rgba(211, 232, 245, 0.18), transparent);
}
body.root--candidate-2026-a .candidate-dashboard .dashboard-window {
  background: linear-gradient(180deg, rgba(62, 146, 204, 0.22), rgba(62, 146, 204, 0.12));
  border: 1px solid var(--candidate-line);
  border-radius: 26px;
  box-shadow: var(--candidate-shadow);
  padding: 24px;
}
body.root--candidate-2026-a .candidate-dashboard .window-toolbar {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 20px;
}
body.root--candidate-2026-a .candidate-dashboard .toolbar-tabs {
  background: rgba(var(--candidate-alpha-surface-rgb), 0.56);
  border-radius: 12px;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
}
body.root--candidate-2026-a .candidate-dashboard .tabs-tab {
  border-radius: 8px;
  color: #2f4858;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
}
body.root--candidate-2026-a .candidate-dashboard .tabs-tab.is-active {
  background: var(--candidate-accent);
  color: #fff;
}
body.root--candidate-2026-a .candidate-dashboard .toolbar-meta {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-dashboard .window-grid {
  display: grid;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-a .candidate-dashboard .window-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
body.root--candidate-2026-a .candidate-dashboard .grid-card {
  background: rgba(var(--candidate-alpha-surface-rgb), 0.92);
  border: 1px solid rgba(var(--candidate-alpha-surface-rgb), 0.6);
  border-radius: 18px;
  min-width: 0;
  padding: 22px;
}
body.root--candidate-2026-a .candidate-dashboard .card-heading {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
body.root--candidate-2026-a .candidate-dashboard .heading-icon {
  color: var(--candidate-accent-strong);
  font-size: 20px;
}
body.root--candidate-2026-a .candidate-dashboard .card-heading h3 {
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-dashboard .planning-pills,
body.root--candidate-2026-a .candidate-dashboard .planning-months,
body.root--candidate-2026-a .candidate-dashboard .metric-bars,
body.root--candidate-2026-a .candidate-dashboard .coach-actions {
  display: flex;
  gap: 8px;
}
body.root--candidate-2026-a .candidate-dashboard .planning-pills {
  margin-bottom: 14px;
}
body.root--candidate-2026-a .candidate-dashboard .pills-item {
  background: rgba(var(--candidate-alpha-surface-rgb), 0.55);
  border: 1px solid var(--candidate-line);
  border-radius: 10px;
  display: grid;
  flex: 1;
  gap: 4px;
  padding: 12px;
}
body.root--candidate-2026-a .candidate-dashboard .pills-item.is-active {
  border-color: var(--candidate-accent);
}
body.root--candidate-2026-a .candidate-dashboard .pills-item strong,
body.root--candidate-2026-a .candidate-dashboard .list-title,
body.root--candidate-2026-a .candidate-dashboard .coach-top p {
  margin: 0;
}
body.root--candidate-2026-a .candidate-dashboard .pills-item span,
body.root--candidate-2026-a .candidate-dashboard .planning-list li,
body.root--candidate-2026-a .candidate-dashboard .metric-label,
body.root--candidate-2026-a .candidate-dashboard .coach-copy,
body.root--candidate-2026-a .candidate-dashboard .row-time,
body.root--candidate-2026-a .candidate-dashboard .row-task {
  color: var(--color-text-medium-contrast);
}
body.root--candidate-2026-a .candidate-dashboard .planning-months {
  margin-bottom: 14px;
}
body.root--candidate-2026-a .candidate-dashboard .planning-months span {
  border: 1px solid var(--candidate-line);
  border-radius: 8px;
  font-family: monospace;
  font-size: 11px;
  padding: 7px 10px;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-dashboard .planning-months span.is-active {
  background: var(--candidate-highlight);
  border-color: var(--candidate-highlight);
  color: #1c2b37;
}
body.root--candidate-2026-a .candidate-dashboard .planning-list ul {
  margin: 10px 0 0;
  padding-left: 18px;
}
body.root--candidate-2026-a .candidate-dashboard .metric-number {
  font-family: "PT Serif", serif;
  font-size: 44px;
  line-height: 1;
  margin: 0;
}
body.root--candidate-2026-a .candidate-dashboard .metric-label {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin: 6px 0 20px;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-dashboard .metric-bars {
  align-items: flex-end;
  height: 120px;
  justify-content: space-between;
}
body.root--candidate-2026-a .candidate-dashboard .bars-column {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
}
body.root--candidate-2026-a .candidate-dashboard .column-value,
body.root--candidate-2026-a .candidate-dashboard .column-day {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 10px;
}
body.root--candidate-2026-a .candidate-dashboard .column-bar {
  background: #3e92cc;
  border-radius: 8px 8px 0 0;
  display: inline-block;
  width: 100%;
}
body.root--candidate-2026-a .candidate-dashboard .column-bar.peak {
  background: var(--candidate-accent-strong);
  height: 74px;
}
body.root--candidate-2026-a .candidate-dashboard .column-bar.medium {
  height: 42px;
}
body.root--candidate-2026-a .candidate-dashboard .column-bar.short {
  height: 22px;
}
body.root--candidate-2026-a .candidate-dashboard .column-bar.tiny {
  height: 12px;
}
body.root--candidate-2026-a .candidate-dashboard .coach-card {
  background: rgba(11, 191, 125, 0.06);
  border: 1px solid rgba(11, 191, 125, 0.14);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 14px;
}
body.root--candidate-2026-a .candidate-dashboard .coach-top {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
body.root--candidate-2026-a .candidate-dashboard .coach-top span {
  background: var(--candidate-accent);
  border-radius: 6px;
  color: #fff;
  flex: 0 0 auto;
  font-family: monospace;
  font-size: 10px;
  padding: 4px 6px;
}
body.root--candidate-2026-a .candidate-dashboard .coach-copy {
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0 0;
}
body.root--candidate-2026-a .candidate-dashboard .coach-actions {
  flex-wrap: wrap;
  font-family: monospace;
  font-size: 10px;
  margin-top: 12px;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-dashboard .coach-actions span {
  background: rgba(var(--candidate-alpha-surface-rgb), 0.65);
  border-radius: 999px;
  padding: 4px 8px;
}
body.root--candidate-2026-a .candidate-dashboard .sketcher {
  border-left: 3px solid var(--candidate-danger);
  display: grid;
  gap: 8px;
  padding-left: 14px;
}
body.root--candidate-2026-a .candidate-dashboard .sketcher-row {
  align-items: center;
  border-bottom: 1px solid rgba(11, 191, 125, 0.08);
  display: grid;
  gap: 12px;
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 28px;
}
body.root--candidate-2026-a .candidate-dashboard .row-time {
  font-family: monospace;
  font-size: 10px;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-dashboard .row-task {
  font-family: "PT Serif", serif;
  font-size: 15px;
  font-style: italic;
}
body.root--candidate-2026-a .candidate-dashboard .row-task.is-ghost {
  opacity: 0.56;
}
body.root--candidate-2026-a .candidate-mood {
  background: var(--candidate-section-alt);
  padding: 120px 0;
}
body.root--candidate-2026-a .candidate-mood a {
  text-decoration: underline;
}
body.root--candidate-2026-a .candidate-mood .mood-shell {
  align-items: center;
  display: grid;
  gap: 48px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-a .candidate-mood .mood-shell {
    gap: 88px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
body.root--candidate-2026-a .candidate-mood .copy-title {
  font-size: clamp(34px, 4vw, 64px);
}
body.root--candidate-2026-a .candidate-mood .copy-quote {
  border-left: 3px solid var(--candidate-highlight);
  margin-top: 28px;
  padding-left: 20px;
}
body.root--candidate-2026-a .candidate-mood .quote-text {
  font-family: "PT Serif", serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1.45;
  margin: 0;
}
body.root--candidate-2026-a .candidate-mood .quote-source {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin: 14px 0 0;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-mood .copy-stats {
  border-top: 1px solid var(--candidate-line);
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-a .candidate-mood .copy-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
body.root--candidate-2026-a .candidate-mood .stats-item strong {
  display: block;
  font-family: "PT Serif", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}
body.root--candidate-2026-a .candidate-mood .stats-item span {
  color: var(--color-text-medium-contrast);
  display: block;
  line-height: 1.6;
  margin-top: 8px;
}
body.root--candidate-2026-a .candidate-mood .mood-panel {
  background: var(--candidate-panel);
  border: 1px solid var(--candidate-line);
  border-radius: 24px;
  box-shadow: var(--candidate-shadow);
  padding: 28px;
}
body.root--candidate-2026-a .candidate-mood .panel-week {
  border-bottom: 1px dashed var(--candidate-line-strong);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding-bottom: 24px;
}
body.root--candidate-2026-a .candidate-mood .week-day {
  text-align: center;
}
body.root--candidate-2026-a .candidate-mood .day-face {
  align-items: center;
  background: rgba(255, 178, 56, 0.16);
  border-radius: 999px;
  display: inline-flex;
  font-family: monospace;
  font-size: 16px;
  height: 46px;
  justify-content: center;
  width: 46px;
}
body.root--candidate-2026-a .candidate-mood .day-face.high {
  background: rgba(11, 191, 125, 0.2);
}
body.root--candidate-2026-a .candidate-mood .day-face.low {
  background: rgba(245, 98, 76, 0.18);
}
body.root--candidate-2026-a .candidate-mood .day-name,
body.root--candidate-2026-a .candidate-mood .day-date {
  display: block;
  margin-top: 8px;
}
body.root--candidate-2026-a .candidate-mood .day-name {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-mood .day-date {
  font-family: "PT Serif", serif;
  font-size: 14px;
}
body.root--candidate-2026-a .candidate-mood .panel-correlation {
  margin-top: 22px;
}
body.root--candidate-2026-a .candidate-mood .correlation-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
body.root--candidate-2026-a .candidate-mood .correlation-head h3 {
  font-family: "PT Serif", serif;
  font-size: 26px;
  margin: 0;
}
body.root--candidate-2026-a .candidate-mood .correlation-head span {
  background: rgba(11, 191, 125, 0.12);
  border-radius: 999px;
  color: var(--candidate-accent-strong);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-mood .correlation-rows {
  display: grid;
  gap: 12px;
}
body.root--candidate-2026-a .candidate-mood .rows-row {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(90px, 120px) minmax(0, 1fr) auto;
}
body.root--candidate-2026-a .candidate-mood .row-bar {
  background: var(--candidate-panel-soft);
  border-radius: 999px;
  overflow: hidden;
  width: 100%;
}
body.root--candidate-2026-a .candidate-mood .fill {
  border-radius: 999px;
  display: block;
  height: 8px;
}
body.root--candidate-2026-a .candidate-mood .fill.is-positive {
  background: linear-gradient(90deg, var(--candidate-accent), #3e92cc);
}
body.root--candidate-2026-a .candidate-mood .fill.is-negative {
  background: linear-gradient(90deg, #f5624c, var(--candidate-highlight));
}
body.root--candidate-2026-a .candidate-mood .fill.is-very-high {
  width: 88%;
}
body.root--candidate-2026-a .candidate-mood .fill.is-high {
  width: 74%;
}
body.root--candidate-2026-a .candidate-mood .fill.is-mid {
  width: 58%;
}
body.root--candidate-2026-a .candidate-agent {
  background: radial-gradient(circle at top right, rgba(255, 178, 56, 0.14), transparent 30%), radial-gradient(circle at bottom left, rgba(11, 191, 125, 0.1), transparent 30%), #1c2b37;
  color: #fff;
  padding: 128px 0;
}
body.root--candidate-2026-a .candidate-agent a {
  text-decoration: underline;
}
body.root--candidate-2026-a .candidate-agent .copy-kicker,
body.root--candidate-2026-a .candidate-agent .side-copy,
body.root--candidate-2026-a .candidate-agent .card-copy,
body.root--candidate-2026-a .candidate-agent .copy-body {
  color: rgba(var(--candidate-alpha-light-rgb), 0.74);
}
body.root--candidate-2026-a .candidate-agent .copy-title .accent,
body.root--candidate-2026-a .candidate-agent .pricing-pill .pill-copy,
body.root--candidate-2026-a .candidate-agent .terminal-output,
body.root--candidate-2026-a .candidate-agent .line-label {
  color: var(--candidate-highlight);
}
body.root--candidate-2026-a .candidate-agent .agent-head {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-a .candidate-agent .agent-head {
    align-items: end;
    gap: 72px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  }
}
body.root--candidate-2026-a .candidate-agent .side-pill {
  background: rgba(255, 178, 56, 0.12);
  border: 1px solid rgba(255, 178, 56, 0.3);
  border-radius: 999px;
  color: var(--candidate-highlight);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  padding: 12px 18px;
}
body.root--candidate-2026-a .candidate-agent .agent-grid {
  display: grid;
  gap: 18px;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-a .candidate-agent .agent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1400px) {
  body.root--candidate-2026-a .candidate-agent .agent-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
body.root--candidate-2026-a .candidate-agent .agent-card,
body.root--candidate-2026-a .candidate-agent .agent-feature,
body.root--candidate-2026-a .candidate-agent .pricing-pill {
  background: rgba(var(--candidate-alpha-light-rgb), 0.04);
  border: 1px solid rgba(var(--candidate-alpha-light-rgb), 0.08);
  border-radius: 20px;
}
body.root--candidate-2026-a .candidate-agent .agent-card {
  padding: 22px;
}
body.root--candidate-2026-a .candidate-agent .card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
body.root--candidate-2026-a .candidate-agent .top-icon {
  background: rgba(255, 178, 56, 0.14);
  border-radius: 12px;
  color: var(--candidate-highlight);
  font-size: 20px;
  padding: 10px;
}
body.root--candidate-2026-a .candidate-agent .top-tag {
  background: rgba(11, 191, 125, 0.2);
  border-radius: 999px;
  color: #b8ffdf;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-agent .agent-card .card-title {
  font-family: "PT Serif", serif;
  font-size: 24px;
  margin: 0 0 8px;
}
body.root--candidate-2026-a .candidate-agent .agent-feature {
  display: grid;
  gap: 32px;
  margin-top: 36px;
  padding: 32px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-a .candidate-agent .agent-feature {
    align-items: center;
    gap: 56px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
body.root--candidate-2026-a .candidate-agent .feature-copy .copy-title {
  font-size: clamp(32px, 3vw, 48px);
}
body.root--candidate-2026-a .candidate-agent .copy-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 18px;
}
body.root--candidate-2026-a .candidate-agent .feature-terminal {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(var(--candidate-alpha-light-rgb), 0.1);
  border-radius: 16px;
  font-family: monospace;
  font-size: 13px;
  line-height: 1.75;
  padding: 22px;
}
body.root--candidate-2026-a .candidate-agent .terminal-line {
  display: flex;
  gap: 12px;
}
body.root--candidate-2026-a .candidate-agent .line-label {
  flex: 0 0 auto;
}
body.root--candidate-2026-a .candidate-agent .terminal-actions {
  color: rgba(var(--candidate-alpha-light-rgb), 0.88);
  margin-top: 10px;
}
body.root--candidate-2026-a .candidate-agent .agent-pricing {
  margin-top: 36px;
  text-align: center;
}
body.root--candidate-2026-a .candidate-agent .pricing-pill {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  padding: 26px 28px;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-a .candidate-agent .pricing-pill {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
body.root--candidate-2026-a .candidate-agent .pill-price strong {
  font-family: "PT Serif", serif;
  font-size: 40px;
  font-weight: 400;
}
body.root--candidate-2026-a .candidate-agent .pill-price span {
  color: rgba(var(--candidate-alpha-light-rgb), 0.66);
  margin-left: 4px;
}
body.root--candidate-2026-a .candidate-agent a.pill-cta {
  align-items: center;
  background: var(--candidate-highlight);
  border-radius: 999px;
  color: #1c2b37;
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
  padding: 14px 20px;
  text-decoration: none;
  white-space: nowrap;
}
body.root--candidate-2026-a .candidate-quotes {
  background: var(--candidate-section);
}
body.root--candidate-2026-a .candidate-quotes .quotes-grid {
  display: grid;
  gap: 24px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-a .candidate-quotes .quotes-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
body.root--candidate-2026-a .candidate-quotes .quotes-card {
  background: var(--candidate-panel);
  border: 1px solid var(--candidate-line);
  border-radius: 20px;
  padding: 28px;
}
body.root--candidate-2026-a .candidate-quotes .quotes-card.dark {
  background: #1c2b37;
  border-color: transparent;
  color: #fff;
}
body.root--candidate-2026-a .candidate-quotes .quotes-card.dark .card-person span:last-child {
  color: rgba(var(--candidate-alpha-light-rgb), 0.68);
}
body.root--candidate-2026-a .candidate-quotes .quotes-card.warm {
  background: linear-gradient(180deg, rgba(255, 239, 216, 0.94), rgba(255, 178, 56, 0.3));
  color: #1c2b37;
}
body.root--candidate-2026-a .candidate-quotes .quotes-card.warm .card-person {
  border-top-color: rgba(28, 43, 55, 0.16);
}
body.root--candidate-2026-a .candidate-quotes .quotes-card.warm .person-copy span {
  color: rgba(28, 43, 55, 0.62);
}
body.root--candidate-2026-a .candidate-quotes .card-mark {
  color: var(--candidate-accent);
  display: inline-block;
  font-family: "PT Serif", serif;
  font-size: 66px;
  line-height: 0.8;
  margin-bottom: 10px;
}
body.root--candidate-2026-a .candidate-quotes .card-text {
  font-family: "PT Serif", serif;
  font-size: 22px;
  line-height: 1.55;
  margin: 0;
}
body.root--candidate-2026-a .candidate-quotes .large .card-text {
  font-size: 25px;
}
body.root--candidate-2026-a .candidate-quotes .card-person {
  align-items: center;
  border-top: 1px solid var(--candidate-line);
  display: flex;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
}
body.root--candidate-2026-a .candidate-quotes .person-avatar {
  align-items: center;
  background: var(--candidate-accent);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: monospace;
  font-size: 13px;
  height: 38px;
  justify-content: center;
  width: 38px;
}
body.root--candidate-2026-a .candidate-quotes .person-copy strong,
body.root--candidate-2026-a .candidate-quotes .person-copy span {
  display: block;
}
body.root--candidate-2026-a .candidate-quotes .person-copy span {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-cta {
  text-align: center;
}
body.root--candidate-2026-a .candidate-cta .cta-shell {
  max-width: 860px;
}
body.root--candidate-2026-a .candidate-cta .shell-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}
body.root--candidate-2026-a .candidate-cta .shell-copy {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}
body.root--candidate-2026-a .candidate-cta .shell-footnote {
  color: var(--color-text-medium-contrast);
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin: 16px 0 0;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-footer {
  background: #1c2b37;
  color: rgba(var(--candidate-alpha-light-rgb), 0.76);
  padding: 72px 0 40px;
}
body.root--candidate-2026-a .candidate-footer .footer-shell {
  display: grid;
  gap: 36px;
}
@media only screen and (min-width: 1024px) {
  body.root--candidate-2026-a .candidate-footer .footer-shell {
    grid-template-columns: minmax(220px, 1.1fr) minmax(0, 2fr);
  }
}
body.root--candidate-2026-a .candidate-footer .brand-link {
  align-items: center;
  color: #fff;
  display: inline-flex;
  gap: 12px;
}
body.root--candidate-2026-a .candidate-footer .brand-copy {
  line-height: 1.7;
  margin: 16px 0 0;
  max-width: 320px;
}
body.root--candidate-2026-a .candidate-footer .footer-columns {
  display: grid;
  gap: 28px;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-a .candidate-footer .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1400px) {
  body.root--candidate-2026-a .candidate-footer .footer-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
body.root--candidate-2026-a .candidate-footer .column-title {
  color: #fff;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
body.root--candidate-2026-a .candidate-footer .column-links {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
body.root--candidate-2026-a .candidate-footer .column-links a:hover {
  color: var(--candidate-highlight);
}
body.root--candidate-2026-a .candidate-footer .footer-bottom {
  border-top: 1px solid rgba(var(--candidate-alpha-light-rgb), 0.12);
  color: rgba(var(--candidate-alpha-light-rgb), 0.58);
  display: flex;
  flex-direction: column;
  font-family: monospace;
  font-size: 11px;
  gap: 10px;
  margin-top: 40px;
  padding-top: 24px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  body.root--candidate-2026-a .candidate-footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  body.root--candidate-2026-a .candidate-nav .nav-shell {
    align-items: flex-start;
    flex-direction: column;
  }
  body.root--candidate-2026-a .candidate-hero {
    padding-top: 48px;
  }
  body.root--candidate-2026-a .candidate-hero .hero-visual {
    min-height: 620px;
  }
  body.root--candidate-2026-a .candidate-hero .card-note {
    right: 0;
  }
  body.root--candidate-2026-a .candidate-hero .card-quarter {
    left: 12px;
  }
  body.root--candidate-2026-a .candidate-hero .card-agent {
    right: 12px;
  }
  body.root--candidate-2026-a .candidate-hero .card-mood {
    bottom: 126px;
    left: 12px;
  }
  body.root--candidate-2026-a .candidate-proof .proof-shell {
    justify-content: flex-start;
  }
  body.root--candidate-2026-a .candidate-mood .panel-week {
    gap: 10px;
  }
  body.root--candidate-2026-a .candidate-dashboard .window-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  body.root--candidate-2026-a .candidate-journey,
  body.root--candidate-2026-a .candidate-dashboard,
  body.root--candidate-2026-a .candidate-mood,
  body.root--candidate-2026-a .candidate-agent,
  body.root--candidate-2026-a .candidate-quotes,
  body.root--candidate-2026-a .candidate-cta {
    padding: 84px 0;
  }
  body.root--candidate-2026-a .candidate-hero .hero-visual {
    min-height: 680px;
  }
  body.root--candidate-2026-a .candidate-hero .visual-card {
    position: relative;
    transform: none;
    width: 100%;
  }
  body.root--candidate-2026-a .candidate-hero .card-note,
  body.root--candidate-2026-a .candidate-hero .card-quarter,
  body.root--candidate-2026-a .candidate-hero .card-agent,
  body.root--candidate-2026-a .candidate-hero .card-mood {
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
  }
  body.root--candidate-2026-a .candidate-hero .hero-visual {
    display: grid;
    gap: 16px;
  }
  body.root--candidate-2026-a .candidate-proof .shell-divider {
    display: none;
  }
  body.root--candidate-2026-a .candidate-mood .panel-week {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  body.root--candidate-2026-a .candidate-mood .rows-row {
    grid-template-columns: 1fr;
  }
  body.root--candidate-2026-a .candidate-dashboard .grid-card,
  body.root--candidate-2026-a .candidate-agent .agent-feature,
  body.root--candidate-2026-a .candidate-agent .agent-card,
  body.root--candidate-2026-a .candidate-quotes .quotes-card {
    padding: 20px;
  }
}
