@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --surface-deep: #1C2B3A;
  --surface-panel: #243447;
  --surface-paper: #F7F5F0;
  --surface-white: #FFFFFF;
  --accent-teal: #14897A;
  --accent-teal-light: #1BAD98;
  --accent-amber: #D97706;
  --text-ink: #1C2B3A;
  --text-secondary: #4A5E72;
  --text-ghost: #8A9BAD;
  --text-on-dark: #E8EFF5;
  --text-on-dark-muted: #8FA8BF;
  --rule-line: #D4D0C8;
  --rule-line-dark: #2E4156;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --container-max: 1140px;
  --section-pad-v: clamp(60px, 8vw, 100px);
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-ink);
  background-color: var(--surface-deep);
}

body.evue-page--light-top {
  background-color: var(--surface-paper);
}

body.evue-page--dark-top {
  background-color: var(--surface-deep);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

.evue-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.evue-section--dark {
  background-color: var(--surface-deep);
  color: var(--text-on-dark);
}

.evue-section--dark-alt {
  background-color: var(--surface-panel);
  color: var(--text-on-dark);
}

.evue-section--light {
  background-color: var(--surface-paper);
  color: var(--text-ink);
}

.evue-section--white {
  background-color: var(--surface-white);
  color: var(--text-ink);
}

.evue-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  height: 68px;
  display: flex;
  align-items: center;
}

.evue-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  gap: 2rem;
}

.evue-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.evue-nav__logo img {
  height: 32px;
  width: auto;
}

.evue-logo--light {
  display: none;
}

.evue-logo--dark {
  display: block;
}

.evue-page--dark-top .evue-nav .evue-logo--light {
  display: block;
}

.evue-page--dark-top .evue-nav .evue-logo--dark {
  display: none;
}

.evue-page--light-top .evue-nav .evue-logo--light {
  display: none;
}

.evue-page--light-top .evue-nav .evue-logo--dark {
  display: block;
}

.evue-nav--scrolled.evue-nav .evue-logo--light {
  display: block !important;
}

.evue-nav--scrolled.evue-nav .evue-logo--dark {
  display: none !important;
}

.evue-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.evue-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background-color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.evue-page--dark-top .evue-nav .evue-nav__link {
  color: var(--text-on-dark);
}

.evue-page--dark-top .evue-nav .evue-nav__link:hover {
  color: #ffffff;
  background-color: rgba(255,255,255,0.08);
}

.evue-page--light-top .evue-nav .evue-nav__link {
  color: var(--text-ink);
}

.evue-page--light-top .evue-nav .evue-nav__link:hover {
  color: var(--accent-teal);
  background-color: rgba(20,137,122,0.06);
}

.evue-nav--scrolled .evue-nav__link {
  color: var(--text-on-dark) !important;
}

.evue-nav--scrolled .evue-nav__link:hover {
  color: #ffffff !important;
  background-color: rgba(255,255,255,0.08) !important;
}

.evue-nav__dropdown-wrap {
  position: relative;
}

.evue-nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
  background: none;
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
}

.evue-page--dark-top .evue-nav .evue-nav__dropdown-toggle {
  color: var(--text-on-dark);
}

.evue-page--light-top .evue-nav .evue-nav__dropdown-toggle {
  color: var(--text-ink);
}

.evue-nav--scrolled .evue-nav__dropdown-toggle {
  color: var(--text-on-dark) !important;
}

.evue-nav__dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.evue-nav__dropdown-wrap.is-open .evue-nav__dropdown-caret {
  transform: rotate(180deg);
}

.evue-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background-color: var(--surface-white);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 180px;
  overflow: hidden;
  display: none;
  z-index: 100;
}

.evue-nav__dropdown-wrap.is-open .evue-nav__dropdown {
  display: block;
}

.evue-nav__dropdown-item {
  display: block;
  padding: 0.75rem 1.125rem;
  font-size: 0.9rem;
  color: var(--text-ink);
  font-weight: 500;
  transition: background-color 0.15s, color 0.15s;
  text-decoration: none;
}

.evue-nav__dropdown-item:hover {
  background-color: var(--surface-paper);
  color: var(--accent-teal);
}

.evue-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.evue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  height: 44px;
  padding-inline: 1.25rem;
  border-radius: var(--radius-md);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.evue-btn--primary {
  background-color: var(--accent-teal);
  color: #ffffff;
  border-color: var(--accent-teal);
}

.evue-btn--primary:hover {
  background-color: var(--accent-teal-light);
  border-color: var(--accent-teal-light);
  color: #ffffff;
}

.evue-btn--ghost-on-dark {
  background: transparent;
  color: var(--text-on-dark-muted);
  border-color: transparent;
}

.evue-btn--ghost-on-dark:hover {
  color: var(--text-on-dark);
  text-decoration: underline;
}

.evue-btn--outline-on-dark {
  background: transparent;
  color: var(--accent-teal-light);
  border-color: var(--accent-teal-light);
}

.evue-btn--outline-on-dark:hover {
  background-color: var(--accent-teal);
  color: #ffffff;
  border-color: var(--accent-teal);
}

.evue-btn--ghost-on-light {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}

.evue-btn--ghost-on-light:hover {
  color: var(--accent-teal);
  text-decoration: underline;
}

.evue-btn--outline-on-light {
  background: transparent;
  color: var(--accent-teal);
  border-color: var(--accent-teal);
}

.evue-btn--outline-on-light:hover {
  background-color: var(--accent-teal);
  color: #ffffff;
}

.evue-btn--lg {
  height: 52px;
  padding-inline: 1.75rem;
  font-size: 1rem;
}

.evue-btn--sm {
  height: 36px;
  padding-inline: 1rem;
  font-size: 0.875rem;
}

.evue-page--dark-top .evue-nav .evue-btn--ghost-on-dark {
  color: var(--text-on-dark-muted);
}

