/* enr-main.css — Enrola AI SDR site stylesheet */
/* brand_prefix: enr */

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --enr-brand-primary: #0E1E30;
  --enr-accent-deco: #14C896;
  --enr-accent-on-dark: #14C896;
  --enr-accent-on-light: #0B8A65;

  --enr-fg-on-dark-primary: #EEF2F7;
  --enr-fg-on-dark-secondary: #8BA3BE;
  --enr-fg-on-light-primary: #0E1E30;
  --enr-fg-on-light-secondary: #4A5568;

  --enr-bg-dark: #0E1E30;
  --enr-bg-dark-alt: #162840;
  --enr-bg-light: #F7F9FC;
  --enr-bg-white: #FFFFFF;
  --enr-bg-cream: #F0F4F8;

  --enr-border-dark: rgba(255,255,255,0.10);
  --enr-border-light: #E2E8F0;

  --enr-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --enr-font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  --enr-container-max: 1200px;
  --enr-container-px: clamp(20px, 5vw, 60px);

  --enr-radius-sm: 6px;
  --enr-radius-md: 10px;
  --enr-radius-lg: 16px;

  --enr-shadow-card: 0 2px 12px rgba(14,30,48,0.08);
  --enr-shadow-card-hover: 0 6px 24px rgba(14,30,48,0.14);

  --enr-transition: 0.2s ease;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--enr-font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--enr-fg-on-light-primary);
  background: var(--enr-bg-white);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; }
address { font-style: normal; }
table { border-collapse: collapse; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(28px, 4.5vw, 56px); }
h2 { font-size: clamp(22px, 3vw, 40px); }
h3 { font-size: clamp(18px, 2vw, 26px); }
h4 { font-size: 18px; font-weight: 600; }

p { max-width: 70ch; }

.enr-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Eyebrow in dark sections */
.enr-section--dark .enr-eyebrow,
.enr-section--dark-alt .enr-eyebrow {
  color: var(--enr-accent-on-dark);
}
/* Eyebrow in light sections */
.enr-section--light .enr-eyebrow,
.enr-section--white .enr-eyebrow,
.enr-section--cream .enr-eyebrow {
  color: var(--enr-accent-on-light);
}

/* =========================================================
   LAYOUT CONTAINERS
   ========================================================= */
.enr-container {
  max-width: var(--enr-container-max);
  margin: 0 auto;
  padding-left: var(--enr-container-px);
  padding-right: var(--enr-container-px);
}

/* =========================================================
   SECTION BACKGROUNDS
   ========================================================= */
.enr-section { padding: 80px 0; }
.enr-section--dark { background: var(--enr-bg-dark); color: var(--enr-fg-on-dark-primary); }
.enr-section--dark-alt { background: var(--enr-bg-dark-alt); color: var(--enr-fg-on-dark-primary); }
.enr-section--white { background: var(--enr-bg-white); color: var(--enr-fg-on-light-primary); }
.enr-section--light { background: var(--enr-bg-light); color: var(--enr-fg-on-light-primary); }
.enr-section--cream { background: var(--enr-bg-cream); color: var(--enr-fg-on-light-primary); }

/* =========================================================
   NAV
   ========================================================= */
.enr-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--enr-transition), box-shadow var(--enr-transition);
}

/* Dark-top pages: nav starts transparent, blends into dark hero */
body.enr-page--dark-top .enr-nav {
  background: transparent;
  color: var(--enr-fg-on-dark-primary);
}
body.enr-page--dark-top .enr-nav--scrolled {
  background: var(--enr-bg-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}

/* Light-top pages: nav is always solid navy */
body.enr-page--light-top .enr-nav {
  background: var(--enr-bg-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  color: var(--enr-fg-on-dark-primary);
}

.enr-nav__inner {
  max-width: var(--enr-container-max);
  margin: 0 auto;
  padding: 0 var(--enr-container-px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.enr-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.enr-nav__logo img {
  height: 32px;
  width: auto;
  max-width: 160px;
}

.enr-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  list-style: none;
}

.enr-nav__links a {
  display: inline-block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--enr-fg-on-dark-secondary);
  text-decoration: none;
  border-radius: var(--enr-radius-sm);
  transition: color var(--enr-transition), background var(--enr-transition);
}
.enr-nav__links a:hover {
  color: var(--enr-fg-on-dark-primary);
  background: rgba(255,255,255,0.07);
}

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

.enr-nav__signin {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--enr-fg-on-dark-secondary);
  text-decoration: none;
  border-radius: var(--enr-radius-sm);
  transition: color var(--enr-transition), background var(--enr-transition);
}
.enr-nav__signin:hover {
  color: var(--enr-fg-on-dark-primary);
  background: rgba(255,255,255,0.07);
}

/* Hamburger */
.enr-nav__hamburger {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.enr-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--enr-fg-on-dark-primary);
  border-radius: 2px;
  transition: transform var(--enr-transition), opacity var(--enr-transition);
}
.enr-nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.enr-nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.enr-nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav menu */
.enr-nav__mobile {
  display: none;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: var(--enr-bg-dark);
  border-top: 1px solid var(--enr-border-dark);
  padding: 12px var(--enr-container-px) 20px;
  flex-direction: column;
  gap: 4px;
}
.enr-nav__mobile.is-open {
  display: flex;
}
.enr-nav__mobile a {
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--enr-fg-on-dark-secondary);
  border-radius: var(--enr-radius-sm);
  transition: color var(--enr-transition), background var(--enr-transition);
  text-decoration: none;
}
.enr-nav__mobile a:hover {
  color: var(--enr-fg-on-dark-primary);
  background: rgba(255,255,255,0.07);
}
.enr-nav__mobile .enr-btn--primary {
  margin-top: 8px;
  text-align: center;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.enr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--enr-font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--enr-radius-sm);
  border: 2px solid transparent;
  transition: background var(--enr-transition), color var(--enr-transition), border-color var(--enr-transition), box-shadow var(--enr-transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.enr-btn--primary {
  background: var(--enr-accent-deco);
  color: var(--enr-bg-dark);
  border-color: var(--enr-accent-deco);
}
.enr-btn--primary:hover {
  background: #12B588;
  border-color: #12B588;
  box-shadow: 0 4px 16px rgba(20,200,150,0.28);
}

.enr-btn--outline-on-light {
  background: transparent;
  color: var(--enr-fg-on-light-primary);
  border-color: var(--enr-border-light);
}
.enr-btn--outline-on-light:hover {
  border-color: var(--enr-fg-on-light-primary);
  background: rgba(14,30,48,0.04);
}

.enr-btn--outline-on-dark {
  background: transparent;
  color: var(--enr-fg-on-dark-primary);
  border-color: rgba(255,255,255,0.28);
}
.enr-btn--outline-on-dark:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
}

.enr-btn--ghost-on-dark {
  background: transparent;
  color: var(--enr-fg-on-dark-primary);
  border-color: transparent;
}
.enr-btn--ghost-on-dark:hover {
  background: rgba(255,255,255,0.09);
}

.enr-btn--ghost-on-light {
  background: transparent;
  color: var(--enr-fg-on-light-primary);
  border-color: transparent;
}
.enr-btn--ghost-on-light:hover {
  background: rgba(14,30,48,0.06);
}

