:root {
  color-scheme: light dark;
  --econ-bg: #f1f5f1;
  --econ-surface: #fffefa;
  --econ-surface-soft: #e5eee8;
  --econ-ink: #12231d;
  --econ-muted: #53645b;
  --econ-brand: #103f34;
  --econ-brand-soft: #1d6655;
  --econ-accent: #b63d22;
  --econ-accent-ink: #fffaf7;
  --econ-line: #cbd8d0;
  --econ-shadow: 0 22px 70px rgb(22 58 47 / 12%);
  --econ-radius: 18px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --econ-bg: #0c1512;
    --econ-surface: #12201b;
    --econ-surface-soft: #172a23;
    --econ-ink: #eef7f1;
    --econ-muted: #b5c7bd;
    --econ-brand: #0c352c;
    --econ-brand-soft: #82c9b3;
    --econ-accent: #ff8a68;
    --econ-accent-ink: #24120c;
    --econ-line: #2d4a3f;
    --econ-shadow: 0 24px 72px rgb(0 0 0 / 32%);
  }

  .econ-page #mainNavBar img[alt="CIT Intelligence Architect"] {
    filter: brightness(0) invert(1);
  }

  .econ-page #mainNavBar a.bg-teal-50,
  .econ-page #mainNavBar a.bg-yellow-50,
  .econ-page #mainNavBar a.bg-yellow-100 {
    color: #12231d !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.econ-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--econ-bg);
  color: var(--econ-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 18px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

.econ-page img {
  display: block;
  max-width: 100%;
}

.econ-page a {
  color: inherit;
}

.econ-page #citStaffTools {
  opacity: .72 !important;
}

.econ-page a:focus-visible,
.econ-page button:focus-visible,
.econ-page summary:focus-visible {
  outline: 3px solid var(--econ-accent);
  outline-offset: 4px;
}

.econ-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--econ-accent);
  color: var(--econ-accent-ink) !important;
  font-weight: 800;
  transform: translateY(-150%);
}

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

.econ-page #mainNavBar {
  border-bottom: 1px solid var(--econ-line);
  background: color-mix(in srgb, var(--econ-surface) 94%, transparent);
  color: var(--econ-ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.econ-page #mainNavBar .text-gray-600,
.econ-page #mainNavBar .text-gray-700,
.econ-page #mainNavBar .text-primary {
  color: var(--econ-ink) !important;
}

.econ-page #mainNavBar .dropdown-content-nav,
.econ-page #mobileMenu {
  border-color: var(--econ-line) !important;
  background: var(--econ-surface) !important;
}

.econ-page #mainNavBar .nav-row:hover,
.econ-page #mainNavBar .hover\:bg-gray-100:hover {
  background: var(--econ-surface-soft) !important;
}

.econ-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.econ-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgb(255 138 104 / 14%), transparent 30%),
    linear-gradient(135deg, #0c3028 0%, #123f34 58%, #0c3028 100%);
  color: #f6fff9;
}

.econ-hero::after {
  position: absolute;
  right: -10vw;
  bottom: -34%;
  z-index: -1;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgb(255 255 255 / 3%), 0 0 0 140px rgb(255 255 255 / 2%);
  content: "";
}

.econ-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 24px;
  color: rgb(246 255 249 / 72%);
  font-size: 14px;
}

.econ-breadcrumbs a:hover {
  color: #ffffff;
}

.econ-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  min-height: min(720px, calc(100dvh - 72px));
  padding: 34px 0 54px;
}

.econ-eyebrow {
  margin: 0 0 16px;
  color: #ff9e84;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.econ-hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .98;
}

.econ-hero h1 span {
  display: block;
  margin-top: 14px;
  color: #f8c9ba;
  font-size: clamp(23px, 3.2vw, 38px);
  letter-spacing: -.035em;
  line-height: 1.18;
}

.econ-hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgb(246 255 249 / 88%);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.econ-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.econ-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
}

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

.econ-button:active {
  transform: translateY(1px);
}

.econ-button-primary {
  background: var(--econ-accent);
  color: var(--econ-accent-ink) !important;
}