.evue-page--light-top .evue-nav .evue-btn--ghost-on-light {
  color: var(--text-secondary);
}

.evue-nav--scrolled .evue-btn--ghost-on-light,
.evue-nav--scrolled .evue-btn--ghost-on-dark {
  color: var(--text-on-dark-muted) !important;
}

.evue-nav--scrolled .evue-btn--ghost-on-light:hover,
.evue-nav--scrolled .evue-btn--ghost-on-dark:hover {
  color: var(--text-on-dark) !important;
}

.evue-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.evue-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.evue-page--dark-top .evue-nav .evue-nav__hamburger {
  color: var(--text-on-dark);
}

.evue-page--light-top .evue-nav .evue-nav__hamburger {
  color: var(--text-ink);
}

.evue-nav--scrolled .evue-nav__hamburger {
  color: var(--text-on-dark) !important;
}

.evue-nav--scrolled {
  background-color: var(--surface-deep) !important;
  box-shadow: 0 1px 0 var(--rule-line-dark);
}

.evue-page--dark-top .evue-nav {
  background-color: transparent;
}

.evue-page--light-top .evue-nav {
  background-color: var(--surface-paper);
  box-shadow: 0 1px 0 var(--rule-line);
}

.evue-page--light-top .evue-nav--scrolled {
  background-color: var(--surface-deep) !important;
  box-shadow: 0 1px 0 var(--rule-line-dark) !important;
}

.evue-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background-color: var(--surface-deep);
  z-index: 999;
  border-top: 1px solid var(--rule-line-dark);
  padding: 1rem;
}

.evue-mobile-menu.is-open {
  display: block;
}

.evue-mobile-menu__link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-on-dark);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color 0.15s;
}

.evue-mobile-menu__link:hover {
  background-color: rgba(255,255,255,0.06);
}

.evue-mobile-menu__subnav {
  padding-left: 1rem;
  border-left: 2px solid var(--rule-line-dark);
  margin: 0.25rem 0 0.5rem 1rem;
}

.evue-mobile-menu__sublink {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.evue-mobile-menu__sublink:hover {
  color: var(--text-on-dark);
}

.evue-mobile-menu__actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule-line-dark);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.evue-hero {
  padding-top: calc(68px + clamp(3.5rem, 8vw, 6rem));
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.evue-hero--dark {
  background-color: var(--surface-deep);
}

.evue-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.evue-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.evue-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-teal-light);
}

.evue-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-on-dark);
}

.evue-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  max-width: 480px;
}

.evue-hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.evue-hero__visual {
  display: flex;
  align-items: stretch;
  min-height: 380px;
}

.evue-interface-mock {
  background-color: var(--surface-panel);
  border: 1px solid var(--rule-line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.evue-interface-mock__titlebar {
  background-color: #0E1B28;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--rule-line-dark);
  flex-shrink: 0;
}

.evue-interface-mock__dots {
  display: flex;
  gap: 6px;
}

.evue-interface-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.evue-interface-mock__dot--red { background-color: #FF5F57; }
.evue-interface-mock__dot--yellow { background-color: #FEBC2E; }
.evue-interface-mock__dot--green { background-color: #28C840; }

.evue-interface-mock__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
}

.evue-interface-mock__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: 0;
}

.evue-interface-mock__col {
  padding: 1rem;
  overflow: hidden;
}

.evue-interface-mock__col + .evue-interface-mock__col {
  border-left: 1px solid var(--rule-line-dark);
}

.evue-interface-mock__col-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.75rem;
}

.evue-criterion-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(46,65,86,0.6);
  font-size: 0.8rem;
  color: var(--text-on-dark);
}

.evue-criterion-row:last-child {
  border-bottom: none;
}

.evue-criterion-badge {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  margin-top: 1px;
}

.evue-criterion-badge--inc {
  background-color: var(--accent-teal);
  color: #fff;
}

.evue-criterion-badge--exc {
  background-color: var(--accent-amber);
  color: #fff;
}

.evue-patient-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.625rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.375rem;
  font-size: 0.8rem;
  background-color: rgba(255,255,255,0.03);
  color: var(--text-on-dark);
}

.evue-patient-row--eligible {
  background-color: rgba(20,137,122,0.12);
  border-left: 2px solid var(--accent-teal);
}

.evue-patient-row--flag {
  background-color: rgba(217,119,6,0.1);
  border-left: 2px solid var(--accent-amber);
}

.evue-patient-id {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
}

.evue-match-chip {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
}

.evue-match-chip--green {
  background-color: rgba(20,137,122,0.25);
  color: #1BAD98;
}

.evue-match-chip--amber {
  background-color: rgba(217,119,6,0.2);
  color: #F59E0B;
}

.evue-problem-strip {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.evue-problem-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.evue-metric-cell {
  padding: 1.75rem 2rem;
  text-align: center;
  position: relative;
}

.evue-metric-cell + .evue-metric-cell {
  border-left: 1px solid var(--rule-line-dark);
}

.evue-metric-cell__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--accent-teal-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.evue-metric-cell__caption {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  max-width: 200px;
  margin-inline: auto;
}

.evue-what-we-do {
  padding: var(--section-pad-v) 0;
}

.evue-what-we-do__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.evue-section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 0.75rem;
  display: block;
}

.evue-section-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-ink);
  margin-bottom: 1.25rem;
}

.evue-section--dark .evue-section-headline,
.evue-section--dark-alt .evue-section-headline {
  color: var(--text-on-dark);
}

.evue-prose-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.evue-section--dark .evue-prose-text,
.evue-section--dark-alt .evue-prose-text {
  color: var(--text-on-dark-muted);
}

.evue-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.evue-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule-line);
}

.evue-step-item:last-child {
  border-bottom: none;
}