.enr-btn--text-link {
  background: transparent;
  color: var(--enr-accent-on-light);
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.enr-btn--text-link:hover {
  text-decoration: underline;
}

.enr-nav__cta {
  font-size: 14px;
  padding: 8px 16px;
}

/* =========================================================
   HERO — INDEX (DARK, SPLIT)
   ========================================================= */
.enr-hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  padding-top: 64px;
  background: var(--enr-bg-dark);
  color: var(--enr-fg-on-dark-primary);
  overflow: hidden;
  position: relative;
}

.enr-hero__inner {
  max-width: var(--enr-container-max);
  margin: 0 auto;
  padding: 80px var(--enr-container-px) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.enr-hero__text {}

.enr-hero__headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--enr-fg-on-dark-primary);
  margin-bottom: 20px;
}

.enr-hero__headline em {
  font-style: normal;
  color: var(--enr-accent-on-dark);
}

.enr-hero__subhead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--enr-fg-on-dark-secondary);
  margin-bottom: 36px;
  max-width: 52ch;
}

.enr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.enr-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================================================
   HERO EMAIL THREAD SVG PANEL
   ========================================================= */
.enr-thread-panel {
  width: 100%;
  max-width: 500px;
  border-radius: var(--enr-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--enr-bg-dark-alt);
  font-family: var(--enr-font-mono);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.enr-thread-panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.enr-thread-panel__dots {
  display: flex;
  gap: 6px;
}
.enr-thread-panel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.enr-thread-panel__dot--red { background: #FF5F57; }
.enr-thread-panel__dot--yellow { background: #FFBD2E; }
.enr-thread-panel__dot--green { background: #28CA42; }

.enr-thread-panel__title {
  font-size: 11px;
  color: var(--enr-fg-on-dark-secondary);
  letter-spacing: 0.05em;
  font-family: var(--enr-font-sans);
}

.enr-thread-panel__body { padding: 4px 0; }

.enr-thread-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
  position: relative;
}
.enr-thread-row:last-child { border-bottom: none; }

.enr-thread-row__meta {}
.enr-thread-row__sender {
  font-size: 13px;
  font-weight: 600;
  color: var(--enr-fg-on-dark-primary);
  font-family: var(--enr-font-sans);
  margin-bottom: 2px;
}
.enr-thread-row__subject {
  font-size: 12px;
  color: var(--enr-fg-on-dark-secondary);
  font-family: var(--enr-font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}
.enr-thread-row__preview {
  font-size: 11px;
  color: rgba(139,163,190,0.7);
  font-family: var(--enr-font-mono);
  margin-top: 3px;
}

.enr-thread-row__time {
  font-size: 11px;
  color: var(--enr-fg-on-dark-secondary);
  font-family: var(--enr-font-sans);
  white-space: nowrap;
  padding-top: 2px;
}

/* Stalled row highlight */
.enr-thread-row--stalled {
  background: rgba(20,200,150,0.07);
  border-left: 3px solid var(--enr-accent-on-dark);
}
.enr-thread-row--stalled .enr-thread-row__sender {
  color: var(--enr-fg-on-dark-primary);
}

.enr-thread-stalled-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--enr-accent-on-dark);
  background: rgba(20,200,150,0.14);
  border: 1px solid rgba(20,200,150,0.28);
  border-radius: 4px;
  padding: 2px 7px;
  margin-top: 5px;
  font-family: var(--enr-font-sans);
  animation: enr-pulse 2s ease-in-out infinite;
}

@keyframes enr-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.enr-thread-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.enr-thread-panel__footer-text {
  font-size: 11px;
  color: var(--enr-fg-on-dark-secondary);
  font-family: var(--enr-font-sans);
}
.enr-thread-panel__footer-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--enr-accent-on-dark);
  background: rgba(20,200,150,0.14);
  border-radius: 4px;
  padding: 2px 8px;
  font-family: var(--enr-font-sans);
}

/* =========================================================
   PROBLEM STRIP (STAT ROW)
   ========================================================= */
.enr-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.enr-stat-row--dark { background: var(--enr-bg-dark-alt); }

.enr-stat-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.enr-stat-item:last-child { border-right: none; }

.enr-stat-item--light {
  border-right-color: var(--enr-border-light);
}

.enr-stat-value {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.enr-section--dark-alt .enr-stat-value,
.enr-section--dark .enr-stat-value {
  color: var(--enr-accent-on-dark);
}
.enr-section--light .enr-stat-value,
.enr-section--white .enr-stat-value {
  color: var(--enr-accent-on-light);
}

.enr-stat-label {
  font-size: 14px;
  line-height: 1.5;
  max-width: 24ch;
  margin: 0 auto;
}
.enr-section--dark-alt .enr-stat-label,
.enr-section--dark .enr-stat-label {
  color: var(--enr-fg-on-dark-secondary);
}
.enr-section--light .enr-stat-label,
.enr-section--white .enr-stat-label {
  color: var(--enr-fg-on-light-secondary);
}

.enr-stat-note {
  text-align: center;
  font-size: 12px;
  color: var(--enr-fg-on-dark-secondary);
  padding: 16px var(--enr-container-px) 24px;
  font-style: italic;
  background: var(--enr-bg-dark-alt);
}
.enr-stat-note--light {
  color: var(--enr-fg-on-light-secondary);
  background: var(--enr-bg-light);
}

/* =========================================================
   PROCESS STEPS (4-step horizontal)
   ========================================================= */
.enr-process { padding: 80px 0; }

.enr-process__header {
  text-align: center;
  margin-bottom: 56px;
}
.enr-process__header h2 {
  margin-top: 8px;
  color: var(--enr-fg-on-light-primary);
}

.enr-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.enr-process__connector {
  position: absolute;
  top: 28px;
  left: calc(25% + 28px);
  right: calc(25% + 28px);
  height: 1px;
  background: var(--enr-border-light);
}

.enr-step {
  position: relative;
  text-align: center;
  padding: 28px 20px 24px;
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-md);
  background: var(--enr-bg-white);
  transition: box-shadow var(--enr-transition), transform var(--enr-transition);
}
.enr-step:hover {
  box-shadow: var(--enr-shadow-card-hover);
  transform: translateY(-2px);
}

.enr-step__number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--enr-accent-on-light);
  margin-bottom: 12px;
  font-family: var(--enr-font-mono);
}

.enr-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11,138,101,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--enr-accent-on-light);
  font-size: 18px;
}

.enr-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 8px;
}

.enr-step__copy {
  font-size: 14px;
  line-height: 1.6;
  color: var(--enr-fg-on-light-secondary);
  max-width: none;
}

.enr-process__cta {
  text-align: center;
  margin-top: 40px;
}

/* =========================================================
   PRODUCT DEMO PANEL (split — index)
   ========================================================= */
.enr-demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.enr-demo-split__visual img {
  width: 100%;
  border-radius: var(--enr-radius-md);
  box-shadow: var(--enr-shadow-card-hover);
  border: 1px solid var(--enr-border-light);
}

.enr-demo-split__header {
  margin-bottom: 20px;
}
.enr-demo-split__copy {
  font-size: 16px;
  line-height: 1.7;
  color: var(--enr-fg-on-light-secondary);
  margin-bottom: 24px;
}

.enr-callout-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.enr-callout-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--enr-fg-on-light-primary);
  line-height: 1.5;
}
.enr-callout-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--enr-accent-on-light);
  display: inline-block;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================================
   INTEGRATIONS STRIP
   ========================================================= */
