@font-face {
  font-family: "DIN Arabic";
  src: url("assets/din-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Arabic";
  src: url("assets/din-medium.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --green-900: #064d3d;
  --green-800: #086b51;
  --green-700: #087a59;
  --green-600: #099669;
  --green-100: #dff3ec;
  --green-50: #eff9f6;
  --ink: #152721;
  --muted: #61726c;
  --line: #dce7e3;
  --warm: #f6f3ed;
  --white: #fff;
  --amber: #a86518;
  --amber-bg: #fff5e5;
  --red: #a74739;
  --red-bg: #fff0ed;
  --shadow: 0 18px 60px rgba(23, 68, 55, .1);
  --shadow-soft: 0 8px 28px rgba(23, 68, 55, .07);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: #f7faf9;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 15%, rgba(61, 185, 146, .1), transparent 24rem),
    #f7faf9;
  font-family: "DIN Arabic", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: 1rem;
  right: 1rem;
  transform: translateY(-180%);
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
  border-radius: .5rem;
}
.skip-link:focus { transform: translateY(0); }

.demo-ribbon {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  color: #d7efe8;
  background: var(--green-900);
  font-size: .78rem;
  letter-spacing: .01em;
}
.demo-ribbon span {
  color: var(--green-900);
  background: #b7e4d4;
  border-radius: 2px;
  padding: .1rem .5rem;
  font-weight: 700;
}
.demo-ribbon p { margin: 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(220,231,227,.9);
  backdrop-filter: blur(18px);
}
.topbar__inner {
  width: min(1380px, calc(100% - 5vw));
  height: 82px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 4rem;
}
.brand img { width: 86px; display: block; }
.main-nav { display: flex; align-items: stretch; height: 100%; gap: 2.4rem; }
.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #53625d;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--green-600);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--green-800); }
.main-nav a.is-active::after, .main-nav a:hover::after { transform: scaleX(1); }
.profile, .profile__button { display: flex; align-items: center; gap: .8rem; }
.profile__button {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: .4rem;
  text-align: right;
}
.profile__button b, .profile__button small { display: block; line-height: 1.25; }
.profile__button b { font-size: .9rem; font-weight: 600; }
.profile__button small { color: var(--muted); font-size: .74rem; margin-top: .15rem; }
.profile__button svg { width: 16px; }
.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: var(--green-700);
  font-weight: 700;
}
.icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: #475752;
  background: transparent;
}
.icon-button:hover { background: var(--green-50); }
.icon-button svg { width: 20px; }
.notification-dot {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c87835;
  box-shadow: 0 0 0 2px white;
}

.hero {
  width: min(1380px, calc(100% - 5vw));
  min-height: 430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  align-items: center;
  gap: 5rem;
  padding: 4rem 2rem 5.6rem;
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 .5rem;
  color: var(--green-700);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero h1 span { color: var(--green-700); }
.hero__copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}
.hero__actions { display: flex; align-items: center; gap: 1.2rem; margin-top: 2.2rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 0;
  border-radius: 5px;
  padding: .8rem 1.25rem;
  transition: transform .2s var(--ease), background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button--primary {
  color: white;
  background: var(--green-700);
  box-shadow: 0 9px 24px rgba(8,122,89,.2);
}
.button--primary:hover { background: var(--green-800); }
.button--text { color: var(--green-800); background: transparent; }
.button--text:hover { background: var(--green-50); }
.button svg { width: 17px; transform: rotate(180deg); }
.hero__signal {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
}
.hero__signal::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid #cfe5de;
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(226,243,237,.45), 0 0 0 120px rgba(239,248,245,.35);
}
.impact-ring { position: relative; z-index: 1; width: 235px; height: 235px; display: grid; place-items: center; }
.impact-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); stroke-width: 9; }
.impact-ring circle { stroke: #dcebe6; }
.impact-ring__value { stroke: var(--green-600) !important; stroke-dasharray: 452; stroke-dashoffset: 321; animation: ring-in 1.3s var(--ease) both .3s; }
@keyframes ring-in { from { stroke-dashoffset: 452; } to { stroke-dashoffset: 321; } }
.impact-ring strong { margin-top: -1.2rem; font-size: 3.6rem; color: var(--green-800); font-variant-numeric: tabular-nums; }
.impact-ring span { position: absolute; top: 60%; color: var(--muted); text-align: center; line-height: 1.4; }
.impact-note {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 12px;
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.impact-note__icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; color: var(--green-700); background: var(--green-100); }
.impact-note b, .impact-note small { display: block; }
.impact-note b { font-size: .92rem; }
.impact-note small { color: var(--muted); font-size: .72rem; }

.service-status {
  width: min(1320px, calc(100% - 8vw));
  min-height: 75px;
  margin: -2.4rem auto 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.3rem;
  border: 1px solid #cfe8df;
  border-radius: 9px;
  background: rgba(248,253,251,.9);
  box-shadow: var(--shadow-soft);
}
.service-status__mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 9px; background: var(--green-100); }
.service-status__mark span { width: 10px; height: 10px; border-radius: 50%; background: var(--green-600); box-shadow: 0 0 0 5px rgba(9,150,105,.13); }
.service-status b { font-size: .95rem; }
.service-status p { margin: .1rem 0 0; color: var(--muted); font-size: .78rem; }
.inline-link { border: 0; color: var(--green-700); background: transparent; padding: .6rem; }
.inline-link:hover { text-decoration: underline; }