.evue-step-circle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent-teal);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 2px;
}

.evue-step-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.evue-audience-section {
  padding: var(--section-pad-v) 0;
}

.evue-audience-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.evue-audience-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.evue-audience-card {
  background-color: var(--surface-white);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.evue-audience-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.evue-audience-card--featured {
  grid-row: span 1;
}

.evue-audience-card__accent {
  height: 4px;
  background-color: var(--accent-teal);
}

.evue-audience-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}

.evue-audience-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: rgba(20,137,122,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 1.125rem;
}

.evue-audience-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1.3;
}

.evue-audience-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.evue-audience-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule-line);
}

.evue-audience-card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.evue-audience-card__feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-teal);
  flex-shrink: 0;
}

.evue-audience-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-teal);
  margin-top: 0.5rem;
  transition: gap 0.2s;
  text-decoration: none;
}

.evue-audience-card:hover .evue-audience-card__link {
  gap: 0.625rem;
}

.evue-hipaa-section {
  padding: var(--section-pad-v) 0;
}

.evue-hipaa-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.evue-hipaa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(20,137,122,0.1);
  border: 1px solid rgba(20,137,122,0.2);
  border-radius: 20px;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-teal);
  margin-bottom: 1.25rem;
}

.evue-data-flow-diagram {
  background-color: var(--surface-white);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.evue-testimonials-section {
  padding: var(--section-pad-v) 0;
}

.evue-testimonials-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.evue-testimonials-section__header .evue-section-headline {
  color: var(--text-on-dark);
}

.evue-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.evue-testimonial-card {
  background-color: var(--surface-panel);
  border: 1px solid var(--rule-line-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.evue-testimonial-card__quote-mark {
  width: 28px;
  height: 28px;
  color: var(--accent-teal);
  opacity: 0.7;
}

.evue-testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-on-dark);
}

.evue-testimonial-card__attribution {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule-line-dark);
}

.evue-cta-footer-section {
  padding: var(--section-pad-v) 0;
}

.evue-cta-footer-section__inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.evue-cta-footer-section__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: 2rem;
}

.evue-cta-footer-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.evue-footer {
  background-color: var(--surface-deep);
  border-top: 1px solid var(--rule-line-dark);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}

.evue-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule-line-dark);
}

.evue-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.evue-footer__logo {
  display: block;
  margin-bottom: 0.25rem;
}

.evue-footer__logo img {
  height: 28px;
  width: auto;
}

.evue-footer__tagline {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}

.evue-footer__address {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  font-style: normal;
}

.evue-footer__address a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.evue-footer__address a:hover {
  color: var(--text-on-dark);
}

.evue-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.evue-footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 0.25rem;
}

.evue-footer__nav-link {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 0.15s;
  display: block;
}

.evue-footer__nav-link:hover {
  color: var(--text-on-dark);
}

.evue-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.evue-footer__copyright {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
}

.evue-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.evue-footer__legal-link {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.evue-footer__legal-link:hover {
  color: var(--text-on-dark);
}

.evue-page-hero {
  padding-top: calc(68px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.evue-page-hero--dark {
  background-color: var(--surface-deep);
}

.evue-page-hero--light {
  background-color: var(--surface-paper);
}

.evue-page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.evue-page-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.evue-page-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}

.evue-page-hero--dark .evue-page-hero__h1 {
  color: var(--text-on-dark);
}

.evue-page-hero--light .evue-page-hero__h1 {
  color: var(--text-ink);
}

.evue-page-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.evue-page-hero--dark .evue-page-hero__sub {
  color: var(--text-on-dark-muted);
}

.evue-page-hero--light .evue-page-hero__sub {
  color: var(--text-secondary);
}

.evue-page-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

.evue-content-section {
  padding: var(--section-pad-v) 0;
}

.evue-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.evue-two-col--wide-left {
  grid-template-columns: 3fr 2fr;
}

.evue-two-col--wide-right {
  grid-template-columns: 2fr 3fr;
}

.evue-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.evue-content-card {
  background-color: var(--surface-white);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.evue-content-card--paper {
  background-color: var(--surface-paper);
}

.evue-content-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(20,137,122,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 1.125rem;
}

.evue-content-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-ink);
  line-height: 1.3;
}

.evue-content-card__body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.evue-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.evue-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-line);
}

.evue-feature-item:last-child {
  border-bottom: none;
}

.evue-feature-item__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(20,137,122,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 0.625rem;
  margin-top: 2px;
}

.evue-feature-item__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.evue-mock-panel {
  background-color: var(--surface-panel);
  border: 1px solid var(--rule-line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.evue-mock-panel__header {
  background-color: #0E1B28;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--rule-line-dark);
}

.evue-mock-panel__title-bar {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
}

.evue-mock-panel__body {
  padding: 1.25rem;
}

.evue-mock-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.evue-mock-table th {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-muted);
  text-align: left;
  padding: 0.5rem 0.625rem;
  border-bottom: 1px solid var(--rule-line-dark);
  font-weight: 500;
}

.evue-mock-table td {
  padding: 0.5625rem 0.625rem;
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(46,65,86,0.5);
}

.evue-mock-table tr:last-child td {
  border-bottom: none;
}

.evue-status-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.evue-status-badge--eligible {
  background-color: rgba(20,137,122,0.2);
  color: #1BAD98;
}

.evue-status-badge--flag {
  background-color: rgba(217,119,6,0.2);
  color: #F59E0B;
}

.evue-status-badge--review {
  background-color: rgba(138,155,173,0.2);
  color: var(--text-on-dark-muted);
}

.evue-pricing-section {
  padding: var(--section-pad-v) 0;
}

.evue-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.evue-pricing-card {
  background-color: var(--surface-white);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.evue-pricing-card--highlighted {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 1px var(--accent-teal), 0 8px 32px rgba(20,137,122,0.15);
  position: relative;
}

.evue-pricing-card__featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-teal);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.evue-pricing-card__name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.evue-pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}