.enr-integrations-strip {
  text-align: center;
}
.enr-integrations-strip__header {
  margin-bottom: 36px;
}
.enr-integrations-strip__header h2 {
  margin-top: 8px;
}

.enr-logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.enr-integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--enr-border-light);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--enr-fg-on-light-secondary);
  background: var(--enr-bg-white);
  transition: border-color var(--enr-transition), color var(--enr-transition), box-shadow var(--enr-transition);
}
.enr-integration-badge:hover {
  border-color: var(--enr-accent-on-light);
  color: var(--enr-fg-on-light-primary);
  box-shadow: var(--enr-shadow-card);
}
.enr-integration-badge i {
  color: var(--enr-accent-on-light);
  font-size: 15px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.enr-testimonials {}
.enr-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}
.enr-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.enr-testimonial-card {
  background: var(--enr-bg-white);
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-md);
  padding: 28px;
  transition: box-shadow var(--enr-transition);
}
.enr-section--light .enr-testimonial-card { background: var(--enr-bg-white); }
.enr-testimonial-card:hover { box-shadow: var(--enr-shadow-card-hover); }

.enr-testimonial-card__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 20px;
  quotes: '\201C' '\201D';
}
.enr-testimonial-card__quote::before { content: open-quote; }
.enr-testimonial-card__quote::after { content: close-quote; }

.enr-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.enr-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--enr-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--enr-accent-on-dark);
  flex-shrink: 0;
  font-family: var(--enr-font-sans);
}
.enr-testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  line-height: 1.3;
}
.enr-testimonial-card__role {
  font-size: 13px;
  color: var(--enr-fg-on-light-secondary);
  line-height: 1.3;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.enr-cta-band {
  text-align: center;
  padding: 96px 0;
}
.enr-cta-band h2 {
  color: var(--enr-fg-on-dark-primary);
  margin-bottom: 16px;
}
.enr-cta-band__subhead {
  font-size: 17px;
  color: var(--enr-fg-on-dark-secondary);
  margin: 0 auto 36px;
  max-width: 56ch;
}
.enr-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.enr-footer {
  background: var(--enr-bg-dark);
  color: var(--enr-fg-on-dark-secondary);
  padding: 64px 0 0;
}

.enr-footer__inner {
  max-width: var(--enr-container-max);
  margin: 0 auto;
  padding: 0 var(--enr-container-px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.enr-footer__brand {}
.enr-footer__logo {
  display: inline-block;
  margin-bottom: 14px;
}
.enr-footer__logo img {
  height: 30px;
  width: auto;
}
.enr-footer__tagline {
  font-size: 14px;
  color: var(--enr-fg-on-dark-secondary);
  margin-bottom: 20px;
  max-width: 34ch;
  line-height: 1.6;
}
.enr-footer__contact {
  font-size: 13px;
  color: var(--enr-fg-on-dark-secondary);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.enr-footer__contact a {
  color: var(--enr-fg-on-dark-secondary);
  text-decoration: none;
  transition: color var(--enr-transition);
}
.enr-footer__contact a:hover { color: var(--enr-fg-on-dark-primary); }

.enr-footer__col-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--enr-fg-on-dark-primary);
  margin-bottom: 16px;
}
.enr-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.enr-footer__links a {
  font-size: 14px;
  color: var(--enr-fg-on-dark-secondary);
  text-decoration: none;
  transition: color var(--enr-transition);
}
.enr-footer__links a:hover { color: var(--enr-fg-on-dark-primary); }

.enr-footer__baseline {
  border-top: 1px solid var(--enr-border-dark);
  max-width: var(--enr-container-max);
  margin: 0 auto;
  padding: 20px var(--enr-container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.enr-footer__copyright {
  font-size: 13px;
  color: var(--enr-fg-on-dark-secondary);
}
.enr-footer__legal-links {
  display: flex;
  gap: 16px;
  list-style: none;
}
.enr-footer__legal-links a {
  font-size: 13px;
  color: var(--enr-fg-on-dark-secondary);
  text-decoration: none;
  transition: color var(--enr-transition);
}
.enr-footer__legal-links a:hover { color: var(--enr-fg-on-dark-primary); }

/* =========================================================
   SUBHERO (light-top pages)
   ========================================================= */
.enr-subhero {
  padding: 120px 0 64px;
  background: var(--enr-bg-light);
}
.enr-subhero__inner {
  max-width: var(--enr-container-max);
  margin: 0 auto;
  padding: 0 var(--enr-container-px);
}
.enr-subhero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--enr-accent-on-light);
  margin-bottom: 14px;
  display: block;
}
.enr-subhero h1 {
  font-size: clamp(26px, 3.5vw, 46px);
  color: var(--enr-fg-on-light-primary);
  max-width: 20ch;
  margin-bottom: 18px;
}
.enr-subhero__subhead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--enr-fg-on-light-secondary);
  max-width: 60ch;
}

/* =========================================================
   HOW IT WORKS — deep dive splits
   ========================================================= */
.enr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.enr-split--reverse { direction: rtl; }
.enr-split--reverse > * { direction: ltr; }

.enr-split__content {}
.enr-split__content h2 {
  margin-bottom: 16px;
  color: var(--enr-fg-on-light-primary);
}
.enr-split__content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--enr-fg-on-light-secondary);
  margin-bottom: 16px;
  max-width: 56ch;
}

.enr-split__visual {}
.enr-split__visual img {
  width: 100%;
  border-radius: var(--enr-radius-md);
  box-shadow: var(--enr-shadow-card-hover);
  border: 1px solid var(--enr-border-light);
}

.enr-inline-callout {
  margin-top: 20px;
  padding: 14px 18px;
  border-left: 3px solid var(--enr-accent-on-light);
  background: rgba(11,138,101,0.06);
  border-radius: 0 var(--enr-radius-sm) var(--enr-radius-sm) 0;
  font-size: 14px;
  color: var(--enr-fg-on-light-primary);
  font-weight: 500;
  line-height: 1.5;
}