.econ-button-secondary {
  border-color: rgb(255 255 255 / 38%);
  background: rgb(255 255 255 / 8%);
  color: #ffffff !important;
}

.econ-hero-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--econ-radius);
  background: #0b2b24;
  box-shadow: 0 28px 80px rgb(1 15 11 / 38%);
}

.econ-hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.econ-hero-figure figcaption {
  padding: 14px 17px 16px;
  color: rgb(246 255 249 / 76%);
  font-size: 13px;
  line-height: 1.55;
}

.econ-facts {
  border-bottom: 1px solid var(--econ-line);
  background: var(--econ-surface);
}

.econ-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.econ-fact {
  min-height: 128px;
  padding: 26px clamp(16px, 3vw, 32px);
  border-left: 1px solid var(--econ-line);
}

.econ-fact:first-child {
  border-left: 0;
}

.econ-fact strong {
  display: block;
  color: var(--econ-brand-soft);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.15;
}

.econ-fact span {
  display: block;
  margin-top: 7px;
  color: var(--econ-muted);
  font-size: 14px;
  line-height: 1.45;
}

.econ-section {
  padding: clamp(68px, 9vw, 110px) 0;
}

.econ-section-alt {
  border-block: 1px solid var(--econ-line);
  background: var(--econ-surface);
}

.econ-section h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.12;
}

.econ-section h3 {
  margin: 0;
  font-size: clamp(21px, 2.7vw, 29px);
  font-weight: 850;
  letter-spacing: -.025em;
  line-height: 1.3;
}

.econ-intro-copy {
  max-width: 820px;
  margin-top: 24px;
  color: var(--econ-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
}

.econ-answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.econ-answer-note {
  padding: 28px;
  border: 1px solid var(--econ-line);
  border-radius: var(--econ-radius);
  background: var(--econ-surface-soft);
}

.econ-answer-note p {
  margin: 0;
  color: var(--econ-muted);
}

.econ-answer-note strong {
  display: block;
  margin-bottom: 9px;
  color: var(--econ-ink);
  font-size: 19px;
}

.econ-units {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 46px;
  margin-top: 48px;
  border-top: 2px solid var(--econ-brand-soft);
}

.econ-unit {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid var(--econ-line);
}

.econ-unit-number {
  color: var(--econ-accent);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.econ-unit p {
  margin: 10px 0 0;
  color: var(--econ-muted);
  font-size: 16px;
}

.econ-output-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 22px;
  margin-top: 46px;
}

.econ-output-lead {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--econ-radius);
  background: var(--econ-brand);
  color: #f4fff8;
}

.econ-output-lead strong {
  max-width: 640px;
  font-size: clamp(31px, 4.2vw, 52px);
  letter-spacing: -.045em;
  line-height: 1.12;
}

.econ-output-lead p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgb(244 255 248 / 80%);
}

.econ-output-list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--econ-line);
  border-radius: var(--econ-radius);
  background: var(--econ-surface);
}

.econ-output-item {
  padding: 24px 28px;
  border-top: 1px solid var(--econ-line);
}

.econ-output-item:first-child {
  border-top: 0;
}

.econ-output-item b {
  display: block;
  font-size: 19px;
}

.econ-output-item span {
  display: block;
  margin-top: 6px;
  color: var(--econ-muted);
  font-size: 15px;
}

.econ-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: start;
}

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

.econ-checks li {
  position: relative;
  padding: 0 0 17px 32px;
  border-bottom: 1px solid var(--econ-line);
  color: var(--econ-muted);
}

.econ-checks li::before {
  position: absolute;
  top: .25em;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--econ-accent);
  border-radius: 50%;
  content: "";
}

.econ-checks strong {
  color: var(--econ-ink);
}

.econ-boundary {
  margin-top: 28px;
  padding: 24px 26px;
  border-left: 5px solid var(--econ-accent);
  border-radius: 0 var(--econ-radius) var(--econ-radius) 0;
  background: var(--econ-surface-soft);
  color: var(--econ-muted);
}

.econ-boundary strong {
  color: var(--econ-ink);
}