.evue-pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1;
}

.evue-pricing-card__amount--custom {
  font-size: 1.75rem;
  font-family: var(--font-heading);
  color: var(--text-ink);
}

.evue-pricing-card__unit {
  font-size: 0.8125rem;
  color: var(--text-ghost);
  line-height: 1.4;
}

.evue-pricing-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule-line);
}

.evue-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.evue-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.evue-pricing-card__feature-icon {
  color: var(--accent-teal);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 3px;
}

.evue-pricing-card__cta {
  margin-top: auto;
}

.evue-faq-section {
  padding: var(--section-pad-v) 0;
}

.evue-faq-section__header {
  margin-bottom: 2rem;
}

.evue-faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
}

.evue-faq-item {
  border-top: 1px solid var(--rule-line);
}

.evue-faq-item:last-child {
  border-bottom: 1px solid var(--rule-line);
}

.evue-faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-ink);
  transition: color 0.15s;
}

.evue-faq-item__trigger:hover {
  color: var(--accent-teal);
}

.evue-faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-ghost);
  transition: transform 0.25s, color 0.15s;
}

.evue-faq-item.is-open .evue-faq-item__icon {
  transform: rotate(45deg);
  color: var(--accent-teal);
}

.evue-faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.evue-faq-item.is-open .evue-faq-item__body {
  max-height: 400px;
}

.evue-faq-item__answer {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.evue-about-hero {
  padding-top: calc(68px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background-color: var(--surface-deep);
}

.evue-about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.evue-about-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.evue-about-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}

.evue-story-section {
  padding: var(--section-pad-v) 0;
}

.evue-story-section__inner {
  max-width: 760px;
}

.evue-team-section {
  padding: var(--section-pad-v) 0;
}

.evue-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.evue-team-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.evue-team-card__portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  background-color: var(--surface-paper);
}

.evue-team-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-ink);
}

.evue-team-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-teal);
  margin-top: -0.5rem;
}

.evue-team-card__bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.evue-values-section {
  padding: var(--section-pad-v) 0;
}

.evue-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.evue-value-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.evue-value-item__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-ink);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.evue-value-item__label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-teal);
  flex-shrink: 0;
}

.evue-value-item__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.evue-contact-section {
  padding: var(--section-pad-v) 0;
}

.evue-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.evue-contact-form-panel {
  background-color: var(--surface-white);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.evue-contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.evue-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.evue-form-group:last-of-type {
  margin-bottom: 1.5rem;
}

.evue-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-ink);
}

.evue-form-input,
.evue-form-select,
.evue-form-textarea {
  width: 100%;
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-ink);
  background-color: var(--surface-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}

.evue-form-input:focus,
.evue-form-select:focus,
.evue-form-textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(20,137,122,0.12);
}

.evue-form-input::placeholder,
.evue-form-textarea::placeholder {
  color: var(--text-ghost);
}

.evue-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.evue-contact-info-card {
  background-color: var(--surface-paper);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.evue-contact-info-card__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-ghost);
}

.evue-contact-info-card__value {
  font-size: 0.9375rem;
  color: var(--text-ink);
  line-height: 1.5;
}

.evue-contact-info-card__value a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: color 0.15s;
}

.evue-contact-info-card__value a:hover {
  color: var(--accent-teal-light);
}

.evue-blog-hero {
  padding-top: calc(68px + clamp(2.5rem, 5vw, 4rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background-color: var(--surface-paper);
}

.evue-blog-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-ink);
  margin-bottom: 0.75rem;
}

.evue-blog-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
}

.evue-blog-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
  background-color: var(--surface-white);
}

.evue-blog-featured {
  margin-bottom: 3rem;
}

.evue-blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background-color: var(--surface-paper);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.evue-blog-featured-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.evue-blog-featured-card__image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  height: auto;
  aspect-ratio: 16/9;
}

.evue-blog-featured-card__body {
  padding: 2.5rem 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.evue-blog-category-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: rgba(20,137,122,0.1);
  color: var(--accent-teal);
  padding: 3px 9px;
  border-radius: 20px;
}

.evue-blog-featured-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1.25;
}

.evue-blog-featured-card__excerpt {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.evue-blog-featured-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-ghost);
}

.evue-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.evue-blog-card {
  background-color: var(--surface-white);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}

.evue-blog-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.evue-blog-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}

.evue-blog-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.evue-blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1.3;
}

.evue-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.evue-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule-line);
  font-size: 0.8125rem;
  color: var(--text-ghost);
}

.evue-article-hero {
  padding-top: calc(68px + clamp(2.5rem, 5vw, 4rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background-color: var(--surface-paper);
}

.evue-article-hero__inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.evue-article-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1.2;
}

.evue-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-ghost);
}

.evue-article-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
  background-color: var(--surface-white);
}

.evue-article-body {
}

.evue-article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--text-ink);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.evue-article-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-ink);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.evue-article-body p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.evue-article-body ul,
.evue-article-body ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.evue-article-body ul {
  list-style: disc;
}

.evue-article-body ol {
  list-style: decimal;
}

.evue-article-body li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.375rem;
}

.evue-article-body blockquote {
  border-left: 3px solid var(--accent-teal);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--text-secondary);
}

.evue-article-body pre {
  background-color: var(--surface-deep);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.evue-article-body pre code {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-on-dark);
  background: transparent;
  border: none;
  padding: 0;
}

.evue-article-body code {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  background-color: var(--surface-paper);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  color: var(--text-ink);
}

