.exec-dashboard {
  --exec-petrol: #0c7775;
  --exec-petrol-dark: #075a59;
  --exec-petrol-soft: #e5f3f1;
  --exec-coral: #ef765f;
  --exec-coral-dark: #b84a39;
  --exec-coral-soft: #fff0ed;
  --exec-violet: #7f74d8;
  --exec-violet-soft: #f0eefc;
  --exec-red: #b93b39;
  --exec-red-soft: #fcecea;
  --exec-amber: #8a5b05;
  --exec-amber-soft: #fff5d9;
  --exec-green: #176b50;
  --exec-green-soft: #e6f5ee;
  --exec-ink: #14343d;
  --exec-muted: #5d6f73;
  --exec-line: #dce7e5;
  --exec-surface: #ffffff;
  --exec-canvas: #f2f7f6;
  min-width: 0;
  color: var(--exec-ink);
}

.exec-dashboard h1,
.exec-dashboard h2,
.exec-dashboard h3,
.exec-dashboard p,
.exec-dashboard figure {
  margin-top: 0;
}

.exec-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
  margin-bottom: 34px;
  padding: clamp(26px, 4vw, 44px);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 118, 95, .36), transparent 34%),
    linear-gradient(135deg, #083f49 0%, var(--exec-petrol) 60%, #198b84 100%);
  border-radius: 25px;
  box-shadow: 0 18px 50px rgba(12, 90, 88, .18);
}

.exec-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 330px;
  height: 330px;
  right: -132px;
  bottom: -210px;
  border: 54px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}

.exec-hero-copy {
  min-width: 0;
}

.exec-hero .exec-eyebrow {
  color: #bde7e3;
}

.exec-hero h1 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(31px, 4.6vw, 50px);
  letter-spacing: -.045em;
  line-height: 1.02;
}

.exec-hero-copy > p:not(.exec-eyebrow):not(.exec-updated) {
  max-width: 560px;
  margin-bottom: 18px;
  color: #d9f0ed;
  line-height: 1.55;
}

.exec-updated {
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 720;
}

.exec-eyebrow {
  margin-bottom: 7px;
  color: var(--exec-coral-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .115em;
  text-transform: uppercase;
}

.exec-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  color: var(--exec-ink);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(6, 48, 52, .16);
}

.exec-filter {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.exec-filter > span {
  overflow: hidden;
  color: var(--exec-muted);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .055em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.exec-select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 9px 34px 9px 11px;
  color: var(--exec-ink);
  background-color: #fff;
  border: 1px solid #b9cfcb;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 720;
}

.exec-select:hover:not(:disabled) {
  border-color: var(--exec-petrol);
}

.exec-select:disabled {
  cursor: wait;
  opacity: .62;
}

.exec-connection {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: flex-end;
  min-height: 28px;
  padding-top: 3px;
  border-top: 1px solid var(--exec-line);
}

.exec-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 27px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.exec-status::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 50%;
}

.exec-status-connected {
  color: var(--exec-green);
  background: var(--exec-green-soft);
}

.exec-status-stale,
.exec-status-pending {
  color: var(--exec-amber);
  background: var(--exec-amber-soft);
}

.exec-status-error {
  color: var(--exec-red);
  background: var(--exec-red-soft);
}

.exec-body,
.exec-content {
  min-width: 0;
}

.exec-content {
  display: grid;
  gap: 40px;
}

.exec-section {
  min-width: 0;
}

.exec-section-heading {
  max-width: 760px;
  margin-bottom: 19px;
}

.exec-section-heading h2 {
  margin-bottom: 7px;
  color: var(--exec-ink);
  font-size: clamp(23px, 3vw, 31px);
  letter-spacing: -.028em;
  line-height: 1.12;
}

.exec-section-heading > p:last-child:not(.exec-eyebrow) {
  margin-bottom: 0;
  color: var(--exec-muted);
  line-height: 1.55;
}

.exec-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.exec-kpi-card,
.exec-panel,
.exec-source-card {
  background: var(--exec-surface);
  border: 1px solid var(--exec-line);
  box-shadow: 0 8px 28px rgba(8, 63, 73, .055);
}

.exec-kpi-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 21px;
  border-radius: 17px;
}

.exec-kpi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--exec-petrol);
}

.exec-kpi-card:nth-child(2)::before {
  background: var(--exec-coral);
}

.exec-kpi-card:nth-child(3)::before {
  background: var(--exec-violet);
}

.exec-kpi-card:nth-child(4)::before {
  background: #6f8790;
}