.econ-access-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 22px;
  margin-top: 44px;
}

.econ-access-panel {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--econ-line);
  border-radius: var(--econ-radius);
  background: var(--econ-surface);
}

.econ-access-panel.is-public {
  border-color: color-mix(in srgb, var(--econ-accent) 55%, var(--econ-line));
  background: color-mix(in srgb, var(--econ-accent) 7%, var(--econ-surface));
}

.econ-access-panel p {
  margin: 14px 0 22px;
  color: var(--econ-muted);
}

.econ-text-link {
  color: var(--econ-accent) !important;
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.econ-text-link:hover {
  text-decoration: underline;
}

.econ-guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.econ-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.econ-faq {
  overflow: hidden;
  border: 1px solid var(--econ-line);
  border-radius: var(--econ-radius);
  background: var(--econ-surface);
}

.econ-faq summary {
  position: relative;
  padding: 22px 64px 22px 24px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.econ-faq summary::-webkit-details-marker {
  display: none;
}

.econ-faq summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--econ-accent);
  border-bottom: 2px solid var(--econ-accent);
  content: "";
  transform: translateY(-70%) rotate(45deg);
}

.econ-faq[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.econ-faq p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--econ-muted);
}

.econ-cta {
  background: var(--econ-brand);
  color: #f5fff8;
}

.econ-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
}

.econ-cta h2 {
  color: #ffffff;
}

.econ-cta p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgb(245 255 248 / 78%);
}

.econ-related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 30px;
  font-size: 15px;
}

.econ-related a {
  color: var(--econ-muted);
  font-weight: 750;
}

.econ-related a:hover {
  color: var(--econ-accent);
}

.econ-source-note {
  padding: 30px 0;
  border-top: 1px solid var(--econ-line);
  color: var(--econ-muted);
  font-size: 13px;
}

.econ-source-note p {
  margin: 0;
}

.econ-footer {
  padding: 42px 0 52px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  background: #092b24;
  color: rgb(245 255 248 / 76%);
  font-size: 14px;
}

.econ-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
}

.econ-footer strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 17px;
}

.econ-footer p {
  margin: 0;
}

.econ-footer a {
  color: #ffffff;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .econ-hero-grid,
  .econ-answer-grid,
  .econ-output-grid,
  .econ-fit-grid,
  .econ-access-grid,
  .econ-cta-grid,
  .econ-footer-grid {
    grid-template-columns: 1fr;
  }

  .econ-hero-grid {
    min-height: 0;
  }

  .econ-hero-copy {
    padding-top: 24px;
  }

  .econ-hero-figure {
    max-width: 680px;
  }

  .econ-fact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .econ-fact:nth-child(3) {
    border-left: 0;
  }

  .econ-fact:nth-child(n + 3) {
    border-top: 1px solid var(--econ-line);
  }

  .econ-cta-grid .econ-actions {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .econ-page {
    font-size: 17px;
  }

  .econ-container {
    width: min(100% - 28px, 1180px);
  }

  .econ-breadcrumbs {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .econ-hero-grid {
    gap: 30px;
    padding: 16px 0 36px;
  }

  .econ-hero h1 {
    font-size: clamp(44px, 15vw, 64px);
  }

  .econ-hero-lead {
    font-size: 18px;
  }

  .econ-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .econ-button {
    width: 100%;
  }

  .econ-fact-grid,
  .econ-units {
    grid-template-columns: 1fr;
  }

  .econ-fact {
    min-height: 0;
    border-top: 1px solid var(--econ-line);
    border-left: 0;
  }

  .econ-fact:first-child {
    border-top: 0;
  }

  .econ-output-lead {
    min-height: 350px;
  }

  .econ-unit {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .econ-answer-note,
  .econ-access-panel {
    padding: 24px;
  }

  .econ-cta-grid .econ-actions {
    width: 100%;
  }
}

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

  .econ-button {
    transition: none;
  }
}

@media print {
  .econ-page #navBarContainer,
  .econ-actions,
  .econ-cta {
    display: none !important;
  }

  .econ-page {
    background: #ffffff;
    color: #111111;
  }
}