.evue-article-cover {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.evue-article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.evue-legal-page {
  background-color: var(--surface-paper);
  min-height: 100vh;
}

.evue-legal-main {
  background-color: var(--surface-white);
  padding: calc(68px + 3rem) 0 4rem;
}

.evue-legal-content {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.legal-article {
  color: var(--text-ink);
}

.legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule-line);
}

.legal-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--text-ink);
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-ghost);
}

.legal-article section {
  margin-bottom: 2rem;
}

.legal-article h2 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-ink);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.legal-article h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-ink);
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}

.legal-article p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.875rem;
}

.legal-article ul,
.legal-article ol {
  padding-left: 1.5rem;
  margin-bottom: 0.875rem;
}

.legal-article ul {
  list-style: disc;
}

.legal-article ol {
  list-style: decimal;
}

.legal-article li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.legal-article a {
  color: var(--accent-teal);
  text-decoration: underline;
}

.legal-article address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  background-color: var(--surface-paper);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.legal-table th {
  background-color: var(--surface-paper);
  text-align: left;
  padding: 0.625rem 0.875rem;
  font-weight: 600;
  color: var(--text-ink);
  border: 1px solid var(--rule-line);
}

.legal-table td {
  padding: 0.625rem 0.875rem;
  color: var(--text-secondary);
  border: 1px solid var(--rule-line);
  vertical-align: top;
}

.evue-login-page {
  min-height: 100vh;
  background-color: var(--surface-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.evue-login-bg-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.evue-login-card {
  background-color: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.evue-login-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.evue-login-card__logo img {
  height: 30px;
  width: auto;
}

.evue-login-card__title {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--text-ink);
  text-align: center;
  margin-bottom: 0.5rem;
}

.evue-login-card__subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2rem;
}

.evue-login-card__footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-line);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.evue-login-card__footer a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: color 0.15s;
}

.evue-login-card__footer a:hover {
  color: var(--accent-teal-light);
}

.evue-forgot-link {
  font-size: 0.8125rem;
  color: var(--text-ghost);
  text-decoration: none;
  display: inline-block;
  margin-top: 0.375rem;
  transition: color 0.15s;
}

.evue-forgot-link:hover {
  color: var(--accent-teal);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--surface-deep);
  border-top: 1px solid var(--rule-line-dark);
  z-index: 9999;
  padding: 1rem 0;
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--accent-teal-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  height: 38px;
  padding-inline: 1.25rem;
  border-radius: var(--radius-md);
  transition: background-color 0.2s, color 0.2s;
  border: 1.5px solid transparent;
}

.cookie-banner__btn--primary {
  background-color: var(--accent-teal);
  color: #ffffff;
  border-color: var(--accent-teal);
}

.cookie-banner__btn--primary:hover {
  background-color: var(--accent-teal-light);
  border-color: var(--accent-teal-light);
  color: #ffffff;
}

.evue-section-intro {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.evue-inline-svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.evue-cta-section {
  padding: var(--section-pad-v) 0;
}

.evue-cta-section__inner {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.evue-cta-section__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: 2rem;
}

.evue-cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.evue-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.evue-comparison-table th {
  background-color: var(--surface-paper);
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-ink);
  border: 1px solid var(--rule-line);
  font-size: 0.9rem;
}

.evue-comparison-table td {
  padding: 0.875rem 1.25rem;
  color: var(--text-secondary);
  border: 1px solid var(--rule-line);
  vertical-align: top;
  line-height: 1.6;
}

.evue-comparison-table tr:nth-child(even) td {
  background-color: #fafaf9;
}

.evue-stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.evue-stat-band__item {
  padding: 1.75rem 2rem;
  text-align: center;
  border-right: 1px solid var(--rule-line);
}

.evue-stat-band__item:last-child {
  border-right: none;
}

.evue-stat-band__number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--accent-teal);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.evue-stat-band__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.evue-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-ghost);
  margin-bottom: 1.25rem;
}

.evue-breadcrumb a {
  color: var(--text-ghost);
  text-decoration: none;
  transition: color 0.15s;
}

.evue-breadcrumb a:hover {
  color: var(--accent-teal);
}

.evue-breadcrumb__sep {
  opacity: 0.5;
}

.evue-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.evue-fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .evue-hero__inner {
    grid-template-columns: 1fr;
  }
  .evue-hero__visual {
    display: none;
  }
  .evue-audience-grid {
    grid-template-columns: 1fr 1fr;
  }
  .evue-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .evue-team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.evue-page-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.evue-page-hero__h1--dark {
  color: var(--text-ink);
}

.evue-page-hero__sub--dark {
  color: var(--text-secondary);
}

.evue-page-hero__inner--light .evue-page-hero__h1 {
  color: var(--text-ink);
}

.evue-page-hero__inner--light .evue-page-hero__sub {
  color: var(--text-secondary);
}

.evue-page-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.evue-hw-step {
  padding: var(--section-pad-v) 0;
}

.evue-hw-step__inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.evue-hw-step__inner--reverse {
  direction: rtl;
}

.evue-hw-step__inner--reverse > * {
  direction: ltr;
}

.evue-hw-step__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.evue-step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--accent-teal);
  line-height: 1;
  opacity: 0.4;
}

.evue-hw-step__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.evue-hw-step__mock {
  position: relative;
}

.evue-criteria-extraction-mock,
.evue-match-output-mock,
.evue-ranked-list-mock {
  background-color: var(--surface-panel);
  border: 1px solid var(--rule-line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.evue-mock-panel-header {
  background-color: #0E1B28;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule-line-dark);
}

.evue-mock-panel-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
}

.evue-mock-panel-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-on-dark-muted);
  opacity: 0.7;
}

.evue-mock-panel-body {
  padding: 1rem;
}

.evue-mock-panel-body--raw {
  border-bottom: 1px solid var(--rule-line-dark);
}

.evue-mock-raw-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  font-style: italic;
}