.exec-kpi-label {
  min-height: 32px;
  margin-bottom: 11px;
  color: var(--exec-muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.exec-kpi-value {
  overflow-wrap: anywhere;
  margin-bottom: 8px;
  color: var(--exec-ink);
  font-size: clamp(27px, 3vw, 37px);
  font-variant-numeric: tabular-nums;
  font-weight: 830;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.exec-kpi-value-negative {
  color: var(--exec-red);
}

.exec-kpi-unit {
  margin: -3px 0 11px;
  color: var(--exec-muted);
  font-size: 13px;
  font-weight: 700;
}

.exec-originals {
  display: grid;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--exec-muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.exec-comparison {
  margin-bottom: 0;
  padding-top: 11px;
  border-top: 1px solid var(--exec-line);
  font-size: 12px;
  font-weight: 730;
  line-height: 1.4;
}

.exec-comparison-positive {
  color: var(--exec-green);
}

.exec-comparison-negative {
  color: var(--exec-red);
}

.exec-comparison-neutral {
  color: var(--exec-muted);
}

.exec-card-note {
  margin: 9px 0 0;
  color: var(--exec-muted);
  font-size: 11px;
  line-height: 1.4;
}

.exec-chart-panel {
  margin-top: 16px;
}

.exec-commercial-section {
  padding-top: 4px;
}

.exec-commercial-state,
.exec-commercial-banner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 27px);
  background: var(--exec-surface);
  border: 1px solid var(--exec-line);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(8, 63, 73, .055);
}

.exec-commercial-state {
  justify-content: flex-start;
}

.exec-commercial-state > .exec-status {
  flex: 0 0 auto;
}

.exec-commercial-state h3,
.exec-commercial-banner h3 {
  margin-bottom: 6px;
  color: var(--exec-ink);
  font-size: 19px;
}

.exec-commercial-state p,
.exec-commercial-banner p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--exec-muted);
  font-size: 13px;
  line-height: 1.55;
}

.exec-commercial-state-waiting {
  background: linear-gradient(135deg, #fffaf0, var(--exec-surface));
  border-color: #efdca9;
}

.exec-commercial-state-unavailable {
  background: linear-gradient(135deg, var(--exec-red-soft), var(--exec-surface));
  border-color: #eec1bc;
}

.exec-commercial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 13px;
}

.exec-commercial-metric {
  min-width: 0;
  padding: 18px;
  background: var(--exec-surface);
  border: 1px solid var(--exec-line);
  border-radius: 15px;
}

.exec-commercial-value {
  margin-bottom: 6px;
  color: var(--exec-petrol-dark);
  font-size: clamp(27px, 3vw, 35px);
  font-variant-numeric: tabular-nums;
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1;
}

.exec-commercial-foot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 12px;
  padding: 13px 15px;
  color: var(--exec-muted);
  background: var(--exec-canvas);
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
}

.exec-commercial-foot p {
  margin-bottom: 0;
}

.exec-panel {
  min-width: 0;
  padding: clamp(21px, 3vw, 29px);
  border-radius: 19px;
}

.exec-panel > .exec-section-heading h2 {
  font-size: clamp(21px, 2.5vw, 27px);
}

.exec-chart {
  min-width: 0;
  margin-bottom: 0;
  padding: 10px 8px 0;
  background: linear-gradient(180deg, #fbfdfd, #fff);
  border: 1px solid #e8efee;
  border-radius: 15px;
}

.exec-chart svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 250px;
  overflow: visible;
}

.exec-chart figcaption {
  padding: 3px 13px 14px;
  color: var(--exec-muted);
  font-size: 12px;
  line-height: 1.45;
}

.exec-svg-grid {
  stroke: #e5edec;
  stroke-width: 1;
}

.exec-svg-zero {
  stroke: #aabdb9;
  stroke-width: 1.25;
}

.exec-svg-axis-label,
.exec-svg-x-label,
.exec-svg-empty {
  fill: var(--exec-muted);
  font-family: inherit;
  font-size: 11px;
}

.exec-svg-x-label {
  font-size: 10.5px;
  font-weight: 700;
}

.exec-svg-bar {
  fill: var(--exec-petrol);
  outline: none;
  transition: opacity .15s ease, filter .15s ease;
}

.exec-svg-bar-partial {
  fill: var(--exec-coral);
}

.exec-svg-bar-negative {
  fill: var(--exec-red);
}

.exec-svg-bar:hover,
.exec-svg-bar:focus {
  filter: brightness(.9);
  opacity: .88;
  stroke: #14343d;
  stroke-width: 2;
}

.exec-svg-average {
  stroke: var(--exec-violet);
  stroke-width: 2.5;
  stroke-dasharray: 7 6;
}

.exec-svg-average-label {
  fill: #5f56b1;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
}

.exec-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr);
  gap: 16px;
  align-items: stretch;
}

.exec-notices {
  display: grid;
  gap: 9px;
}