/* Latency detection SVG panel */
.enr-latency-panel {
  background: var(--enr-bg-white);
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-md);
  overflow: hidden;
  box-shadow: var(--enr-shadow-card-hover);
  font-family: var(--enr-font-mono);
  font-size: 12px;
}
.enr-latency-panel__header {
  padding: 10px 14px;
  background: var(--enr-bg-cream);
  border-bottom: 1px solid var(--enr-border-light);
  font-size: 11px;
  color: var(--enr-fg-on-light-secondary);
  font-family: var(--enr-font-sans);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.enr-latency-row {
  display: grid;
  grid-template-columns: 24px 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(226,232,240,0.5);
}
.enr-latency-row:last-child { border-bottom: none; }
.enr-latency-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin: auto; }
.enr-latency-dot--green { background: #22C55E; }
.enr-latency-dot--amber { background: #F59E0B; }
.enr-latency-dot--red { background: #EF4444; }
.enr-latency-sender { font-size: 12px; color: var(--enr-fg-on-light-primary); font-family: var(--enr-font-sans); }
.enr-latency-age { font-size: 11px; color: var(--enr-fg-on-light-secondary); font-family: var(--enr-font-mono); }
.enr-latency-status { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 4px; font-family: var(--enr-font-sans); }
.enr-latency-status--ok { background: rgba(34,197,94,0.12); color: #16A34A; }
.enr-latency-status--warn { background: rgba(245,158,11,0.12); color: #B45309; }
.enr-latency-status--alert { background: rgba(239,68,68,0.12); color: #DC2626; }

/* Email draft panel (how-it-works step 3) */
.enr-draft-panel {
  background: var(--enr-bg-dark);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--enr-radius-md);
  overflow: hidden;
  font-family: var(--enr-font-mono);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.enr-draft-panel__header {
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 8px;
}
.enr-draft-panel__dots { display: flex; gap: 5px; }
.enr-draft-panel__dot { width: 9px; height: 9px; border-radius: 50%; }
.enr-draft-panel__dot--r { background: #FF5F57; }
.enr-draft-panel__dot--y { background: #FFBD2E; }
.enr-draft-panel__dot--g { background: #28CA42; }
.enr-draft-panel__title { font-size: 11px; color: var(--enr-fg-on-dark-secondary); font-family: var(--enr-font-sans); }

.enr-draft-panel__body { padding: 16px; }

.enr-draft-field {
  display: flex;
  gap: 8px;
  font-size: 11px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.enr-draft-field:last-of-type { border-bottom: none; margin-bottom: 10px; }
.enr-draft-field__label { color: var(--enr-fg-on-dark-secondary); min-width: 36px; font-family: var(--enr-font-sans); }
.enr-draft-field__value { color: var(--enr-fg-on-dark-primary); font-family: var(--enr-font-sans); }

.enr-draft-quoted {
  background: rgba(255,255,255,0.03);
  border-left: 2px solid rgba(139,163,190,0.4);
  padding: 10px 12px;
  margin: 10px 0;
  border-radius: 0 4px 4px 0;
}
.enr-draft-quoted p {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(139,163,190,0.8);
  max-width: none;
}
.enr-draft-quoted .enr-draft-quoted__label {
  font-size: 10px;
  color: var(--enr-fg-on-dark-secondary);
  margin-bottom: 5px;
  font-family: var(--enr-font-sans);
}

.enr-draft-generated {
  background: rgba(20,200,150,0.08);
  border: 1px solid rgba(20,200,150,0.20);
  border-radius: var(--enr-radius-sm);
  padding: 12px;
  margin-top: 10px;
}
.enr-draft-generated__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--enr-accent-on-dark);
  margin-bottom: 6px;
  font-family: var(--enr-font-sans);
}
.enr-draft-generated p {
  font-size: 11px;
  line-height: 1.55;
  color: var(--enr-fg-on-dark-primary);
  max-width: none;
}

/* =========================================================
   INLINE CTA (minimal)
   ========================================================= */
.enr-inline-cta {
  text-align: center;
  padding: 64px 0;
}
.enr-inline-cta p {
  font-size: 20px;
  font-weight: 600;
  color: var(--enr-fg-on-light-primary);
  margin: 0 auto 24px;
  max-width: 50ch;
}
.enr-section--dark .enr-inline-cta p,
.enr-section--dark-alt .enr-inline-cta p {
  color: var(--enr-fg-on-dark-primary);
}

/* =========================================================
   PRICING
   ========================================================= */
.enr-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.enr-pricing-toggle__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--enr-fg-on-light-secondary);
  cursor: pointer;
  transition: color var(--enr-transition);
}
.enr-pricing-toggle__label.is-active { color: var(--enr-fg-on-light-primary); font-weight: 600; }

.enr-toggle-switch {
  width: 46px;
  height: 26px;
  border-radius: 13px;
  background: var(--enr-border-light);
  position: relative;
  cursor: pointer;
  border: none;
  transition: background var(--enr-transition);
  flex-shrink: 0;
}
.enr-toggle-switch.is-annual { background: var(--enr-accent-on-light); }
.enr-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: white;
  transition: transform var(--enr-transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.enr-toggle-switch.is-annual::after { transform: translateX(20px); }

.enr-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.enr-pricing-card {
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-lg);
  padding: 32px;
  background: var(--enr-bg-white);
  transition: box-shadow var(--enr-transition), transform var(--enr-transition);
  position: relative;
}
.enr-pricing-card:hover {
  box-shadow: var(--enr-shadow-card-hover);
  transform: translateY(-3px);
}
.enr-pricing-card--highlight {
  border-color: var(--enr-accent-on-light);
  box-shadow: 0 0 0 1px var(--enr-accent-on-light), var(--enr-shadow-card-hover);
}

.enr-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--enr-accent-on-light);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.enr-pricing-card__name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--enr-fg-on-light-secondary);
  margin-bottom: 16px;
}
.enr-pricing-card__price {
  margin-bottom: 24px;
}
.enr-pricing-card__amount {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--enr-fg-on-light-primary);
  line-height: 1;
}
.enr-pricing-card__amount sup {
  font-size: 20px;
  font-weight: 600;
  vertical-align: super;
  letter-spacing: 0;
}
.enr-pricing-card__period {
  font-size: 13px;
  color: var(--enr-fg-on-light-secondary);
  margin-top: 4px;
}
.enr-pricing-card__contact {
  font-size: 32px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
}

.enr-pricing-card__features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enr-pricing-card__features li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--enr-fg-on-light-secondary);
  line-height: 1.4;
}
.enr-pricing-card__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: rgba(11,138,101,0.12);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230B8A65' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
  background-size: 9px;
  background-position: center;
  background-repeat: no-repeat;
}
.enr-pricing-card__cta { width: 100%; justify-content: center; }

/* Annual prices hidden by default */
.enr-price-annual { display: none; }
body.enr-annual .enr-price-monthly { display: none; }
body.enr-annual .enr-price-annual { display: block; }

/* FAQ Accordion */
.enr-faq { max-width: 760px; margin: 0 auto; }
.enr-faq__item {
  border-bottom: 1px solid var(--enr-border-light);
}
.enr-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: transparent;
  border: none;
  font-family: var(--enr-font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--enr-fg-on-light-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--enr-transition);
}
.enr-faq__question:hover { color: var(--enr-accent-on-light); }
.enr-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--enr-fg-on-light-secondary);
  transition: transform var(--enr-transition);
  font-size: 14px;
}
.enr-faq__item.is-open .enr-faq__icon { transform: rotate(45deg); }
.enr-faq__answer {
  display: none;
  padding: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--enr-fg-on-light-secondary);
}
.enr-faq__item.is-open .enr-faq__answer { display: block; }

/* =========================================================
   ABOUT
   ========================================================= */
.enr-about-founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.enr-about-founder__copy h2 {
  margin-bottom: 20px;
  color: var(--enr-fg-on-light-primary);
}
.enr-about-founder__copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--enr-fg-on-light-secondary);
  margin-bottom: 14px;
}
.enr-about-founder__image img {
  width: 100%;
  border-radius: var(--enr-radius-md);
  box-shadow: var(--enr-shadow-card-hover);
}

.enr-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.enr-team-card {
  text-align: center;
}
.enr-team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  background: var(--enr-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.enr-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.enr-team-card__photo-initial {
  font-size: 36px;
  font-weight: 700;
  color: var(--enr-accent-on-dark);
  font-family: var(--enr-font-sans);
}
.enr-team-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 4px;
}
.enr-team-card__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--enr-accent-on-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.enr-team-card__bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--enr-fg-on-light-secondary);
  max-width: none;
}