.evue-mock-panel-body--structured {
  background-color: rgba(14,27,40,0.5);
}

.evue-mock-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--accent-teal-light);
  font-size: 0.75rem;
}

.evue-mono-block {
  margin: 0;
  padding: 0;
}

.evue-mono-block code {
  display: block;
  background: transparent;
  border: none;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--text-on-dark);
}

.evue-mono--key {
  color: var(--text-on-dark-muted);
}

.evue-mono--val {
  color: var(--accent-teal-light);
}

.evue-match-row-detail {
  padding: 1rem;
}

.evue-match-row-detail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule-line-dark);
}

.evue-match-row-detail__criteria {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
}

.evue-match-criterion {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-on-dark);
}

.evue-match-criterion__label {
  flex: 1;
  color: var(--text-on-dark-muted);
}

.evue-match-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.evue-match-status--pass {
  background-color: rgba(20,137,122,0.2);
  color: var(--accent-teal-light);
}

.evue-match-row-detail__evidence {
  background-color: rgba(14,27,40,0.6);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}

.evue-evidence-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.375rem;
}

.evue-evidence-text {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  font-style: italic;
}

.evue-ranked-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5625rem 1rem;
  border-bottom: 1px solid rgba(46,65,86,0.5);
  font-size: 0.8rem;
  color: var(--text-on-dark);
}

.evue-ranked-row:last-child {
  border-bottom: none;
}

.evue-ranked-row--eligible {
  background-color: rgba(20,137,122,0.08);
}

.evue-ranked-row--flag {
  background-color: rgba(217,119,6,0.07);
}

.evue-ranked-pos {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-on-dark-muted);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.evue-ranked-criteria {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-on-dark-muted);
}

.evue-hw-architecture {
  padding: var(--section-pad-v) 0;
}

.evue-hw-integration {
  padding: var(--section-pad-v) 0;
}

.evue-hw-integration__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.evue-integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.evue-integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1.25rem;
  background-color: var(--surface-white);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.evue-integration-item i {
  font-size: 1.25rem;
  color: var(--accent-teal);
}

.evue-use-case-section {
  padding: var(--section-pad-v) 0;
}

.evue-use-case-section__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.evue-use-case-section__inner--reverse {
  grid-template-columns: auto 1fr;
}

.evue-use-case-section__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background-color: rgba(20,137,122,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 2rem;
  flex-shrink: 0;
}

.evue-use-case-section__icon-wrap--teal {
  background-color: rgba(20,137,122,0.1);
  color: var(--accent-teal);
}

.evue-use-case-section__icon-wrap--amber {
  background-color: rgba(217,119,6,0.1);
  color: var(--accent-amber);
}

.evue-use-case-section__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.evue-use-case-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 0;
  list-style: none;
  margin: 0.25rem 0 1.25rem;
}

.evue-use-case-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0.25rem 0;
}

.evue-use-case-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-teal);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.evue-audience-hero {
  padding-top: calc(68px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.evue-audience-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.evue-audience-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.evue-audience-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-ink);
}

.evue-audience-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.evue-audience-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.evue-audience-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.evue-site-dashboard-mock {
  background-color: var(--surface-deep);
  border: 1px solid var(--rule-line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.evue-site-dashboard-mock__table {
  padding: 0.5rem 0;
}

.evue-site-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px 100px;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-on-dark);
}

.evue-site-row--header {
  background-color: rgba(14,27,40,0.5);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--rule-line-dark);
}

.evue-site-row--lagging {
  background-color: rgba(217,119,6,0.07);
}

.evue-site-eligible {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent-teal-light);
}

.evue-site-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  text-align: center;
  display: inline-block;
}

.evue-site-status--active {
  background-color: rgba(20,137,122,0.2);
  color: var(--accent-teal-light);
}

.evue-site-status--lag {
  background-color: rgba(217,119,6,0.2);
  color: #F59E0B;
}

.evue-prose-section {
  max-width: 760px;
  padding: var(--section-pad-v) 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.evue-prose-section--centered {
  max-width: 800px;
  margin-inline: auto;
}

.evue-features-section {
  padding: var(--section-pad-v) 0;
}

.evue-features-section__header {
  margin-bottom: 2.5rem;
}

.evue-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.evue-feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  background-color: var(--surface-white);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
}

.evue-feature-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(20,137,122,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 1.125rem;
}

.evue-feature-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-ink);
  line-height: 1.3;
}

.evue-feature-item__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.evue-timeline-comparison-visual {
  background-color: var(--surface-white);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.evue-timeline-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.evue-timeline-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 130px;
  flex-shrink: 0;
}

.evue-timeline-bar-wrap {
  flex: 1;
}

.evue-timeline-bar {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
}

.evue-timeline-bar--manual {
  background-color: rgba(217,119,6,0.8);
  width: 100%;
}

.evue-timeline-bar--assisted {
  background-color: var(--accent-teal);
  width: 30%;
  min-width: 100px;
}

.evue-timeline-bar__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.evue-timeline-disclaimer {
  font-size: 0.75rem;
  color: var(--text-ghost);
  font-style: italic;
  margin-top: 0.25rem;
}

.evue-three-col-compare {
  padding: var(--section-pad-v) 0;
}

.evue-three-col-compare__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.evue-compare-col {
  background-color: var(--surface-paper);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.evue-compare-col--solution {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 1px rgba(20,137,122,0.3);
}

.evue-compare-col__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--rule-line);
}

.evue-compare-col__header i {
  font-size: 1.25rem;
  color: var(--accent-teal);
}

.evue-compare-col--problem .evue-compare-col__header i {
  color: var(--accent-amber);
}

.evue-compare-col__header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-ink);
}

.evue-compare-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  flex: 1;
}

.evue-compare-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}

.evue-compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--rule-line);
}