.workspace {
  width: min(1380px, calc(100% - 5vw));
  margin: 0 auto 7rem;
  display: grid;
  grid-template-columns: 315px minmax(0, 1fr);
  gap: 1.3rem;
  align-items: start;
}
.scenario-nav {
  position: sticky;
  top: 105px;
  padding: 1.7rem 1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.scenario-nav__heading { padding: 0 .8rem 1rem; }
.scenario-nav__heading h2 { margin: 0; font-size: 1.5rem; line-height: 1.3; }
.scenario-nav__heading > p:last-child { margin: .6rem 0 0; color: var(--muted); font-size: .84rem; line-height: 1.6; }
.scenario-nav__list { display: grid; gap: .25rem; }
.scenario-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: .7rem;
  min-height: 52px;
  padding: .65rem .7rem;
  border: 0;
  border-radius: 7px;
  color: #50615b;
  background: transparent;
  text-align: right;
  transition: background .2s ease, color .2s ease, transform .2s var(--ease);
}
.scenario-tab:hover { color: var(--green-800); background: var(--green-50); transform: translateX(-2px); }
.scenario-tab.is-active { color: white; background: var(--green-800); }
.scenario-tab__num { height: 28px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 6px; font-size: .72rem; opacity: .75; }
.scenario-tab__title { font-size: .86rem; line-height: 1.3; }
.scenario-tab__count { color: #82918c; font-size: .7rem; font-variant-numeric: tabular-nums; }
.scenario-tab.is-active .scenario-tab__count { color: #bfe1d5; }
.research-note {
  display: flex;
  gap: .65rem;
  margin-top: 1rem;
  padding: 1rem .8rem .2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.research-note svg { width: 18px; min-width: 18px; color: var(--green-700); }
.research-note p { margin: 0; font-size: .72rem; line-height: 1.55; }

.scenario-stage {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  box-shadow: var(--shadow);
}
.stage-header {
  min-height: 142px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 2rem 1.5rem;
}
.stage-header__meta { display: flex; align-items: center; gap: .6rem; color: var(--green-700); font-size: .76rem; }
.separator { width: 3px; height: 3px; border-radius: 50%; background: #97a8a2; }
.stage-header h2 { margin: .4rem 0 .2rem; font-size: 2rem; letter-spacing: -.02em; }
.stage-header p { margin: 0; max-width: 700px; color: var(--muted); font-size: .92rem; line-height: 1.6; }
.proposal-badge { flex: 0 0 auto; padding: .32rem .55rem; border-radius: 3px; color: var(--green-800); background: var(--green-100); font-size: .72rem; font-weight: 700; }
.proposal-badge.is-before { color: #5f6b68; background: #edf1f0; }
.comparison-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 1.5rem 1rem;
  padding: .7rem .85rem;
  border: 1px solid #d7e3df;
  border-radius: 7px;
  background: #f8fbfa;
}
.comparison-switch > div:first-child b,
.comparison-switch > div:first-child span { display: block; }
.comparison-switch > div:first-child b { color: #31443f; font-size: .78rem; }
.comparison-switch > div:first-child span { margin-top: .12rem; color: #75837f; font-size: .68rem; }
.comparison-switch__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid #d6e2df;
  border-radius: 6px;
  background: #edf3f1;
}
.comparison-switch__buttons button {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  padding: .45rem .7rem;
  border: 0;
  border-radius: 4px;
  color: #64736f;
  background: transparent;
  font-family: inherit;
  font-size: .72rem;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.comparison-switch__buttons button span {
  min-width: 30px;
  padding: .12rem .3rem;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: .62rem;
  opacity: .75;
}
.comparison-switch__buttons button:hover { color: var(--green-800); }
.comparison-switch__buttons button.is-active {
  color: var(--green-800);
  background: #fdfefe;
  box-shadow: 0 1px 4px rgba(30, 74, 62, .12);
}
.prototype-frame { margin: 0 1.5rem; overflow: hidden; border: 1px solid #d7e3df; border-radius: 8px; background: #f7faf9; }
.prototype-frame__bar {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  border-bottom: 1px solid #d7e3df;
  color: #7b8984;
  background: #edf3f1;
  font-size: .7rem;
}
.prototype-frame__bar p { margin: 0; text-align: center; }
.prototype-frame__dots { display: flex; gap: 5px; }
.prototype-frame__dots i { width: 7px; height: 7px; display: block; border-radius: 50%; background: #aebdb8; }
.prototype-frame__dots i:first-child { background: var(--green-600); }
.scenario-content { min-height: 475px; padding: 2rem; animation: content-in .35s var(--ease) both; }
@keyframes content-in { from { opacity: 0; transform: translateY(8px); } }
.stage-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 104px;
  margin-top: 1.5rem;
  padding: 1.2rem 2rem;
  border-top: 1px solid var(--line);
  background: #fbfcfc;
}
.stage-footer span { color: var(--muted); font-size: .7rem; }
.stage-footer p { margin: .2rem 0 0; font-size: .82rem; }
.stage-footer__benefit { padding-right: 1rem; border-right: 1px solid var(--line); }
.next-scenario {
  display: flex;
  align-items: center;
  gap: .45rem;
  border: 0;
  border-radius: 5px;
  color: white;
  background: var(--green-700);
  padding: .75rem 1rem;
}
.next-scenario:hover { background: var(--green-800); }
.next-scenario svg { width: 15px; transform: rotate(180deg); }

/* Prototype components */
.proto-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.35rem; }
.proto-heading h3 { margin: 0; font-size: 1.35rem; }
.proto-heading p { margin: .25rem 0 0; color: var(--muted); font-size: .8rem; }
.contract-ref { color: var(--muted); font-size: .75rem; font-variant-numeric: tabular-nums; }
.status-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding: 1rem;
  border: 1px solid #d9ead8;
  border-right: 4px solid var(--green-600);
  border-radius: 7px;
  background: #f5fbf8;
}
.status-banner--warning { border-color: #f0dfbd; border-right-color: #c37a1b; background: var(--amber-bg); }
.status-banner--error { border-color: #efcec7; border-right-color: var(--red); background: var(--red-bg); }
.status-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 9px; color: var(--green-700); background: var(--green-100); }
.status-banner--warning .status-icon { color: var(--amber); background: #ffe4b9; }
.status-banner--error .status-icon { color: var(--red); background: #ffdcd5; }
.status-icon svg { width: 20px; }
.status-banner b { display: block; font-size: .88rem; }
.status-banner p { margin: .18rem 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.status-banner time { color: var(--green-800); font-size: .75rem; font-weight: 700; }
.status-banner--warning time { color: var(--amber); }
.mini-button {
  border: 1px solid var(--green-700);
  border-radius: 4px;
  color: var(--green-700);
  background: white;
  padding: .55rem .75rem;
  font-size: .74rem;
}
.mini-button:hover { color: white; background: var(--green-700); }
.mini-button--filled { color: white; background: var(--green-700); }
.mini-button--filled:hover { background: var(--green-800); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1.5rem .5rem 1.2rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.timeline-step { position: relative; text-align: center; color: #7c8985; }
.timeline-step::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 15px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #dce7e3;
}
.timeline-step:first-child::before { display: none; }
.timeline-step i { position: relative; z-index: 1; width: 30px; height: 30px; display: grid; place-items: center; margin: auto; border: 2px solid #cbd8d3; border-radius: 50%; background: white; font-style: normal; font-size: .72rem; }
.timeline-step b { display: block; margin-top: .55rem; font-size: .76rem; }
.timeline-step small { display: block; margin-top: .15rem; font-size: .65rem; }
.timeline-step.is-done { color: var(--green-700); }
.timeline-step.is-done i { color: white; border-color: var(--green-600); background: var(--green-600); }
.timeline-step.is-done::before { background: var(--green-600); }
.timeline-step.is-current { color: var(--ink); }
.timeline-step.is-current i { border-color: var(--green-600); box-shadow: 0 0 0 5px var(--green-100); }
.detail-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1rem; }
.detail-item { padding: .9rem 1rem; border-right: 2px solid var(--green-100); background: white; }
.detail-item span, .detail-item b { display: block; }
.detail-item span { color: var(--muted); font-size: .68rem; }
.detail-item b { margin-top: .2rem; font-size: .83rem; }
.wizard { display: grid; grid-template-columns: 190px 1fr; gap: 1.5rem; }
.wizard-steps { display: grid; align-content: start; gap: .6rem; }
.wizard-step { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-size: .76rem; }
.wizard-step i { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid #cbd8d3; border-radius: 6px; font-style: normal; font-size: .65rem; }
.wizard-step.is-done { color: var(--green-700); }
.wizard-step.is-done i { color: white; border-color: var(--green-600); background: var(--green-600); }
.wizard-step.is-current { color: var(--ink); font-weight: 700; }
.wizard-step.is-current i { border-color: var(--green-600); color: var(--green-700); box-shadow: 0 0 0 3px var(--green-100); }
.validation-card { padding: 1.4rem; border: 1px solid var(--line); border-radius: 8px; background: white; }
.validation-card h4 { margin: 0; font-size: 1rem; }
.validation-card > p { margin: .25rem 0 1rem; color: var(--muted); font-size: .74rem; }
.check-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .7rem;
  min-height: 58px;
  padding: .6rem 0;
  border-bottom: 1px solid #edf2f0;
}
.check-row:last-of-type { border-bottom: 0; }
.check-mark { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 6px; color: var(--green-700); background: var(--green-100); font-size: .7rem; }
.check-row.is-error .check-mark { color: var(--red); background: var(--red-bg); }
.check-row b, .check-row small { display: block; }
.check-row b { font-size: .78rem; }
.check-row small { color: var(--muted); font-size: .65rem; }
.check-state { color: var(--green-700); font-size: .68rem; }
.check-row.is-error .check-state { color: var(--red); }
.form-actions { display: flex; justify-content: flex-end; gap: .7rem; margin-top: 1rem; }
.unit-layout { display: grid; grid-template-columns: 1fr 270px; gap: 1rem; }
.unit-list { display: grid; gap: .65rem; }
.unit-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .8rem;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}
.unit-card.is-disabled { opacity: .82; border-color: #efd8d3; background: #fffafa; }
.unit-card input { accent-color: var(--green-700); }
.unit-card b, .unit-card small { display: block; }
.unit-card b { font-size: .82rem; }
.unit-card small { color: var(--muted); font-size: .68rem; }
.unit-card em { color: var(--red); font-size: .66rem; font-style: normal; }
.guide-panel { padding: 1.1rem; border-radius: 8px; color: #d9f1e8; background: var(--green-900); }
.guide-panel h4 { margin: 0; color: white; font-size: 1rem; }
.guide-panel p { margin: .4rem 0 1rem; font-size: .72rem; line-height: 1.6; }
.guide-panel ul { margin: 0; padding: 0 1rem 0 0; font-size: .7rem; line-height: 2; }
.guide-panel button { width: 100%; margin-top: 1rem; border: 0; border-radius: 4px; color: var(--green-900); background: #c9eadf; padding: .65rem; }
.payment-card { border: 1px solid var(--line); border-radius: 8px; background: white; }
.payment-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.1rem; border-bottom: 1px solid var(--line); }
.payment-card__head b, .payment-card__head small { display: block; }
.payment-card__head b { font-size: .9rem; }
.payment-card__head small { color: var(--muted); font-size: .68rem; }
.amount { color: var(--ink); font-size: 1.25rem !important; font-variant-numeric: tabular-nums; }
.payment-progress { padding: 1.2rem; }
.progress-track { position: relative; height: 8px; margin: .7rem 0 .6rem; overflow: hidden; border-radius: 6px; background: #e8efec; }
.progress-track i { display: block; width: 68%; height: 100%; border-radius: inherit; background: var(--green-600); animation: progress-in .8s var(--ease) both; }
@keyframes progress-in { from { width: 0; } }
.progress-labels { display: flex; justify-content: space-between; color: var(--muted); font-size: .67rem; }
.wallet-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 1rem; }
.wallet-card { position: relative; min-height: 210px; overflow: hidden; padding: 1.4rem; border-radius: 10px; color: white; background: var(--green-900); }
.wallet-card::after { content: ""; position: absolute; width: 200px; height: 200px; left: -70px; bottom: -100px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.035); }
.wallet-card small { color: #b7d8cd; }
.wallet-card h4 { margin: .5rem 0 1.6rem; font-size: 1.2rem; }
.wallet-card strong { display: block; font-size: 1.7rem; font-variant-numeric: tabular-nums; }
.wallet-card span { font-size: .68rem; color: #c6dfd7; }
.wallet-checklist { padding: 1.2rem; border: 1px solid var(--line); border-radius: 8px; background: white; }
.wallet-checklist h4 { margin: 0 0 .8rem; }
.transfer-summary { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1rem; }
.transfer-card { padding: 1.3rem; border: 1px solid var(--line); border-radius: 8px; background: white; }
.transfer-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.transfer-card h4 { margin: 0; }
.transfer-card p { margin: .2rem 0 0; color: var(--muted); font-size: .72rem; }
.date-box { margin: 1.2rem 0; padding: 1rem; border-right: 4px solid var(--green-600); background: var(--green-50); }
.date-box span, .date-box strong { display: block; }
.date-box span { color: var(--muted); font-size: .68rem; }
.date-box strong { margin-top: .2rem; color: var(--green-800); font-size: 1.2rem; }
.policy-card { padding: 1.3rem; border-radius: 8px; color: #d7eee7; background: var(--green-900); }
.policy-card h4 { margin: 0; color: white; }
.policy-card p { font-size: .73rem; line-height: 1.7; }
.policy-card a { display: inline-block; margin-top: .6rem; color: white; text-decoration: underline; font-size: .72rem; }
.login-preview { max-width: 620px; margin: auto; padding: 1.4rem; border: 1px solid var(--line); border-radius: 8px; background: white; }
.login-preview__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.nafath-word { color: var(--green-600); font-size: 1.8rem; font-weight: 800; }
.fake-field { height: 48px; display: flex; align-items: center; margin-top: .9rem; padding: 0 1rem; border: 1px solid var(--line); border-radius: 5px; color: #8a9893; background: #f8fbfa; font-size: .78rem; }
.health-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 1rem;
}
.health-detail div { padding: .9rem; border: 1px solid var(--line); border-radius: 6px; background: white; }
.health-detail b, .health-detail small { display: block; }
.health-detail b { font-size: .78rem; }
.health-detail small { color: var(--muted); font-size: .65rem; }
.health-detail i { display: inline-block; width: 7px; height: 7px; margin-left: .3rem; border-radius: 50%; background: var(--green-600); }

/* Ejar-native screens inside the interactive prototype */
.ejar-screen {
  min-height: 475px;
  margin: -2rem;
  padding: 1.45rem;
  color: #303335;
  background: #f1faf9;
}
.ejar-page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ejar-page-heading p {
  margin: 0 0 .35rem;
  color: #8d929a;
  font-size: .68rem;
}
.ejar-page-heading p b { color: #00a477; font-weight: 400; }
.ejar-page-heading p span { padding: 0 .4rem; }
.ejar-page-heading h3 { margin: 0; font-size: 1.25rem; }
.ejar-page-heading strong { display: block; margin-top: .6rem; font-size: .82rem; }
.ejar-actions { display: flex; gap: .5rem; margin-bottom: .8rem; direction: ltr; }
.ejar-primary, .ejar-outline {
  min-height: 34px;
  border-radius: 3px;
  padding: .45rem .8rem;
  font-size: .69rem;
}
.ejar-primary { border: 1px solid #00a477; color: #fff; background: #00a477; }
.ejar-primary:hover { background: #008e68; }
.ejar-outline { border: 1px solid #d4e5e2; color: #00a477; background: #fff; }
.ejar-outline:hover { border-color: #00a477; }
.ejar-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .55rem;
  margin-bottom: .85rem;
  overflow-x: auto;
}
.ejar-tabs span {
  flex: 0 0 auto;
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 0 .8rem;
  border: 1px solid #d8dde1;
  border-radius: 20px;
  color: #424547;
  background: #fff;
  font-size: .64rem;
}
.ejar-tabs span.active { border-color: #00a477; color: #fff; background: #00a477; }
.ejar-contract-row {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr .9fr .9fr 1.15fr .7fr 34px;
  align-items: center;
  gap: .8rem;
  min-height: 82px;
  margin-top: .6rem;
  padding: .9rem;
  border: 1px solid #dfeeea;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(26, 104, 83, .06);
}
.ejar-contract-row.featured { grid-template-rows: auto auto; }
.ejar-contract-row small,
.ejar-contract-row b,
.ejar-contract-row em { display: block; }
.ejar-contract-row small { margin-bottom: .2rem; color: #92969e; font-size: .58rem; font-weight: 400; }
.ejar-contract-row b { font-size: .67rem; line-height: 1.45; }
.ejar-contract-row em { margin-top: .15rem; color: #92969e; font-size: .54rem; font-style: normal; }
.ejar-contract-row .ejar-date {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  direction: ltr;
  font-variant-numeric: tabular-nums;
}
.ejar-date svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: #00a477;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ejar-link { color: #00a477; letter-spacing: .04em; }
.ejar-state {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .15rem .45rem;
  border-radius: 13px;
  color: #44514e;
  background: #e3faf3;
  font-size: .58rem;
}
.ejar-state i { width: 8px; height: 8px; border-radius: 50%; background: #11c890; }
.ejar-state.ended { background: #ffe9e8; }
.ejar-state.ended i { background: #ff514d; }
.ejar-state.pending { color: #725f35; background: #fff6df; }
.ejar-state.pending i { background: #e6a42c; }
.ejar-more {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: #00a477;
  background: #f1f9f7;
  font-size: 1rem;
}
.ejar-inline-status {
  grid-column: 1 / -1;
  min-height: 38px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .6rem;
  padding: .45rem .7rem;
  border: 1px solid #cfe8e1;
  border-right: 3px solid #00a477;
  border-radius: 3px;
  color: #21765f;
  background: #effaf7;
}
.ejar-inline-status > span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #00a477;
  border-radius: 50%;
  font-size: .6rem;
}
.ejar-inline-status b, .ejar-inline-status small { display: block; }
.ejar-inline-status b { font-size: .65rem; }
.ejar-inline-status small { margin: .1rem 0 0; color: #6a817b; font-size: .55rem; }
.ejar-inline-status strong { font-size: .62rem; }
.ejar-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .45rem;
  margin-bottom: .8rem;
  padding: .7rem;
  border: 1px solid #dfeeea;
  border-radius: 3px;
  background: #fff;
}
.ejar-steps span { display: flex; align-items: center; gap: .35rem; color: #91969b; font-size: .59rem; }
.ejar-steps i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #cbdad6;
  border-radius: 50%;
  font-size: .55rem;
  font-style: normal;
}
.ejar-steps span.done { color: #00a477; }
.ejar-steps span.done i { color: #fff; border-color: #00a477; background: #00a477; }
.ejar-steps span.current { color: #303335; font-weight: 600; }
.ejar-steps span.current i { border-color: #00a477; color: #00a477; }
.ejar-form-panel {
  padding: 1rem 1.2rem;
  border: 1px solid #dfeeea;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(26, 104, 83, .05);
}
.ejar-form-panel > header { padding-bottom: .7rem; border-bottom: 1px solid #e7efed; }
.ejar-form-panel h4 { margin: 0; font-size: .9rem; }
.ejar-form-panel p { margin: .2rem 0 0; color: #8d929a; font-size: .62rem; }
.ejar-check {
  min-height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .7rem;
  border-bottom: 1px solid #edf2f1;
}
.ejar-check > i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #00a477;
  font-size: .6rem;
  font-style: normal;
}
.ejar-check.error > i { background: #ff514d; }
.ejar-check b, .ejar-check small { display: block; }
.ejar-check b { font-size: .68rem; }
.ejar-check small { margin-top: .15rem; color: #8d929a; font-size: .56rem; }
.ejar-check > span { color: #00a477; font-size: .6rem; }
.ejar-generic-error {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .7rem;
  margin: .9rem 0;
  padding: .7rem;
  border: 1px solid #efd7d4;
  border-radius: 3px;
  color: #8e403a;
  background: #fff7f6;
}
.ejar-generic-error > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #d85b53;
  font-size: .65rem;
  font-weight: 700;
}
.ejar-generic-error b, .ejar-generic-error small { display: block; }
.ejar-generic-error b { font-size: .68rem; }
.ejar-generic-error small { margin-top: .12rem; color: #916b67; font-size: .56rem; }
.ejar-form-panel footer { display: flex; justify-content: flex-end; gap: .5rem; margin-top: .8rem; }
.ejar-nafath {
  max-width: 570px;
  margin: 0 auto;
  padding: 1.2rem;
  border: 1px solid #dfeeea;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(26, 104, 83, .05);
}
.ejar-nafath > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.ejar-nafath h4 { margin: 0; font-size: .9rem; }
.ejar-nafath header p { margin: .25rem 0 0; color: #8d929a; font-size: .62rem; }
.ejar-nafath header > b { color: #00a477; font-size: 1.65rem; }
.ejar-service-alert {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .6rem;
  margin: .9rem 0;
  padding: .7rem;
  border: 1px solid #efddb8;
  border-radius: 3px;
  color: #755d2c;
  background: #fff8e9;
}
.ejar-service-alert svg { width: 20px; }
.ejar-service-alert b, .ejar-service-alert small { display: block; }
.ejar-service-alert b { font-size: .66rem; }
.ejar-service-alert small { margin-top: .12rem; font-size: .55rem; }
.ejar-service-alert strong { font-size: .58rem; }
.ejar-nafath > label { display: block; margin: .4rem 0; font-size: .62rem; }
.ejar-input {
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 .7rem;
  border: 1px solid #dce9e6;
  border-radius: 3px;
  color: #9da1a4;
  background: #fbfdfd;
  font-size: .62rem;
}
.ejar-nafath > .ejar-primary { width: 100%; margin-top: .6rem; }
.ejar-unit-layout { display: grid; grid-template-columns: 1fr 230px; gap: .8rem; }
.ejar-units { display: grid; gap: .55rem; }
.ejar-units > label, .ejar-units > div {
  min-height: 59px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .7rem;
  padding: .7rem;
  border: 1px solid #dfeeea;
  border-radius: 3px;
  background: #fff;
}
.ejar-units input { accent-color: #00a477; }
.ejar-units b, .ejar-units small, .ejar-units em { display: block; }
.ejar-units b { font-size: .67rem; }
.ejar-units small { margin-top: .1rem; color: #8d929a; font-size: .56rem; }
.ejar-units em { margin-top: .1rem; color: #c34c43; font-size: .54rem; font-style: normal; }
.ejar-units > label > span { color: #00a477; font-size: .58rem; }
.ejar-units .invalid { border-color: #f0d8d4; background: #fffbfb; }
.ejar-requirements {
  padding: .9rem;
  border: 1px solid #dfeeea;
  border-radius: 3px;
  background: #fff;
}
.ejar-requirements h4 { margin: 0; font-size: .78rem; }
.ejar-requirements p { margin: .3rem 0; color: #8d929a; font-size: .58rem; }
.ejar-requirements ul { margin: .4rem 0 0; padding-right: 1rem; color: #626e6a; font-size: .58rem; line-height: 2; }
.ejar-requirements.is-empty { color: #697672; background: #f7f9f8; }
.ejar-finance-layout { display: grid; grid-template-columns: minmax(0, 2.15fr) 250px; gap: .8rem; }
.ejar-payment-panel, .ejar-stats {
  border: 1px solid #dfeeea;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(26, 104, 83, .05);
}
.ejar-payment-panel > header, .ejar-stats > header { padding: .8rem 1rem; border-bottom: 1px solid #e4edeb; }
.ejar-payment-panel h4, .ejar-stats h4 { margin: 0; font-size: .85rem; }
.ejar-payment-panel header p, .ejar-stats header p { margin: .2rem 0 0; color: #8d929a; font-size: .58rem; }
.ejar-payment-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; padding: .9rem; }
.ejar-payment-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .55rem;
  padding: .65rem;
  border: 1px solid #d5e6e2;
  border-radius: 3px;
  background: #fff;
}
.ejar-pay-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #969aa3;
  background: #eff0f1;
  font-size: .9rem;
}
.ejar-pay-icon.late { color: #ff514d; background: #fff0ef; }
.ejar-pay-icon.due { color: #f6a000; background: #fff7e6; }
.ejar-pay-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ejar-payment-card small, .ejar-payment-card b { display: block; }
.ejar-payment-card small { color: #898d95; font-size: .54rem; }
.ejar-payment-card b { margin-top: .3rem; font-size: .72rem; font-weight: 400; direction: ltr; text-align: right; }
.ejar-payment-card footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .5rem;
  border-top: 1px solid #e5edeb;
}
.ejar-payment-card footer span { color: #8d929a; font-size: .53rem; }
.ejar-payment-card footer .ejar-outline { min-height: 27px; padding: .25rem .55rem; }
.ejar-finance-status {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .6rem;
  margin: 0 .9rem .9rem;
  padding: .55rem .7rem;
  border: 1px solid #cfe8e1;
  border-radius: 3px;
  color: #21765f;
  background: #effaf7;
}
.ejar-payment-guidance { display: grid; gap: .45rem; padding-bottom: .9rem; }
.ejar-payment-guidance .ejar-finance-status { margin-bottom: 0; }
.ejar-finance-status > span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #00a477;
  border-radius: 50%;
  font-size: .58rem;
}
.ejar-finance-status > span svg { width: 13px; }
.ejar-finance-status b, .ejar-finance-status small { display: block; }
.ejar-finance-status b { font-size: .63rem; }
.ejar-finance-status small { margin-top: .1rem; color: #71837e; font-size: .54rem; }
.ejar-finance-status strong { font-size: .59rem; }
.ejar-finance-status.warning { border-color: #eddcb9; color: #735d30; background: #fff8e9; }
.ejar-finance-status.warning > span { border-color: #b98020; }
.ejar-support-rule {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .6rem;
  margin: 0 .9rem;
  padding: .55rem .7rem;
  border: 1px solid #dde7e5;
  border-radius: 3px;
  color: #4f5d59;
  background: #fff;
}
.ejar-support-rule > span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #82918d;
  border-radius: 50%;
  font-size: .58rem;
  font-weight: 700;
}
.ejar-support-rule b, .ejar-support-rule small { display: block; }
.ejar-support-rule b { font-size: .63rem; }
.ejar-support-rule small { margin-top: .1rem; color: #78847f; font-size: .54rem; }
.ejar-support-rule .ejar-outline { min-height: 29px; white-space: nowrap; }
.ejar-stats { padding-bottom: .8rem; }
.ejar-total {
  margin: .8rem;
  padding: .6rem;
  border-radius: 3px;
  color: #858992;
  background: #f7f7f8;
  font-size: .55rem;
}
.ejar-total b { float: left; color: #303335; font-size: .62rem; font-weight: 400; }
.ejar-donut {
  position: relative;
  width: 105px;
  height: 105px;
  margin: .75rem auto;
  border-radius: 50%;
  background: conic-gradient(#00a477 0 27%, #e6f3f0 27% 100%);
}
.ejar-donut::after { content: ""; position: absolute; inset: 15px; border-radius: 50%; background: #fff; }
.ejar-donut > div { position: absolute; z-index: 1; inset: 0; display: grid; place-content: center; text-align: center; }
.ejar-donut b, .ejar-donut strong { display: block; }
.ejar-donut b { font-size: .56rem; }
.ejar-donut strong { font-size: .8rem; }
.ejar-stats > p { margin: .35rem .8rem; color: #898d95; font-size: .53rem; }
.ejar-stats > p i { display: inline-block; width: 8px; height: 8px; margin-left: .3rem; border-radius: 50%; background: #00a477; }
.ejar-stats > p i.pale { background: #e6f3f0; }
.ejar-stats > p b { display: block; margin-right: 1rem; color: #303335; font-weight: 400; }

.evidence {
  width: min(1240px, calc(100% - 8vw));
  margin: 0 auto 7rem;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7rem;
  align-items: end;
}
.evidence__intro h2 { margin: 0; max-width: 520px; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.05; letter-spacing: -.035em; }
.evidence__intro > p:last-child { margin: 1.4rem 0 0; max-width: 580px; color: var(--muted); line-height: 1.8; }
.metrics { border-top: 1px solid var(--line); }
.metrics article {
  display: grid;
  grid-template-columns: 130px 1fr 150px;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.metrics strong { color: var(--green-800); font-size: 1.8rem; font-variant-numeric: tabular-nums; }
.metrics span { color: var(--muted); font-size: .82rem; }
.metric-bar { height: 5px; overflow: hidden; border-radius: 5px; background: #e3ece9; }
.metric-bar i { display: block; height: 100%; background: var(--green-600); }

.page-footer {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 5vw;
  color: #d8e9e3;
  background: var(--green-900);
}
.page-footer img { width: 82px; filter: brightness(0) invert(1); }
.page-footer p { font-size: .78rem; }
.page-footer div { display: flex; gap: 1.3rem; font-size: .75rem; }
.page-footer a:hover { color: white; text-decoration: underline; }
.toast {
  position: fixed;
  z-index: 30;
  right: 50%;
  bottom: 1.5rem;
  transform: translate(50%, 140%);
  min-width: 280px;
  max-width: min(500px, 90vw);
  padding: .9rem 1.1rem;
  border-radius: 7px;
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: .82rem;
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s ease;
}
.toast.is-visible { transform: translate(50%, 0); opacity: 1; }

button:focus-visible, a:focus-visible { outline: 3px solid rgba(9,150,105,.35); outline-offset: 3px; }

@media (max-width: 1050px) {
  .main-nav { display: none; }
  .topbar__inner { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; gap: 2rem; }
  .hero__signal { display: none; }
  .workspace { grid-template-columns: 1fr; }
  .scenario-nav { position: static; }
  .scenario-nav__list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .research-note { display: none; }
  .evidence { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 720px) {
  .demo-ribbon p { display: none; }
  .topbar__inner { width: calc(100% - 2rem); height: 68px; }
  .profile__button span:not(.avatar) { display: none; }
  .profile { gap: .2rem; }
  .hero { width: calc(100% - 2rem); min-height: auto; padding: 3rem 0 4.5rem; }
  .hero h1 { font-size: 2.7rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .service-status { width: calc(100% - 2rem); grid-template-columns: auto 1fr; }
  .service-status .inline-link { grid-column: 2; justify-self: start; padding: 0; }
  .workspace { width: calc(100% - 1rem); }
  .scenario-nav__list { grid-template-columns: 1fr; }
  .stage-header { min-height: auto; padding: 1.3rem; }
  .stage-header h2 { font-size: 1.55rem; }
  .proposal-badge { display: none; }
  .comparison-switch { align-items: stretch; flex-direction: column; margin: 0 .6rem .8rem; }
  .comparison-switch__buttons { grid-template-columns: 1fr 1fr; }
  .prototype-frame { margin: 0 .6rem; }
  .prototype-frame__bar { grid-template-columns: auto 1fr; }
  .prototype-frame__bar > span { display: none; }
  .scenario-content { min-height: 560px; padding: 1rem; }
  .stage-footer { grid-template-columns: 1fr; padding: 1.1rem; }
  .stage-footer__benefit { padding: 0; border: 0; }
  .wizard, .unit-layout, .wallet-grid, .transfer-summary { grid-template-columns: 1fr; }
  .wizard-steps { grid-template-columns: repeat(2,1fr); }
  .timeline { grid-template-columns: 1fr; gap: .7rem; text-align: right; }
  .timeline-step { display: grid; grid-template-columns: 32px 1fr; gap: .7rem; text-align: right; }
  .timeline-step::before { display: none; }
  .timeline-step i { grid-row: 1 / 3; }
  .timeline-step b { margin: 0; }
  .detail-strip, .health-detail { grid-template-columns: 1fr; }
  .status-banner { grid-template-columns: auto 1fr; }
  .status-banner time, .status-banner .mini-button { grid-column: 2; justify-self: start; }
  .ejar-screen { min-height: 560px; margin: -1rem; padding: 1rem; }
  .ejar-page-heading { align-items: flex-start; flex-direction: column; }
  .ejar-tabs { justify-content: flex-start; }
  .ejar-contract-row { grid-template-columns: 1fr 1fr 32px; }
  .ejar-contract-row > div:nth-of-type(n+3):not(.ejar-inline-status) { display: none; }
  .ejar-contract-row.featured { grid-template-rows: auto auto; }
  .ejar-inline-status { grid-column: 1 / -1; grid-template-columns: auto 1fr; }
  .ejar-inline-status strong { grid-column: 2; }
  .ejar-steps { display: flex; overflow-x: auto; }
  .ejar-steps span { flex: 0 0 auto; }
  .ejar-unit-layout, .ejar-finance-layout { grid-template-columns: 1fr; }
  .ejar-payment-cards { grid-template-columns: 1fr; }
  .ejar-service-alert, .ejar-finance-status, .ejar-support-rule { grid-template-columns: auto 1fr; }
  .ejar-service-alert strong, .ejar-finance-status strong, .ejar-finance-status button, .ejar-support-rule button { grid-column: 2; justify-self: start; }
  .evidence { width: calc(100% - 2rem); }
  .metrics article { grid-template-columns: 110px 1fr; }
  .metric-bar { grid-column: 1 / -1; }
  .page-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