.exec-notice {
  margin-bottom: 0;
  padding: 13px 15px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.exec-notice-warning {
  color: #714d08;
  background: var(--exec-amber-soft);
  border: 1px solid #f0d992;
}

.exec-notice-error {
  color: var(--exec-red);
  background: var(--exec-red-soft);
  border: 1px solid #eec1bc;
}

.exec-notice-success {
  color: var(--exec-green);
  background: var(--exec-green-soft);
  border: 1px solid #bbdfd0;
}

.exec-pending-count {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--exec-amber);
  background: var(--exec-amber-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.exec-expense-details {
  margin-top: 16px;
  border-top: 1px solid var(--exec-line);
}

.exec-expense-details summary {
  padding: 16px 0 2px;
  color: var(--exec-petrol-dark);
  cursor: pointer;
  font-weight: 800;
}

.exec-expense-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.exec-expense-item {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 11px;
  background: var(--exec-canvas);
  border-radius: 10px;
}

.exec-expense-item span {
  color: var(--exec-muted);
  font-size: 11px;
  font-weight: 750;
}

.exec-expense-item strong {
  overflow-wrap: anywhere;
  color: var(--exec-ink);
  font-size: 12px;
}

.exec-operational-list {
  display: grid;
  gap: 12px;
}

.exec-operational-list article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px;
  background: var(--exec-canvas);
  border-radius: 12px;
}

.exec-operational-value {
  display: grid;
  place-items: center;
  min-height: 58px;
  color: var(--exec-petrol-dark);
  background: #fff;
  border-radius: 10px;
  font-size: 25px;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
}

.exec-operational-list h3 {
  margin-bottom: 4px;
  color: var(--exec-ink);
  font-size: 15px;
}

.exec-operational-list p {
  margin-bottom: 0;
  color: var(--exec-muted);
  font-size: 12px;
  line-height: 1.48;
}

.exec-sources {
  padding-top: 31px;
  border-top: 1px solid var(--exec-line);
}

.exec-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.exec-source-card {
  min-width: 0;
  padding: 18px;
  border-radius: 14px;
}

.exec-source-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.exec-source-title h3 {
  margin-bottom: 8px;
  color: var(--exec-ink);
  font-size: 14px;
  line-height: 1.35;
}

.exec-source-card > p {
  margin-bottom: 0;
  color: var(--exec-muted);
  font-size: 12px;
}

.exec-source-rates {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 12px;
  padding-top: 12px;
  color: var(--exec-ink);
  border-top: 1px solid var(--exec-line);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
}

.exec-state {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 42px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--exec-line);
  border-radius: 19px;
}

.exec-state > h2,
.exec-loading h2 {
  margin-bottom: 7px;
  color: var(--exec-ink);
  font-size: 23px;
}

.exec-state > p,
.exec-loading p {
  max-width: 590px;
  margin-bottom: 19px;
  color: var(--exec-muted);
  line-height: 1.55;
}

.exec-state-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  color: var(--exec-petrol-dark);
  background: var(--exec-petrol-soft);
  border-radius: 18px;
  font-size: 27px;
  font-weight: 850;
}

.exec-state-error .exec-state-icon {
  color: var(--exec-red);
  background: var(--exec-red-soft);
}

.exec-loading {
  grid-template-columns: auto minmax(0, 460px);
  gap: 18px;
  align-content: center;
  justify-content: center;
  text-align: left;
}

.exec-loading p {
  margin-bottom: 0;
}

.exec-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid var(--exec-petrol-soft);
  border-top-color: var(--exec-petrol);
  border-radius: 50%;
  animation: exec-spin .8s linear infinite;
}

@keyframes exec-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1120px) {
  .exec-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .exec-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exec-commercial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exec-kpi-label {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .exec-lower-grid,
  .exec-source-grid {
    grid-template-columns: 1fr;
  }

  .exec-source-title {
    align-items: center;
  }
}

@media (max-width: 680px) {
  .exec-hero {
    margin-right: -4px;
    margin-left: -4px;
    padding: 24px 18px;
    border-radius: 19px;
  }

  .exec-filters,
  .exec-kpi-grid,
  .exec-expense-grid,
  .exec-commercial-grid,
  .exec-commercial-foot {
    grid-template-columns: 1fr;
  }

  .exec-commercial-state,
  .exec-commercial-banner {
    flex-direction: column;
  }

  .exec-filter > span {
    white-space: normal;
  }

  .exec-connection {
    justify-content: flex-start;
  }

  .exec-content {
    gap: 34px;
  }

  .exec-kpi-card,
  .exec-panel {
    padding: 19px;
  }

  .exec-chart {
    margin-right: -9px;
    margin-left: -9px;
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .exec-chart svg {
    min-height: 220px;
  }

  .exec-chart figcaption {
    padding-right: 16px;
    padding-left: 16px;
  }

  .exec-loading {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exec-spinner {
    animation-duration: 1.8s;
  }

  .exec-svg-bar {
    transition: none;
  }
}