.evue-compare-col__result {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.evue-compare-col__result--bad {
  background-color: rgba(217,119,6,0.1);
  color: var(--accent-amber);
}

.evue-compare-col__result--good {
  background-color: rgba(20,137,122,0.1);
  color: var(--accent-teal);
}

.evue-compare-col__result--neutral {
  background-color: rgba(74,94,114,0.1);
  color: var(--text-secondary);
}

.evue-protocol-complexity-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

.evue-protocol-complexity-callout__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--surface-white);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.evue-protocol-complexity-callout__item i {
  color: var(--accent-teal);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.evue-before-after-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.evue-before-after-visual__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.evue-before-after-visual__label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-ghost);
}

.evue-before-after-visual__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-ghost);
  font-size: 1.25rem;
}

.evue-time-block {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.evue-time-block--heavy {
  background-color: rgba(217,119,6,0.1);
  border: 1px solid rgba(217,119,6,0.2);
}

.evue-time-block--heavy i {
  color: var(--accent-amber);
  font-size: 1.5rem;
}

.evue-time-block--light {
  background-color: rgba(20,137,122,0.1);
  border: 1px solid rgba(20,137,122,0.2);
}

.evue-time-block--light i {
  color: var(--accent-teal);
  font-size: 1.5rem;
}

.evue-time-block__hours {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1;
}

.evue-time-block__caption {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.evue-workflow-compare {
  padding: var(--section-pad-v) 0;
}

.evue-workflow-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.evue-workflow-side {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
}

.evue-workflow-side h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule-line);
}

.evue-workflow-side--before {
  background-color: var(--surface-paper);
  border: 1px solid var(--rule-line);
}

.evue-workflow-side--before h3 {
  color: var(--accent-amber);
}

.evue-workflow-side--after {
  background-color: rgba(20,137,122,0.04);
  border: 1px solid rgba(20,137,122,0.2);
}

.evue-workflow-side--after h3 {
  color: var(--accent-teal);
}

.evue-workflow-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.evue-workflow-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.evue-workflow-side--before .evue-workflow-list li i {
  color: var(--accent-amber);
  font-size: 0.875rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.evue-workflow-side--after .evue-workflow-list li i {
  color: var(--accent-teal);
  font-size: 0.875rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.evue-ehr-callout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.evue-ehr-callout__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background-color: var(--surface-white);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.evue-ehr-callout__item i {
  color: var(--accent-teal);
  font-size: 1rem;
  flex-shrink: 0;
}

.evue-pricing-hero {
  padding-top: calc(68px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 4rem);
  background-color: var(--surface-paper);
}

.evue-pricing-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.evue-pricing-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.evue-pricing-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1.2;
}

.evue-pricing-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
}

.evue-pricing-hero__ornament {
  flex-shrink: 0;
}

.evue-pricing-tiers {
  padding: var(--section-pad-v) 0;
}

.evue-pricing-faq {
  padding: var(--section-pad-v) 0;
}

.evue-pricing-faq__inner {
  max-width: 760px;
  margin-inline: auto;
}

.evue-faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}

.evue-pricing-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.evue-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}

.evue-pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1;
}

.evue-pricing-card--highlighted .evue-pricing-card__amount {
  color: var(--accent-teal);
}

.evue-pricing-card__period {
  font-size: 0.875rem;
  color: var(--text-ghost);
}

.evue-pricing-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: var(--accent-teal);
  color: #ffffff;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.evue-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
}

.evue-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.evue-pricing-card__features li i {
  color: var(--accent-teal);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.evue-about-hero__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--surface-panel);
}

.evue-about-hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.evue-about-story {
  padding: var(--section-pad-v) 0;
}

.evue-about-story__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.evue-about-story__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.evue-about-story__stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 180px;
}

.evue-about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.evue-about-stat__year {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--accent-teal);
  line-height: 1;
}

.evue-about-stat__label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.evue-about-team {
  padding: var(--section-pad-v) 0;
}

.evue-team-card__portrait-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--surface-paper);
}

.evue-about-values {
  padding: var(--section-pad-v) 0;
}

.evue-value-item__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent-teal);
  opacity: 0.3;
  line-height: 1;
}

.evue-contact-hero {
  padding-top: calc(68px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.evue-contact-hero__inner {
  max-width: 660px;
}

.evue-contact-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.evue-contact-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.evue-contact-body {
  padding: var(--section-pad-v) 0;
}

.evue-contact-form-panel__title,
.evue-contact-info-panel__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-ink);
  margin-bottom: 1.5rem;
}

.evue-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.evue-contact-info-item i {
  font-size: 1rem;
  color: var(--accent-teal);
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.evue-contact-info-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-ghost);
  margin-bottom: 0.25rem;
}

.evue-contact-info-item__value {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: normal;
}

.evue-contact-info-item__value a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: color 0.15s;
}

.evue-contact-info-item__value a:hover {
  color: var(--accent-teal-light);
}

.evue-contact-response-note {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background-color: var(--surface-paper);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}

.evue-contact-response-note i {
  color: var(--text-ghost);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.evue-contact-response-note p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.evue-contact-form__submit {
  width: 100%;
}

.evue-blog-hero__inner {
  max-width: 660px;
}

.evue-blog-grid-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.evue-blog-featured-card__image-wrap {
  overflow: hidden;
  background-color: var(--surface-paper);
}

.evue-blog-featured-card__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.evue-blog-featured-card__summary {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.evue-blog-featured-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-teal);
}

.evue-blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.evue-blog-card__image-wrap {
  overflow: hidden;
  background-color: var(--surface-paper);
  border-radius: 0;
}

.evue-blog-card__image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.evue-blog-card:hover .evue-blog-card__image-wrap img {
  transform: scale(1.03);
}

.evue-blog-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.evue-blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1.35;
}