.enr-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.enr-value-card {
  padding: 28px;
  background: var(--enr-bg-light);
  border-radius: var(--enr-radius-md);
  border: 1px solid var(--enr-border-light);
}
.enr-section--white .enr-value-card { background: var(--enr-bg-white); }
.enr-value-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--enr-radius-sm);
  background: rgba(11,138,101,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--enr-accent-on-light);
  font-size: 18px;
  margin-bottom: 14px;
}
.enr-value-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 8px;
}
.enr-value-card__copy {
  font-size: 14px;
  line-height: 1.65;
  color: var(--enr-fg-on-light-secondary);
  max-width: none;
}

/* =========================================================
   BLOG
   ========================================================= */
.enr-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.enr-blog-card {
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-md);
  overflow: hidden;
  background: var(--enr-bg-white);
  transition: box-shadow var(--enr-transition), transform var(--enr-transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.enr-blog-card:hover {
  box-shadow: var(--enr-shadow-card-hover);
  transform: translateY(-2px);
}
.enr-blog-card__cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--enr-bg-dark);
  display: block;
}
.enr-blog-card__body { padding: 24px; }
.enr-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.enr-blog-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--enr-accent-on-light);
  background: rgba(11,138,101,0.10);
  padding: 3px 9px;
  border-radius: 4px;
}
.enr-blog-card__date {
  font-size: 12px;
  color: var(--enr-fg-on-light-secondary);
}
.enr-blog-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  line-height: 1.35;
  margin-bottom: 10px;
}
.enr-blog-card__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--enr-fg-on-light-secondary);
  margin-bottom: 16px;
  max-width: none;
}
.enr-blog-card__read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--enr-accent-on-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Blog article body */
body.enr-page--light-top .enr-blog-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--enr-fg-on-light-primary);
}
body.enr-page--light-top .enr-blog-body h2 {
  font-size: 26px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--enr-fg-on-light-primary);
}
body.enr-page--light-top .enr-blog-body h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--enr-fg-on-light-primary);
}
body.enr-page--light-top .enr-blog-body p {
  margin-bottom: 20px;
  color: var(--enr-fg-on-light-secondary);
  max-width: none;
}
body.enr-page--light-top .enr-blog-body li {
  color: var(--enr-fg-on-light-secondary);
  line-height: 1.7;
}
body.enr-page--light-top .enr-blog-body a {
  color: var(--enr-accent-on-light);
  text-decoration: underline;
}
body.enr-page--light-top .enr-blog-body code {
  font-family: var(--enr-font-mono);
  font-size: 14px;
  background: var(--enr-bg-cream);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--enr-fg-on-light-primary);
}

.enr-blog-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.enr-blog-article-meta__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--enr-accent-on-light);
  background: rgba(11,138,101,0.10);
  padding: 4px 11px;
  border-radius: 4px;
}
.enr-blog-article-meta__date,
.enr-blog-article-meta__read {
  font-size: 13px;
  color: var(--enr-fg-on-light-secondary);
}

.enr-blog-cover-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--enr-radius-md);
  margin-bottom: 40px;
  background: var(--enr-bg-dark);
}

/* Blog article subhero split */
.enr-blog-article-hero {
  padding: 120px 0 48px;
  background: var(--enr-bg-light);
}
.enr-blog-article-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--enr-container-px);
}

/* =========================================================
   CUSTOMERS
   ========================================================= */
.enr-customer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.enr-customer-card {
  background: var(--enr-bg-white);
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-md);
  padding: 28px;
  transition: box-shadow var(--enr-transition), transform var(--enr-transition);
}
.enr-customer-card:hover {
  box-shadow: var(--enr-shadow-card-hover);
  transform: translateY(-2px);
}
.enr-customer-card__industry {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--enr-accent-on-light);
  margin-bottom: 8px;
}
.enr-customer-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 8px;
}
.enr-customer-card__tagline {
  font-size: 15px;
  color: var(--enr-fg-on-light-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}
.enr-customer-card__size {
  font-size: 13px;
  color: var(--enr-fg-on-light-secondary);
  margin-bottom: 20px;
}
.enr-customer-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--enr-accent-on-light);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.enr-customer-card__link:hover { text-decoration: underline; }

/* Case study full page */
.enr-case-study-header {
  background: var(--enr-bg-light);
  padding: 120px 0 56px;
}
.enr-case-study-header__inner {
  max-width: var(--enr-container-max);
  margin: 0 auto;
  padding: 0 var(--enr-container-px);
}
.enr-case-study-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.enr-case-study-meta__item {
  font-size: 13px;
  color: var(--enr-fg-on-light-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.enr-case-study-meta__item i { color: var(--enr-accent-on-light); }
.enr-case-study-header h1 {
  font-size: clamp(24px, 3vw, 40px);
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 14px;
  max-width: 24ch;
}
.enr-case-study-header__deck {
  font-size: 17px;
  color: var(--enr-fg-on-light-secondary);
  max-width: 64ch;
  line-height: 1.65;
}

.enr-case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--enr-bg-white);
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-md);
  overflow: hidden;
  margin: 40px 0;
}
.enr-case-study-stat {
  padding: 28px 32px;
  border-right: 1px solid var(--enr-border-light);
  text-align: center;
}
.enr-case-study-stat:last-child { border-right: none; }
.enr-case-study-stat__value {
  font-size: 36px;
  font-weight: 700;
  color: var(--enr-accent-on-light);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.enr-case-study-stat__label {
  font-size: 13px;
  color: var(--enr-fg-on-light-secondary);
  line-height: 1.4;
}

body.enr-page--light-top .enr-case-study-body {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--enr-fg-on-light-primary);
}
body.enr-page--light-top .enr-case-study-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--enr-fg-on-light-primary);
}
body.enr-page--light-top .enr-case-study-body p {
  color: var(--enr-fg-on-light-secondary);
  margin-bottom: 18px;
  max-width: none;
}
body.enr-page--light-top .enr-case-study-body blockquote {
  border-left: 3px solid var(--enr-accent-on-light);
  margin: 28px 0;
  padding: 16px 20px;
  background: rgba(11,138,101,0.05);
  border-radius: 0 var(--enr-radius-sm) var(--enr-radius-sm) 0;
  font-size: 17px;
  font-style: italic;
  color: var(--enr-fg-on-light-primary);
}
body.enr-page--light-top .enr-case-study-body blockquote p { color: var(--enr-fg-on-light-primary); max-width: none; }

/* =========================================================
   CONTACT
   ========================================================= */
.enr-contact-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.enr-contact-form {}
.enr-contact-form h1 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 10px;
}
.enr-contact-form__subhead {
  font-size: 16px;
  color: var(--enr-fg-on-light-secondary);
  margin-bottom: 32px;
  max-width: 56ch;
}