.evue-blog-card__summary {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.evue-blog-card__date {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-ghost);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule-line);
}

.evue-article-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: calc(68px + 2.5rem);
  padding-bottom: 0;
}

.evue-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.evue-article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-ghost);
  text-decoration: none;
  transition: color 0.15s;
}

.evue-article-hero__back:hover {
  color: var(--accent-teal);
}

.evue-article-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1.2;
  max-width: 760px;
}

.evue-article-hero__byline {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-ghost);
}

.evue-article-hero__byline-sep {
  opacity: 0.4;
}

.evue-article-hero__cover-wrap {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 860px;
}

.evue-article-hero__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.evue-article-body {
  background-color: var(--surface-white);
  padding: var(--section-pad-v) 0;
}

.evue-article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: start;
}

.evue-article-content {
  min-width: 0;
}

.evue-prose {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.evue-prose h2 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--text-ink);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.evue-prose h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-ink);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.evue-prose p {
  margin-bottom: 1.25rem;
}

.evue-prose ul,
.evue-prose ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.evue-prose ul {
  list-style: disc;
}

.evue-prose ol {
  list-style: decimal;
}

.evue-prose li {
  margin-bottom: 0.375rem;
  line-height: 1.75;
}

.evue-article-sidebar {
  position: sticky;
  top: calc(68px + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.evue-article-sidebar__cta {
  background-color: var(--surface-deep);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.evue-article-sidebar__cta-headline {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-on-dark);
  line-height: 1.35;
}

.evue-article-sidebar__links {
  background-color: var(--surface-paper);
  border: 1px solid var(--rule-line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.evue-article-sidebar__links-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-ghost);
  margin-bottom: 0.5rem;
}

.evue-article-sidebar__link {
  display: block;
  font-size: 0.875rem;
  color: var(--accent-teal);
  text-decoration: none;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--rule-line);
  transition: color 0.15s;
}

.evue-article-sidebar__link:last-child {
  border-bottom: none;
}

.evue-article-sidebar__link:hover {
  color: var(--accent-teal-light);
}

.evue-auth-page {
  min-height: 100vh;
}

.evue-auth-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: var(--surface-deep);
}

.evue-login-card__sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.evue-login-card__forgot {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
  margin-top: -0.75rem;
}

.evue-login-card__forgot-link {
  font-size: 0.8125rem;
  color: var(--text-ghost);
  text-decoration: none;
  transition: color 0.15s;
}

.evue-login-card__forgot-link:hover {
  color: var(--accent-teal);
}

.evue-auth-submit {
  width: 100%;
}

.evue-login-card__register-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-line);
}

.evue-login-card__register-link {
  color: var(--accent-teal);
  text-decoration: none;
  transition: color 0.15s;
}

.evue-login-card__register-link:hover {
  color: var(--accent-teal-light);
}

.evue-login-card__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-ghost);
}

.evue-login-card__legal a {
  color: var(--text-ghost);
  text-decoration: underline;
  transition: color 0.15s;
}

.evue-login-card__legal a:hover {
  color: var(--accent-teal);
}

@media (max-width: 900px) {
  .evue-article-layout {
    grid-template-columns: 1fr;
  }
  .evue-article-sidebar {
    position: static;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .evue-nav__links,
  .evue-nav__actions {
    display: none;
  }
  .evue-nav__hamburger {
    display: flex;
  }
  .evue-hero__inner {
    grid-template-columns: 1fr;
  }
  .evue-hero__visual {
    display: none;
  }
  .evue-hero__sub {
    max-width: 100%;
  }
  .evue-problem-strip__grid {
    grid-template-columns: 1fr;
  }
  .evue-metric-cell + .evue-metric-cell {
    border-left: none;
    border-top: 1px solid var(--rule-line-dark);
  }
  .evue-what-we-do__inner {
    grid-template-columns: 1fr;
  }
  .evue-audience-grid {
    grid-template-columns: 1fr;
  }
  .evue-hipaa-section__inner {
    grid-template-columns: 1fr;
  }
  .evue-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .evue-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .evue-blog-featured-card {
    grid-template-columns: 1fr;
  }
  .evue-blog-featured-card__body {
    padding: 1.5rem;
  }
  .evue-blog-grid {
    grid-template-columns: 1fr;
  }
  .evue-page-hero__inner {
    grid-template-columns: 1fr;
  }
  .evue-two-col {
    grid-template-columns: 1fr;
  }
  .evue-two-col--wide-left,
  .evue-two-col--wide-right {
    grid-template-columns: 1fr;
  }
  .evue-three-col {
    grid-template-columns: 1fr;
  }
  .evue-team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }
  .evue-values-grid {
    grid-template-columns: 1fr;
  }
  .evue-contact-layout {
    grid-template-columns: 1fr;
  }
  .evue-stat-band {
    grid-template-columns: 1fr;
  }
  .evue-stat-band__item {
    border-right: none;
    border-bottom: 1px solid var(--rule-line);
  }
  .evue-stat-band__item:last-child {
    border-bottom: none;
  }
  .evue-about-hero__inner {
    grid-template-columns: 1fr;
  }
  .evue-pricing-grid {
    grid-template-columns: 1fr;
  }
  .evue-interface-mock__body {
    grid-template-columns: 1fr;
  }
  .evue-interface-mock__col + .evue-interface-mock__col {
    border-left: none;
    border-top: 1px solid var(--rule-line-dark);
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.evue-about-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.evue-auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.evue-before-after-visual__col--before {
  border-right: none;
}

.evue-before-after-visual__col--after {
  border-left: none;
}

.evue-compare-col--target {
  background-color: var(--surface-paper);
  border: 1px solid var(--rule-line);
}

.evue-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.evue-page-hero__ornament--light svg {
  opacity: 0.15;
}

.evue-team-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