.enr-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.enr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.enr-field { display: flex; flex-direction: column; gap: 6px; }
.enr-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--enr-fg-on-light-primary);
}
.enr-field input,
.enr-field textarea,
.enr-field select {
  padding: 10px 14px;
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-sm);
  font-size: 15px;
  font-family: var(--enr-font-sans);
  color: var(--enr-fg-on-light-primary);
  background: var(--enr-bg-white);
  transition: border-color var(--enr-transition), box-shadow var(--enr-transition);
  outline: none;
  appearance: none;
}
.enr-field input:focus,
.enr-field textarea:focus,
.enr-field select:focus {
  border-color: var(--enr-accent-on-light);
  box-shadow: 0 0 0 3px rgba(11,138,101,0.12);
}
.enr-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A5568' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.enr-field select option { background: white; color: var(--enr-fg-on-light-primary); }
.enr-field textarea { min-height: 110px; resize: vertical; }

.enr-contact-sidebar {
  padding: 28px;
  background: var(--enr-bg-light);
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-md);
}
.enr-contact-sidebar__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 16px;
}
.enr-contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.enr-contact-detail i {
  color: var(--enr-accent-on-light);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.enr-contact-detail__text {
  font-size: 14px;
  color: var(--enr-fg-on-light-secondary);
  line-height: 1.5;
}
.enr-contact-detail__text a {
  color: var(--enr-accent-on-light);
  text-decoration: none;
}
.enr-contact-detail__text a:hover { text-decoration: underline; }

/* =========================================================
   INTEGRATIONS PAGE
   ========================================================= */
.enr-integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.enr-integration-cat-card {
  background: var(--enr-bg-white);
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-md);
  padding: 28px;
}
.enr-integration-cat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--enr-radius-sm);
  background: rgba(11,138,101,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--enr-accent-on-light);
  font-size: 20px;
  margin-bottom: 14px;
}
.enr-integration-cat-card__heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--enr-fg-on-light-secondary);
  margin-bottom: 14px;
}
.enr-integration-cat-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.enr-integration-cat-card__list li {
  font-size: 14px;
  color: var(--enr-fg-on-light-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.enr-integration-cat-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--enr-accent-on-light);
  flex-shrink: 0;
}

.enr-callout-band {
  background: var(--enr-bg-cream);
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-md);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.enr-callout-band p {
  font-size: 16px;
  color: var(--enr-fg-on-light-primary);
  max-width: 56ch;
  line-height: 1.5;
}

/* =========================================================
   SECURITY
   ========================================================= */
.enr-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.enr-security-card {
  background: var(--enr-bg-white);
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-md);
  padding: 28px;
  transition: box-shadow var(--enr-transition);
}
.enr-security-card:hover { box-shadow: var(--enr-shadow-card-hover); }
.enr-security-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--enr-radius-sm);
  background: rgba(11,138,101,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--enr-accent-on-light);
  font-size: 18px;
  margin-bottom: 14px;
}
.enr-security-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 8px;
}
.enr-security-card__copy {
  font-size: 14px;
  line-height: 1.65;
  color: var(--enr-fg-on-light-secondary);
  max-width: none;
}

.enr-au-callout {
  background: rgba(11,138,101,0.06);
  border: 1px solid rgba(11,138,101,0.20);
  border-radius: var(--enr-radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.enr-au-callout i { font-size: 20px; color: var(--enr-accent-on-light); flex-shrink: 0; }
.enr-au-callout p { font-size: 15px; color: var(--enr-fg-on-light-primary); line-height: 1.5; max-width: none; }

.enr-contact-strip {
  text-align: center;
  padding: 48px 0 16px;
}
.enr-contact-strip p {
  font-size: 17px;
  color: var(--enr-fg-on-light-secondary);
  margin: 0 auto 16px;
}
.enr-contact-strip a {
  color: var(--enr-accent-on-light);
  font-weight: 600;
  font-size: 17px;
}

/* =========================================================
   AUTH PAGES (login/signup/reset)
   ========================================================= */
.enr-auth-page {
  min-height: 100vh;
  background: var(--enr-bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px var(--enr-container-px) 40px;
}
.enr-auth-card {
  background: var(--enr-bg-dark-alt);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--enr-radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.enr-auth-card__logo {
  text-align: center;
  margin-bottom: 28px;
}
.enr-auth-card__logo img {
  height: 32px;
  width: auto;
  display: inline-block;
}
.enr-auth-card h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--enr-fg-on-dark-primary);
  margin-bottom: 6px;
  text-align: center;
}
.enr-auth-card__subhead {
  font-size: 14px;
  color: var(--enr-fg-on-dark-secondary);
  text-align: center;
  margin-bottom: 24px;
  max-width: none;
}
.enr-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--enr-fg-on-dark-secondary);
  font-size: 12px;
}
.enr-auth-divider::before,
.enr-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.10);
}
.enr-auth-sso {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--enr-radius-sm);
  background: transparent;
  color: var(--enr-fg-on-dark-primary);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--enr-font-sans);
  cursor: pointer;
  width: 100%;
  transition: background var(--enr-transition), border-color var(--enr-transition);
}
.enr-auth-sso:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.25); }
.enr-auth-sso img { width: 18px; height: 18px; }

/* Auth form fields on dark */
.enr-auth-form { display: flex; flex-direction: column; gap: 14px; }
.enr-auth-form .enr-field label { color: var(--enr-fg-on-dark-secondary); }
.enr-auth-form .enr-field input,
.enr-auth-form .enr-field select {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--enr-fg-on-dark-primary);
}
.enr-auth-form .enr-field input::placeholder { color: rgba(139,163,190,0.5); }
.enr-auth-form .enr-field input:focus,
.enr-auth-form .enr-field select:focus {
  border-color: var(--enr-accent-on-dark);
  box-shadow: 0 0 0 3px rgba(20,200,150,0.15);
  background: rgba(255,255,255,0.07);
}
.enr-auth-form .enr-field select {
  background-color: rgba(255,255,255,0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238BA3BE' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.enr-auth-form .enr-field select option { background: var(--enr-bg-dark-alt); color: var(--enr-fg-on-dark-primary); }
.enr-auth-form .enr-btn--primary { width: 100%; justify-content: center; margin-top: 4px; font-size: 15px; padding: 13px; }
.enr-auth-links {
  margin-top: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.enr-auth-links a {
  font-size: 13px;
  color: var(--enr-fg-on-dark-secondary);
  text-decoration: none;
  transition: color var(--enr-transition);
}
.enr-auth-links a:hover { color: var(--enr-accent-on-dark); }
.enr-auth-links .forgot-pw { text-align: right; margin-top: -8px; }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.enr-legal-page {
  padding: 120px 0 80px;
  background: var(--enr-bg-white);
}
body.enr-page--light-top .enr-legal-content {
  max-width: 720px;
}
body.enr-page--light-top .enr-legal-content .legal-article {}
body.enr-page--light-top .enr-legal-content .legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--enr-border-light);
}
body.enr-page--light-top .enr-legal-content .legal-header h1 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 10px;
}
body.enr-page--light-top .enr-legal-content .legal-meta {
  font-size: 13px;
  color: var(--enr-fg-on-light-secondary);
  max-width: none;
}
body.enr-page--light-top .enr-legal-content section {
  margin-bottom: 32px;
}
body.enr-page--light-top .enr-legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 12px;
}
body.enr-page--light-top .enr-legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--enr-fg-on-light-secondary);
  margin-bottom: 10px;
  max-width: none;
}
body.enr-page--light-top .enr-legal-content ul,
body.enr-page--light-top .enr-legal-content ol {
  padding-left: 20px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
body.enr-page--light-top .enr-legal-content li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--enr-fg-on-light-secondary);
}
body.enr-page--light-top .enr-legal-content a {
  color: var(--enr-accent-on-light);
  text-decoration: underline;
}
body.enr-page--light-top .enr-legal-content address {
  font-size: 14px;
  color: var(--enr-fg-on-light-secondary);
  line-height: 1.7;
}
.enr-legal-content .legal-table {
  width: 100%;
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}
.enr-legal-content .legal-table th {
  background: var(--enr-bg-light);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  text-align: left;
  border-bottom: 1px solid var(--enr-border-light);
}
.enr-legal-content .legal-table td {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--enr-fg-on-light-secondary);
  border-bottom: 1px solid var(--enr-border-light);
}
.enr-legal-content .legal-table tr:last-child td { border-bottom: none; }

/* =========================================================
   REVENUE CALCULATOR (blog tool)
   ========================================================= */
.enr-calculator {
  background: var(--enr-bg-light);
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-lg);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto 48px;
}
.enr-calculator__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 24px;
}
.enr-calculator__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.enr-calculator__result {
  background: var(--enr-bg-dark);
  border-radius: var(--enr-radius-md);
  padding: 28px;
  text-align: center;
}
.enr-calculator__result-label {
  font-size: 13px;
  color: var(--enr-fg-on-dark-secondary);
  margin-bottom: 8px;
}
.enr-calculator__result-value {
  font-size: 44px;
  font-weight: 700;
  color: var(--enr-accent-on-dark);
  letter-spacing: -0.03em;
}
.enr-calculator__result-sub {
  font-size: 12px;
  color: var(--enr-fg-on-dark-secondary);
  margin-top: 6px;
}
.enr-range-label {
  font-size: 12px;
  color: var(--enr-fg-on-light-secondary);
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}
.enr-field input[type="range"] {
  appearance: auto;
  -webkit-appearance: auto;
  padding: 0;
  height: 6px;
  background: var(--enr-border-light);
  border: none;
  border-radius: 3px;
  outline: none;
  accent-color: var(--enr-accent-on-light);
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner,
.cookie-banner--notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--enr-bg-dark-alt);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 14px var(--enr-container-px);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.cookie-banner__inner {
  max-width: var(--enr-container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 13px;
  color: var(--enr-fg-on-dark-secondary);
  flex: 1;
  min-width: 240px;
  line-height: 1.5;
}
.cookie-banner__text a {
  color: var(--enr-accent-on-dark);
  text-decoration: underline;
}
.cookie-banner__actions { flex-shrink: 0; }
.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--enr-radius-sm);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--enr-font-sans);
  cursor: pointer;
  border: none;
  transition: background var(--enr-transition);
}
.cookie-banner__btn--primary {
  background: var(--enr-accent-deco);
  color: var(--enr-bg-dark);
}
.cookie-banner__btn--primary:hover { background: #12B588; }

body.cookie-visible { padding-bottom: 64px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .enr-hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 80px var(--enr-container-px) 64px; }
  .enr-hero { min-height: auto; }
  .enr-process__steps { grid-template-columns: repeat(2, 1fr); }
  .enr-process__connector { display: none; }
  .enr-demo-split { grid-template-columns: 1fr; }
  .enr-footer__inner { grid-template-columns: 1fr 1fr; }
  .enr-testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
  .enr-team-grid { grid-template-columns: repeat(2, 1fr); }
  .enr-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .enr-split { grid-template-columns: 1fr; gap: 40px; }
  .enr-split--reverse { direction: ltr; }
  .enr-about-founder { grid-template-columns: 1fr; gap: 40px; }
  .enr-contact-split { grid-template-columns: 1fr; gap: 40px; }
  .enr-customer-cards { grid-template-columns: 1fr 1fr; }
  .enr-case-study-stats { grid-template-columns: 1fr; }
  .enr-case-study-stat { border-right: none; border-bottom: 1px solid var(--enr-border-light); }
  .enr-case-study-stat:last-child { border-bottom: none; }
  .enr-integrations-grid { grid-template-columns: 1fr 1fr; }
  .enr-security-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .enr-nav__links,
  .enr-nav__ctas { display: none; }
  .enr-nav__hamburger { display: flex; }
  .enr-stat-row { grid-template-columns: 1fr; }
  .enr-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .enr-stat-item:last-child { border-bottom: none; }
  .enr-stat-item--light { border-bottom-color: var(--enr-border-light); }
  .enr-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .enr-footer__baseline { flex-direction: column; align-items: flex-start; gap: 10px; }
  .enr-process__steps { grid-template-columns: 1fr; }
  .enr-testimonials__grid { grid-template-columns: 1fr; }
  .enr-team-grid { grid-template-columns: 1fr; }
  .enr-values-grid { grid-template-columns: 1fr; }
  .enr-blog-grid { grid-template-columns: 1fr; }
  .enr-customer-cards { grid-template-columns: 1fr; }
  .enr-integrations-grid { grid-template-columns: 1fr; }
  .enr-calculator__grid { grid-template-columns: 1fr; }
  .enr-form-row { grid-template-columns: 1fr; }
  .enr-cta-band { padding: 64px 0; }
  .enr-auth-card { padding: 28px 20px; }
  .enr-logo-row { gap: 10px; }
  .enr-pricing-grid { max-width: none; }
}

@media (max-width: 480px) {
  .enr-callout-band { flex-direction: column; }
  .enr-callout-band p { max-width: none; }
}

/* =========================================================
   SUPPLEMENTAL — Auth page new BEM names
   ========================================================= */
.enr-auth-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--enr-bg-dark);
  padding: 0 var(--enr-container-px);
}
.enr-auth-header {
  width: 100%;
  max-width: 480px;
  padding: 28px 0 0;
  display: flex;
  justify-content: center;
}
.enr-auth-logo img {
  height: 30px;
  width: auto;
}
.enr-auth-main {
  width: 100%;
  max-width: 480px;
  padding: 32px 0 40px;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.enr-auth-card--wide {
  max-width: 520px;
  width: 100%;
}
.enr-auth-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--enr-accent-on-dark);
  background: rgba(20,200,150,0.12);
  border: 1px solid rgba(20,200,150,0.25);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.enr-auth-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--enr-fg-on-dark-primary);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.enr-auth-card__subtitle {
  font-size: 14px;
  color: var(--enr-fg-on-dark-secondary);
  text-align: center;
  margin-bottom: 24px;
  max-width: none;
  line-height: 1.6;
}
.enr-auth-card__icon {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--enr-accent-on-dark);
}
.enr-auth-card__footer-text {
  font-size: 13px;
  color: var(--enr-fg-on-dark-secondary);
  text-align: center;
  margin-top: 20px;
  max-width: none;
}
.enr-auth-card__footer-link {
  color: var(--enr-accent-on-dark);
  text-decoration: none;
  font-weight: 500;
}
.enr-auth-card__footer-link:hover { text-decoration: underline; }
.enr-auth-card__legal {
  font-size: 12px;
  color: rgba(139,163,190,0.7);
  text-align: center;
  margin-top: 14px;
  max-width: none;
  line-height: 1.6;
}
.enr-auth-card__legal a {
  color: var(--enr-fg-on-dark-secondary);
  text-decoration: underline;
}
.enr-auth-sso-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--enr-radius-sm);
  background: transparent;
  color: var(--enr-fg-on-dark-primary);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--enr-font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--enr-transition), border-color var(--enr-transition);
  margin-bottom: 4px;
}
.enr-auth-sso-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.28);
}
.enr-auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.enr-auth-field__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--enr-fg-on-dark-secondary);
}
.enr-auth-field__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.enr-auth-field__link {
  font-size: 12px;
  color: var(--enr-fg-on-dark-secondary);
  text-decoration: none;
  transition: color var(--enr-transition);
}
.enr-auth-field__link:hover { color: var(--enr-accent-on-dark); }
.enr-auth-field__input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--enr-radius-sm);
  color: var(--enr-fg-on-dark-primary);
  font-size: 14px;
  font-family: var(--enr-font-sans);
  transition: border-color var(--enr-transition), box-shadow var(--enr-transition), background var(--enr-transition);
}
.enr-auth-field__input::placeholder { color: rgba(139,163,190,0.45); }
.enr-auth-field__input:focus {
  outline: none;
  border-color: var(--enr-accent-on-dark);
  box-shadow: 0 0 0 3px rgba(20,200,150,0.15);
  background: rgba(255,255,255,0.07);
}
.enr-auth-field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238BA3BE' d='M1 1l5 5 5-5' stroke='%238BA3BE' stroke-width='0' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.enr-auth-field__select option {
  background: var(--enr-bg-dark-alt);
  color: var(--enr-fg-on-dark-primary);
}
.enr-auth-form--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.enr-auth-field--full {
  grid-column: 1 / -1;
}
.enr-auth-submit {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 13px;
}
.enr-auth-msg {
  font-size: 13px;
  text-align: center;
  color: var(--enr-fg-on-dark-secondary);
  min-height: 20px;
  line-height: 1.5;
}
.enr-auth-msg.enr-auth-msg--error { color: #F87171; }
.enr-auth-msg.enr-auth-msg--success { color: var(--enr-accent-on-dark); }
.enr-auth-footer {
  width: 100%;
  max-width: 480px;
  text-align: center;
  padding: 16px 0 24px;
  font-size: 12px;
  color: rgba(139,163,190,0.5);
}
.enr-auth-footer a {
  color: rgba(139,163,190,0.6);
  text-decoration: underline;
}
.enr-auth-footer a:hover { color: var(--enr-fg-on-dark-secondary); }

/* =========================================================
   SUPPLEMENTAL — Legal container narrow
   ========================================================= */
.enr-container--legal {
  max-width: 760px;
  margin: 0 auto;
  padding-left: var(--enr-container-px);
  padding-right: var(--enr-container-px);
}
.enr-container--legal .legal-article {}
.enr-container--legal .legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--enr-border-light);
}
.enr-container--legal .legal-header h1 {
  display: none; /* page hero h1 already shows title */
}
.enr-container--legal .legal-meta {
  font-size: 13px;
  color: var(--enr-fg-on-light-secondary);
  max-width: none;
  line-height: 1.6;
}
.enr-container--legal section {
  margin-bottom: 32px;
}
.enr-container--legal h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  margin-bottom: 12px;
  margin-top: 32px;
  letter-spacing: -0.01em;
}
.enr-container--legal p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--enr-fg-on-light-secondary);
  margin-bottom: 10px;
  max-width: none;
}
.enr-container--legal ul,
.enr-container--legal ol {
  padding-left: 20px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.enr-container--legal li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--enr-fg-on-light-secondary);
}
.enr-container--legal a {
  color: var(--enr-accent-on-light);
  text-decoration: underline;
}
.enr-container--legal address {
  font-size: 14px;
  color: var(--enr-fg-on-light-secondary);
  line-height: 1.8;
  font-style: normal;
}
.enr-container--legal .legal-table {
  width: 100%;
  border: 1px solid var(--enr-border-light);
  border-radius: var(--enr-radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  font-size: 13px;
}
.enr-container--legal .legal-table th {
  background: var(--enr-bg-light);
  padding: 10px 14px;
  font-weight: 700;
  color: var(--enr-fg-on-light-primary);
  text-align: left;
  border-bottom: 1px solid var(--enr-border-light);
}
.enr-container--legal .legal-table td {
  padding: 10px 14px;
  color: var(--enr-fg-on-light-secondary);
  border-bottom: 1px solid var(--enr-border-light);
  vertical-align: top;
}
.enr-container--legal .legal-table tr:last-child td { border-bottom: none; }

/* =========================================================
   SUPPLEMENTAL — Button size variant
   ========================================================= */
.enr-btn--lg {
  padding: 14px 28px;
  font-size: 16px;
}

/* =========================================================
   SUPPLEMENTAL — Subhero compact variant
   ========================================================= */
.enr-subhero--compact {
  padding: 80px 0 40px;
}
.enr-subhero--compact .enr-subhero__inner {
  padding-top: 0;
  padding-bottom: 0;
}

/* =========================================================
   SUPPLEMENTAL — Pricing toggle label variants
   ========================================================= */
.enr-pricing-toggle__label--monthly,
.enr-pricing-toggle__label--annual {
  font-size: 13px;
  font-weight: 500;
  color: var(--enr-fg-on-light-secondary);
  transition: color var(--enr-transition);
}
body.enr-annual .enr-pricing-toggle__label--annual { color: var(--enr-accent-on-light); font-weight: 700; }
body:not(.enr-annual) .enr-pricing-toggle__label--monthly { color: var(--enr-fg-on-light-primary); font-weight: 700; }

/* =========================================================
   SUPPLEMENTAL — Demo split content (right col text)
   ========================================================= */
.enr-demo-split__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* =========================================================
   SUPPLEMENTAL — Footer col (additional instance rule)
   ========================================================= */
.enr-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* =========================================================
   SUPPLEMENTAL — Calculator new BEM names
   ========================================================= */
.enr-calculator__header {
  margin-bottom: 28px;
}
.enr-calculator__desc {
  font-size: 14px;
  color: var(--enr-fg-on-light-secondary);
  margin-top: 6px;
  max-width: 60ch;
}
.enr-calc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.enr-calc-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.enr-calc-field__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}
.enr-calc-field__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--enr-fg-on-light-primary);
  max-width: none;
}
.enr-calc-field__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--enr-accent-on-light);
  font-family: var(--enr-font-mono);
  white-space: nowrap;
}
.enr-calc-field__range {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  background: var(--enr-border-light);
  border-radius: 3px;
  outline: none;
  accent-color: var(--enr-accent-on-light);
  cursor: pointer;
}
.enr-calc-field__range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--enr-accent-on-light);
  cursor: pointer;
  border: 2px solid var(--enr-bg-white);
  box-shadow: 0 2px 6px rgba(11,138,101,0.3);
}
.enr-calc-field__bounds {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--enr-fg-on-light-secondary);
  font-family: var(--enr-font-mono);
  margin-top: 2px;
}
.enr-calculator__result-note {
  font-size: 13px;
  color: var(--enr-fg-on-dark-secondary);
  margin-top: 14px;
  line-height: 1.6;
  max-width: none;
}

/* =========================================================
   RESPONSIVE — supplemental
   ========================================================= */
@media (max-width: 768px) {
  .enr-auth-form--two-col { grid-template-columns: 1fr; }
  .enr-auth-main { align-items: flex-start; }
  .enr-auth-card--wide { max-width: none; }
}
