@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;
  --compare-current: #b83b31;
  --compare-current-line: #e8b8b3;
  --compare-current-bg: #fff8f7;
  --compare-proposed: #087a59;
  --compare-proposed-line: #acd8cb;
  --compare-proposed-bg: #f3fbf8;
  --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; }

.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 3.5rem;
  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: 470px;
  display: grid;
  place-items: center;
}
.hero__signal::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid #cfe5de;
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(226,243,237,.45), 0 0 0 78px 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; }

.inline-link { border: 0; color: var(--green-700); background: transparent; padding: .6rem; }
.inline-link:hover { text-decoration: underline; }

.catalog-nav {
  width: min(620px, calc(100% - 2rem));
  margin: 1.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f1f7f5;
}
.catalog-nav a {
  position: relative;
  min-height: 58px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-content: center;
  gap: .1rem .65rem;
  padding: .65rem 1rem;
  color: var(--muted);
  transition: color .2s ease, background .2s ease;
}
.catalog-nav a + a { border-right: 1px solid var(--line); }
.catalog-nav a:hover { color: var(--green-800); background: var(--green-50); }
.catalog-nav a.is-active { color: var(--green-800); background: #e2f2ec; }
.catalog-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 0;
  left: 1rem;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--green-600);
}
.catalog-nav span {
  grid-row: 1 / 3;
  align-self: center;
  font-size: .62rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.catalog-nav strong { font-size: .82rem; }
.catalog-nav small { font-size: .62rem; opacity: .8; }

.hero--development {
  width: min(1660px, calc(100% - 4vw));
  min-height: 410px;
  grid-template-columns: minmax(520px, 1.05fr) minmax(620px, .95fr);
  gap: 7rem;
  padding-block: 4.5rem 4rem;
}
.hero--development h1 {
  max-width: 830px;
  font-size: 4.45rem;
  line-height: 1.04;
}
.development-overview {
  width: min(690px, 100%);
  min-height: 190px;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  padding: 1.5rem 0;
  border-block: 1px solid #c7ddd6;
  background: transparent;
}
.development-overview > strong {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding-inline: 1.4rem;
  color: var(--green-800);
  font-size: 4.6rem;
  line-height: .85;
  font-variant-numeric: tabular-nums;
}
.development-overview > span {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  max-width: 150px;
  padding: .65rem 1.4rem 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}
.development-overview > div {
  grid-row: 1 / 3;
  min-height: 115px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-right: 1px solid #d2e2dd;
  color: var(--muted);
  font-size: .74rem;
}
.development-overview b {
  display: block;
  color: var(--green-800);
  font-size: 1.85rem;
  line-height: 1;
}
.development-overview small {
  font-size: .74rem;
}

.workspace {
  width: min(1880px, calc(100% - 2vw));
  margin: 4rem auto 7rem;
  scroll-margin-top: 108px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: .85rem;
  align-items: start;
}
.scenario-nav {
  position: sticky;
  top: 105px;
  padding: 1.15rem .65rem .7rem;
  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 .55rem .75rem; }
.scenario-nav__heading h2 { margin: 0; font-size: 1.18rem; line-height: 1.3; }
.scenario-nav__heading > p:last-child { margin: .45rem 0 0; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.scenario-nav__list { display: grid; gap: .25rem; }
.scenario-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: .7rem;
  min-height: 44px;
  padding: .5rem .55rem;
  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: 25px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 5px; font-size: .65rem; opacity: .75; }
.scenario-tab__title { font-size: .76rem; line-height: 1.3; }
.scenario-tab__count { color: #82918c; font-size: .62rem; font-variant-numeric: tabular-nums; }
.scenario-tab.is-active .scenario-tab__count { color: #bfe1d5; }
.research-note {
  display: flex;
  gap: .65rem;
  margin-top: 1rem;
  padding: .75rem .55rem .15rem;
  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: .63rem; line-height: 1.5; }

.scenario-stage {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.stage-header {
  min-height: 116px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.5rem 1.1rem;
}
.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: .32rem 0 .18rem; font-size: 1.75rem; letter-spacing: -.02em; }
.stage-header p { margin: 0; max-width: 760px; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.proposal-badge { flex: 0 0 auto; padding: .3rem .55rem; border-radius: 4px; color: var(--green-800); background: var(--green-100); font-size: .69rem; font-weight: 700; }
.prototype-frame { margin: 0 .85rem; overflow: hidden; border: 1px solid #d7e3df; border-radius: 7px; 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); }
.prototype-frame__actions { display: flex; align-items: center; gap: .45rem; }
.presentation-tour-button {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .38rem .72rem;
  border: 1px solid #8fcdbc;
  border-radius: 5px;
  color: #075f49;
  background: #e5f6f0;
  font-size: .68rem;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.presentation-tour-button:hover,
.presentation-tour-button.is-active { color: #f7fbf9; background: #087a59; border-color: #087a59; }
.presentation-tour-button svg { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.presentation-tour-button.is-active svg { transform: rotate(90deg); }
.scenario-content { min-height: 475px; padding: .8rem; animation: content-in .25s var(--ease) both; }
.comparison-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  align-items: stretch;
  gap: .75rem;
  margin-bottom: .8rem;
  direction: rtl;
}
.comparison-overview__state {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(190px, .7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 1.2rem;
  min-height: 150px;
  padding: 1.35rem 1.5rem;
  border: 1px solid #dce6e2;
  border-radius: 9px;
  background: #f9fbfa;
}
.comparison-overview__state--current {
  border-color: #ead5d2;
  background: #fcf8f7;
}
.comparison-overview__state--proposed {
  border-color: #cce4dc;
  background: #f4faf7;
}
.comparison-overview__label {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.comparison-overview__label > span {
  min-width: 52px;
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: .2rem .45rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
}
.comparison-overview__state--current .comparison-overview__label { color: var(--compare-current); }
.comparison-overview__state--proposed .comparison-overview__label { color: var(--compare-proposed); }
.comparison-overview__label small {
  display: block;
  margin-bottom: .16rem;
  color: #798781;
  font-size: .82rem;
}
.comparison-overview__label h3 {
  margin: 0;
  color: #24342e;
  font-size: 1.32rem;
  line-height: 1.25;
}
.comparison-overview__transition {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .15rem;
  color: var(--green-700);
}
.comparison-overview__transition span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid #bdd9d0;
  border-radius: 50%;
  background: #eff8f5;
  font-size: 1.55rem;
  font-weight: 700;
}
.comparison-overview__transition small {
  color: #70817b;
  font-size: .78rem;
  font-weight: 700;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  direction: rtl;
}
.comparison-panel {
  min-width: 0;
  position: relative;
  padding-top: .35rem;
}
.comparison-note {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: .22rem;
  padding-right: 1rem;
  border-right: 1px solid #d8e3df;
}
.comparison-note span {
  font-size: .95rem;
  font-weight: 700;
}
.comparison-note p {
  margin: 0;
  color: #2f3d38;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.55;
}
.comparison-note--current { border-color: #e9cfcc; }
.comparison-note--current span { color: var(--compare-current); }
.comparison-note--proposed { border-color: #cce2db; }
.comparison-note--proposed span { color: var(--compare-proposed); }
.comparison-note--proposed p {
  font-size: 1.42rem;
  font-weight: 800;
}

@media (min-width: 1500px) {
  .comparison-overview__state { min-height: 158px; }
  .comparison-note p { font-size: 1.38rem; }
  .comparison-note--proposed p { font-size: 1.5rem; }
}
.comparison-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .25rem;
  margin: 0 0 .65rem;
  padding: .65rem .45rem;
  border: 1px solid #e0e8e5;
  border-radius: 6px;
  background: #fbfcfc;
  list-style: none;
}
.comparison-journey::before {
  content: "";
  position: absolute;
  top: 21px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: #dce6e3;
}
.comparison-journey li {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: .25rem;
  color: #7a8783;
  text-align: center;
}
.comparison-journey i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid #d5e0dc;
  border-radius: 50%;
  color: #71807b;
  background: #f1f5f4;
  font-size: .53rem;
  font-style: normal;
  font-weight: 700;
}
.comparison-journey span { font-size: .52rem; line-height: 1.35; }
.comparison-journey--proposed li.is-highlighted { color: #087a59; font-weight: 700; }
.comparison-journey--proposed li.is-highlighted i {
  border-color: #00a477;
  color: #fff;
  background: #00a477;
}
.comparison-journey li.is-complete i {
  border-color: #75bea7;
  color: #fff;
  background: #75bea7;
}
.comparison-panel--current .comparison-journey li.is-active {
  color: #b83c34;
  font-weight: 700;
}
.comparison-panel--current .comparison-journey li.is-active i {
  border-color: #bd433b;
  color: #fff;
  background: #bd433b;
}
.comparison-panel--proposed .comparison-journey li.is-active {
  color: #087a59;
  font-weight: 700;
}
.comparison-panel--proposed .comparison-journey li.is-active i {
  border-color: #00a477;
  color: #fff;
  background: #00a477;
}
.customer-view {
  margin: 0;
  overflow: hidden;
  border: 1px solid #d7e2df;
  border-radius: 9px;
  background: #f1faf9;
  box-shadow: 0 10px 28px rgba(29, 72, 60, .07);
}
.comparison-panel--current .customer-view { border-color: #e4d7d4; }
.comparison-panel--proposed .customer-view {
  border-color: #b9dcd1;
  box-shadow: 0 12px 30px rgba(17, 105, 79, .09);
}
.customer-view__bar {
  min-height: 39px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .7rem;
  padding: 0 .8rem;
  border-bottom: 1px solid #d7e2df;
  color: #6f7d78;
  background: #edf2f1;
  font-size: .6rem;
}
.customer-view__bar > div { display: flex; gap: 4px; }
.customer-view__bar i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #b6c3bf;
}
.customer-view__bar i:first-child { background: #11a879; }
.customer-view__bar span { color: #53655f; text-align: center; font-weight: 800; }
.customer-view__bar small {
  direction: ltr;
  padding: .16rem .45rem;
  border-radius: 12px;
  color: #82908b;
  background: #f9fbfa;
  font-size: .52rem;
}
.comparison-panel__screen {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background: #f1faf9;
}
.comparison-panel__screen .ejar-screen {
  min-height: 500px;
  margin: 0;
  padding: 1rem;
}
.ejar-annotation {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .5rem;
  margin: .45rem 0;
  padding: .5rem .65rem;
  border: 1px solid;
  border-radius: 5px;
}
.ejar-annotation::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 22px;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(-45deg);
}
.ejar-annotation--problem {
  border-color: var(--compare-current-line);
  color: var(--compare-current);
  background: var(--compare-current-bg);
}
.ejar-annotation--problem::before {
  border-color: var(--compare-current-line);
  background: var(--compare-current-bg);
}
.ejar-annotation--solution {
  border-color: var(--compare-proposed-line);
  color: var(--compare-proposed);
  background: var(--compare-proposed-bg);
}
.ejar-annotation--solution::before {
  right: auto;
  left: 22px;
  border-color: var(--compare-proposed-line);
  background: var(--compare-proposed-bg);
}
.ejar-annotation > i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .54rem;
  font-style: normal;
  font-weight: 800;
}
.ejar-annotation b { display: block; font-size: .64rem; }
.ejar-annotation p {
  margin: .1rem 0 0;
  color: inherit;
  font-size: .54rem;
  line-height: 1.5;
}
.ejar-contract-row .ejar-annotation { grid-column: 1 / -1; margin: .1rem 0 0; }
.ejar-form-panel > .ejar-annotation { margin-right: 0; margin-left: 0; }
.ejar-nafath > .ejar-annotation { margin-right: 0; margin-left: 0; }
.ejar-units > .ejar-annotation { margin: .1rem 0; }
.ejar-payment-panel > .ejar-annotation { width: calc(100% - 1.8rem); margin: 0 .9rem .6rem; }
@keyframes content-in { from { opacity: 0; transform: translateY(8px); } }
.stage-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  margin-top: 1rem;
  padding: .9rem 1.5rem;
  border-top: 1px solid var(--line);
  background: #fbfcfc;
}
.full-comparison-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem .9rem;
  border: 1px solid #9fd3c2;
  border-radius: 5px;
  color: #087a59;
  background: #edf9f5;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
}
.full-comparison-link:hover { border-color: #00a477; background: #e5f5ef; }
.full-comparison-link[hidden] { display: none; }
.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-app-header {
  min-height: 52px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .8rem;
  margin: -1.45rem -1.45rem 1.1rem;
  padding: .55rem .85rem;
  border-bottom: 1px solid #dbe7e4;
  background: #fff;
}
.comparison-panel__screen .ejar-app-header {
  margin: -1rem -1rem 1rem;
}
.ejar-app-header > img {
  width: 52px;
  height: 36px;
  object-fit: contain;
}
.ejar-app-header nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .95rem;
  overflow: hidden;
  white-space: nowrap;
}
.ejar-app-header nav span {
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  color: #687570;
  font-size: .6rem;
}
.ejar-app-header nav span.active {
  border-bottom-color: #00a477;
  color: #008664;
  font-weight: 700;
}
.ejar-government-strip {
  min-height: 24px;
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: -1rem -1rem 0;
  padding: .25rem .75rem;
  color: #4d5c57;
  background: #f4f6f5;
  font-size: .46rem;
}
.ejar-government-strip a { margin-right: auto; font-size: .46rem; }
.ejar-full-header {
  margin: 0 -1rem 1rem;
  border-bottom: 1px solid #dce8e4;
  background: #fdfefe;
}
.ejar-full-header__main {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: .65rem;
  padding: .55rem .8rem;
}
.ejar-full-header__main > img {
  width: 76px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.ejar-full-account b,
.ejar-full-account small,
.ejar-full-profile b,
.ejar-full-profile small { display: block; }
.ejar-full-account b,
.ejar-full-profile b {
  font-size: .58rem;
  line-height: 1.25;
  white-space: nowrap;
}
.ejar-full-account small,
.ejar-full-profile small {
  margin-top: .1rem;
  color: #84908c;
  font-size: .44rem;
  white-space: nowrap;
}
.ejar-full-search {
  min-width: 0;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 .7rem;
  border-radius: 6px;
  color: #93a09c;
  background: #edf7f4;
  font-size: .5rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ejar-full-profile {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.ejar-full-profile > span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #087a59;
  background: #edf7f4;
  font-size: .65rem;
  font-weight: 700;
  aspect-ratio: 1;
}
.ejar-full-profile > div {
  min-width: max-content;
}
.ejar-full-bell,
.ejar-full-language { border: 0; color: #586761; background: transparent; font-size: .5rem; }
.ejar-full-nav {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: .95rem;
  padding: 0 .8rem;
  overflow-x: auto;
  color: #46534f;
  white-space: nowrap;
  font-size: .48rem;
}
.ejar-full-nav span { position: relative; height: 38px; display: flex; align-items: center; }
.ejar-full-nav span.active { color: #008d69; font-weight: 700; }
.ejar-full-nav span.active::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: #00a477; }
.ejar-full-nav--menus {
  gap: .7rem;
  overflow: visible;
}
.ejar-nav-dropdown-wrap {
  position: relative;
  height: 38px;
  display: flex;
  align-items: center;
}
.ejar-nav-link {
  position: relative;
  height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #46534f;
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
}
.ejar-nav-link.is-active {
  color: #008d69;
  font-weight: 700;
}
.ejar-nav-link.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #00a477;
}
.ejar-nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  z-index: 20;
  min-width: 210px;
  padding: .35rem 0;
  border: 1px solid #e4ece9;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 48, 40, .12);
}
.ejar-nav-dropdown--tall {
  max-height: none;
  overflow: visible;
}
.comparison-panel__screen:has(.ejar-representative-menu-screen) {
  min-height: 720px;
  overflow: visible;
}
.comparison-panel--current .customer-view:has(.ejar-representative-menu-screen),
.comparison-panel--proposed .customer-view:has(.ejar-representative-menu-screen) {
  overflow: visible;
}
.comparison-panel__screen .ejar-representative-menu-screen {
  min-height: 700px;
  overflow: visible;
}
.comparison-panel__screen .ejar-representative-menu-screen .ejar-nav-dropdown--tall {
  min-width: 230px;
  max-height: none;
  overflow: visible;
}
.comparison-panel__screen .ejar-representative-menu-screen .ejar-nav-dropdown button {
  font-size: .5rem;
  padding: .38rem .7rem;
  line-height: 1.3;
}
.comparison-panel__screen .ejar-representative-menu-screen .ejar-execution-canvas {
  min-height: 120px;
  padding-top: .5rem;
}
.comparison-panel__screen .ejar-representative-menu-screen.is-selected {
  min-height: 520px;
  overflow: hidden;
}
.comparison-panel__screen .ejar-representative-menu-screen .ejar-execution-canvas.is-page {
  display: block;
  place-items: unset;
  padding: .85rem .9rem 1rem;
  background: #f5f7f6;
}
.rep-requests-page {
  border: 1px solid #dce6e2;
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
}
.rep-requests-page > .najiz-breadcrumb {
  padding: .65rem .85rem .2rem;
}
.rep-requests-page__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .7rem;
  padding: .35rem .85rem .75rem;
  border-bottom: 1px solid #edf2f0;
}
.rep-requests-page__header h3 {
  margin: 0;
  color: #1f2b27;
  font-size: .88rem;
}
.rep-requests-page__header p {
  margin: .25rem 0 0;
  color: #8a9490;
  font-size: .52rem;
}
.rep-requests-page__header .ejar-primary {
  min-height: 30px;
  padding: 0 .7rem;
  font-size: .52rem;
  white-space: nowrap;
}
.rep-requests-page .request-table {
  padding: .35rem .85rem 1rem;
}
.rep-requests-page .request-table em.success {
  color: #087a59;
}
.ejar-nav-dropdown[hidden] { display: none !important; }
.ejar-nav-dropdown button {
  display: block;
  width: 100%;
  padding: .55rem .85rem;
  border: 0;
  background: transparent;
  color: #3d4b46;
  text-align: right;
  cursor: pointer;
  font: inherit;
  font-size: .58rem;
  line-height: 1.4;
}
.ejar-nav-dropdown button:hover { background: #f4f8f6; }
.ejar-nav-dropdown button.is-highlight {
  color: #087a59;
  background: #f3fbf8;
  font-weight: 800;
}
.ejar-nav-dropdown button.is-muted { color: #8a9691; }
.ejar-execution-menu-screen {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  background: #f5f7f6;
}
.ejar-execution-canvas {
  flex: 1;
  display: grid;
  place-items: start center;
  padding: 1.2rem;
  min-height: 0;
}
.ejar-execution-placeholder {
  max-width: 320px;
  padding: 1rem 1.1rem;
  border: 1px dashed #c9d7d2;
  border-radius: 6px;
  background: #fff;
  text-align: center;
}
.ejar-execution-placeholder p {
  margin: 0;
  color: #31433d;
  font-size: .72rem;
}
.ejar-execution-placeholder small {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .58rem;
  line-height: 1.55;
}
.ejar-execution-result {
  width: min(420px, 100%);
  border: 1px solid #d7e5e1;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(24, 48, 40, .08);
}
.ejar-execution-result header {
  padding: .8rem 1rem;
  border-bottom: 1px solid #e8f0ed;
  background: #f7fbfa;
}
.ejar-execution-result h4 { margin: 0; color: #087a59; font-size: .82rem; }
.ejar-execution-result header p { margin: .25rem 0 0; color: var(--muted); font-size: .58rem; }
.ejar-execution-result__list { padding: .35rem 1rem 1rem; }
.ejar-execution-result__list p {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: .5rem;
  align-items: center;
  margin: 0;
  padding: .55rem 0;
  border-bottom: 1px solid #eef3f1;
  font-size: .62rem;
}
.ejar-execution-result__list p:last-child { border-bottom: 0; }
.ejar-execution-result__list span { color: var(--muted); }
.ejar-execution-result__list em { color: #087a59; font-style: normal; font-weight: 700; }
.ejar-execution-empty {
  padding: 1.4rem 1rem;
  color: #8a9691;
  text-align: center;
  font-size: .7rem;
}
.ejar-execution-result__list em.is-pending {
  color: #ad7104;
}

/* Proposal 04/11 mockups inside comparison panels */
.comparison-panel__screen:has(.ejar-execution-menu-screen) {
  min-height: 560px;
  overflow: hidden;
}
.comparison-panel--current .customer-view:has(.ejar-execution-menu-screen),
.comparison-panel--proposed .customer-view:has(.ejar-execution-menu-screen) {
  overflow: hidden;
}
.comparison-panel__screen .ejar-execution-menu-screen {
  min-height: 560px;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-full-header {
  margin: 0;
  position: relative;
  z-index: 5;
  overflow: visible;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-government-strip {
  font-size: .52rem;
  min-height: 26px;
  padding: 0 .75rem;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-full-header__main {
  min-height: 58px;
  gap: .55rem;
  padding: .55rem .7rem;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-full-header__main > img {
  width: 72px;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-full-search {
  min-height: 34px;
  font-size: .52rem;
  padding: 0 .65rem;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-full-language,
.comparison-panel__screen .ejar-execution-menu-screen .ejar-full-bell {
  font-size: .52rem;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-full-profile b {
  font-size: .58rem;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-full-profile small {
  font-size: .46rem;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-full-profile > span {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  font-size: .62rem;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-full-nav--menus {
  position: relative;
  z-index: 6;
  font-size: .52rem;
  gap: .55rem;
  min-height: 40px;
  padding: 0 .7rem;
  overflow: visible;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-nav-link,
.comparison-panel__screen .ejar-execution-menu-screen .ejar-full-nav span,
.comparison-panel__screen .ejar-execution-menu-screen .ejar-nav-dropdown-wrap {
  height: 40px;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-nav-dropdown-wrap {
  position: relative;
  z-index: 7;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-nav-dropdown {
  top: 100%;
  right: 0;
  left: auto;
  min-width: 200px;
  max-width: min(240px, 70vw);
  box-shadow: 0 10px 28px rgba(24, 48, 40, .14);
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-nav-dropdown button {
  font-size: .58rem;
  padding: .55rem .75rem;
}
.comparison-panel__screen .ejar-execution-menu-screen .ejar-execution-canvas {
  flex: 1;
  min-height: 180px;
  padding: 1rem .75rem 1.25rem;
  background: #f5f7f6;
}

.ejar-app-profile {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: #34413d;
  white-space: nowrap;
}
.ejar-app-profile > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: #087a59;
  font-size: .66rem;
  font-weight: 700;
}
.ejar-app-profile b,
.ejar-app-profile small { display: block; }
.ejar-app-profile b { font-size: .58rem; line-height: 1.2; }
.ejar-app-profile small { margin-top: .08rem; color: #7b8984; font-size: .48rem; line-height: 1.2; }
.ejar-login {
  min-height: 30px;
  padding: .35rem .65rem;
  border: 1px solid #00a477;
  border-radius: 3px;
  color: #fff;
  background: #00a477;
  font-size: .6rem;
}
.ejar-role-screen { background: #f5faf8; }
.ejar-public-home { padding: 0 !important; background: #fff; }
.ejar-public-gov {
  min-height: 24px;
  display: grid;
  place-items: center;
  color: #48554f;
  background: #eff2f1;
  font-size: .51rem;
}
.ejar-public-nav {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .8rem;
  padding: .45rem .75rem;
  border-bottom: 1px solid #e1e8e5;
}
.ejar-public-nav img { width: 63px; height: 40px; object-fit: contain; }
.ejar-public-nav nav { display: flex; justify-content: center; gap: .85rem; color: #34413c; font-size: .54rem; }
.ejar-public-nav .ejar-primary { min-height: 31px; font-size: .56rem; }
.ejar-public-hero {
  min-height: 414px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  color: #f6fbf9;
  background:
    radial-gradient(circle at 25% 65%, rgba(32, 139, 113, .36), transparent 29%),
    linear-gradient(135deg, #06101d 0%, #071b2a 48%, #0c4e49 100%);
  text-align: center;
}
.ejar-public-hero > div { max-width: 510px; }
.ejar-public-hero h3 { margin: 0; font-size: 2rem; }
.ejar-public-hero p { margin: .8rem 0 1rem; color: #d6e5e0; font-size: .7rem; line-height: 1.65; }
.ejar-public-hero button {
  min-height: 32px;
  padding: .45rem .8rem;
  border: 0;
  border-radius: 3px;
  color: #283631;
  background: #f6faf8;
  font-size: .57rem;
}
.ejar-role-current {
  overflow: hidden;
  border: 1px solid #d8e4e0;
  border-radius: 6px;
  background: #f9fcfb;
}
.ejar-role-current > header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1rem;
  border-bottom: 1px solid #dce7e4;
  background: #fff;
}
.ejar-role-current > header small,
.ejar-role-current > header b { display: block; }
.ejar-role-current > header small { color: #899691; font-size: .58rem; }
.ejar-role-current > header b { margin-top: .18rem; color: #34413d; font-size: .72rem; }
.ejar-role-account {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .55rem;
  border: 1px solid #e2eae8;
  border-radius: 5px;
  background: #f9fbfa;
}
.ejar-role-account > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: #087a59;
  font-size: .65rem;
  font-weight: 700;
}
.ejar-role-account > div b { margin: 0; color: #087a59; font-size: .62rem; }
.ejar-role-account > div small { margin-top: .08rem; font-size: .52rem; }
.ejar-role-account > i { color: #82908b; font-size: .65rem; font-style: normal; }
.ejar-role-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  padding: 1rem;
}
.ejar-role-dashboard article {
  min-height: 112px;
  padding: .9rem;
  border: 1px solid #dfe8e5;
  border-radius: 5px;
  background: #fff;
}
.ejar-role-dashboard small,
.ejar-role-dashboard strong,
.ejar-role-dashboard span { display: block; }
.ejar-role-dashboard small { color: #7d8a86; font-size: .57rem; }
.ejar-role-dashboard strong { margin: .4rem 0 .55rem; color: #283632; font-size: 1.2rem; }
.ejar-role-dashboard span { color: #008f69; font-size: .55rem; }
.ejar-role-hidden-hint {
  margin: 0 1rem 1rem;
  color: #8a9692;
  font-size: .54rem;
  text-align: left;
}
.ejar-role-picker {
  max-width: 690px;
  margin: 1rem auto;
  padding: 1.25rem;
  border: 1px solid #d3e4df;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(24, 74, 58, .07);
}
.ejar-role-picker__intro { max-width: 540px; margin: 0 auto 1rem; text-align: center; }
.ejar-role-picker__intro > span {
  display: inline-block;
  padding: .2rem .5rem;
  border-radius: 3px;
  color: #087a59;
  background: #e5f5ef;
  font-size: .55rem;
  font-weight: 700;
}
.ejar-role-picker__intro h3 { margin: .6rem 0 .35rem; color: #23322d; font-size: 1.25rem; }
.ejar-role-picker__intro p { margin: 0; color: #72807b; font-size: .66rem; line-height: 1.65; }
.ejar-role-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
}
.ejar-role-option {
  min-height: 154px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: .85rem .65rem;
  border: 1px solid #d8e4e0;
  border-radius: 6px;
  color: #34423d;
  background: #fbfdfc;
  text-align: center;
  transition: border-color .2s ease, background .2s ease, transform .2s var(--ease);
}
.ejar-role-option:hover {
  border-color: #79c9ae;
  background: #f2faf7;
  transform: translateY(-2px);
}
.ejar-role-option.is-selected {
  border-color: #00a477;
  background: #effaf6;
  box-shadow: 0 0 0 2px rgba(0, 164, 119, .1);
}
.ejar-role-option i {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #087a59;
  background: #dff2eb;
  font-size: 1rem;
  font-style: normal;
}
.ejar-role-option b { margin: .55rem 0 .25rem; font-size: .74rem; }
.ejar-role-option small { color: #75827e; font-size: .53rem; line-height: 1.5; }
.ejar-role-option span {
  margin-top: auto;
  padding-top: .5rem;
  color: #008f69;
  font-size: .52rem;
  font-weight: 700;
}
.ejar-role-picker__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .45rem;
  margin-top: 1rem;
}
.ejar-role-picker__actions .ejar-primary { min-width: 160px; }
.ejar-role-picker__actions p { margin: 0; color: #85918d; font-size: .53rem; }
.ejar-role-nafath { padding: .25rem 0 1rem; }
.ejar-role-nafath > h3 { margin: .2rem 0 .8rem; font-size: 1.15rem; text-align: center; }
.ejar-role-nafath__card {
  width: min(470px, calc(100% - 1.2rem));
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid #dce8e4;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(25, 70, 55, .06);
}
.ejar-role-nafath__card > header {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: .8rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid #e2ebe8;
}
.ejar-role-nafath__card > header > b {
  min-height: 62px;
  display: grid;
  place-items: center;
  color: #2f9b77;
  background: #f0f8f5;
  font-size: 1.55rem;
}
.ejar-role-nafath__card h4 { margin: 0; font-size: .78rem; }
.ejar-role-nafath__card header p { margin: .25rem 0 0; color: #6c7975; font-size: .54rem; line-height: 1.5; }
.ejar-role-context {
  margin-top: .7rem;
  padding: .45rem .6rem;
  border: 1px solid #c9e3da;
  border-radius: 4px;
  color: #087a59;
  background: #effaf6;
  font-size: .6rem;
}
.ejar-role-nafath__card label { display: block; margin: .75rem 0 .3rem; color: #53615c; font-size: .58rem; }
.ejar-role-input {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 .65rem;
  border: 1px solid #cfe0db;
  color: #84918d;
  background: #edf7f4;
  direction: ltr;
  font-size: .58rem;
}
.ejar-role-nafath__card > .ejar-primary { width: 100%; margin-top: .65rem; }
.ejar-role-reset {
  display: block;
  margin: .55rem auto 0;
  padding: .3rem .55rem;
  border: 0;
  color: #64736e;
  background: transparent;
  font-size: .55rem;
  text-decoration: underline;
}
.ejar-role-dashboard-nav {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .7rem;
  padding: .45rem .7rem;
  border-bottom: 1px solid #dce8e4;
  background: #fff;
}
.ejar-role-dashboard-nav > img { width: 57px; }
.ejar-role-dashboard-nav > nav { display: flex; justify-content: center; gap: .8rem; color: #66746f; font-size: .52rem; }
.ejar-role-account-menu { position: relative; }
.ejar-role-account-trigger {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .4rem;
  border: 1px solid #dfe8e5;
  border-radius: 4px;
  color: #31413b;
  background: #fff;
}
.ejar-role-account-trigger > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: #087a59;
  font-size: .55rem;
}
.ejar-role-account-trigger b,
.ejar-role-account-trigger small { display: block; text-align: right; }
.ejar-role-account-trigger b { color: #087a59; font-size: .5rem; }
.ejar-role-account-trigger small { color: #788680; font-size: .46rem; }
.ejar-role-account-trigger i { color: #87938f; font-size: .5rem; font-style: normal; }
.ejar-role-switcher {
  width: 180px;
  display: none;
  position: absolute;
  z-index: 5;
  top: calc(100% + .35rem);
  left: 0;
  padding: .4rem;
  border: 1px solid #d6e3df;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(22, 58, 47, .16);
}
.ejar-role-switcher.is-open { display: block; }
.ejar-role-switcher > b { display: block; padding: .3rem; color: #75837e; font-size: .5rem; }
.ejar-role-switcher button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: .4rem;
  border: 0;
  border-radius: 3px;
  color: #34433d;
  background: transparent;
  font-size: .54rem;
}
.ejar-role-switcher button:hover { background: #eff8f5; }
.ejar-role-dashboard-body { padding: 1rem; }
.ejar-role-dashboard-body > span { color: #008f69; font-size: .54rem; }
.ejar-role-dashboard-body > h3 { margin: .25rem 0 .75rem; font-size: 1.15rem; }
.ejar-role-success {
  margin-bottom: .7rem;
  padding: .5rem .65rem;
  border: 1px solid #c8e3da;
  border-radius: 4px;
  color: #087a59;
  background: #effaf6;
  font-size: .58rem;
}
.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-state.draft { color: #4f5c58; background: #edf1f0; }
.ejar-state.draft i { background: #8c9995; }
.ejar-more {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: #00a477;
  background: #f1f9f7;
  font-size: 1rem;
}
.ejar-draft-screen .ejar-contract-row { position: relative; }
.ejar-draft-menu {
  position: absolute;
  z-index: 4;
  top: 58px;
  left: 10px;
  width: 130px;
  overflow: hidden;
  border: 1px solid #e0e9e6;
  border-radius: 3px;
  background: #fdfefe;
  box-shadow: 0 10px 24px rgba(24, 59, 49, .14);
}
.ejar-draft-menu.is-open { display: block; }
.ejar-draft-menu[hidden] { display: none; }
.ejar-draft-menu button {
  width: 100%;
  min-height: 38px;
  padding: .65rem .8rem;
  border: 0;
  color: #384742;
  background: transparent;
  text-align: right;
  font-size: .62rem;
}
.ejar-draft-menu button + button { border-top: 1px solid #edf2f0; }
.ejar-draft-menu button:hover { background: #f1f8f5; }
.ejar-draft-menu button.is-delete { color: #bc4037; }
.ejar-draft-menu button.is-delete:hover { background: #fff4f3; }
.ejar-contract-row.is-removing {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 180ms ease-out, transform 180ms ease-out;
}
.ejar-draft-confirm-overlay {
  position: absolute;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(25, 37, 33, .38);
}
.ejar-draft-confirm {
  width: min(310px, 90%);
  overflow: hidden;
  border: 1px solid #dfe7e4;
  border-radius: 6px;
  background: #fdfefe;
  box-shadow: 0 18px 44px rgba(17, 35, 29, .24);
}
.ejar-draft-confirm > header {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e6ecea;
  text-align: center;
}
.ejar-draft-confirm h4 {
  margin: 0;
  color: #34433e;
  font-size: .76rem;
  line-height: 1.6;
}
.ejar-draft-confirm > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
}
.ejar-draft-confirm > footer button {
  min-width: 88px;
  min-height: 38px;
}
.ejar-draft-confirm > footer button:focus-visible {
  outline: 3px solid rgba(0, 164, 119, .22);
  outline-offset: 2px;
}
.ejar-draft-detail__actions {
  display: flex;
  gap: .55rem;
  margin-bottom: 1rem;
  direction: ltr;
}
.ejar-draft-detail__actions .is-delete { color: #bc4037; border-color: #e9cac7; }
.ejar-contract-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 1rem;
  border-top: 1px solid #d9e5e1;
}
.ejar-contract-progress span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: .3rem;
  padding-top: .45rem;
  color: #5c6965;
  font-size: .52rem;
}
.ejar-contract-progress span::before { content: ""; position: absolute; top: -1px; right: 0; width: 100%; height: 2px; background: transparent; }
.ejar-contract-progress span.active::before { background: #00a477; }
.ejar-contract-progress i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #d6e2de;
  border-radius: 50%;
  background: #fdfefe;
  font-size: .48rem;
  font-style: normal;
}
.ejar-contract-progress span.active i { border-color: #00a477; color: #008c68; }
.ejar-rental-fact {
  margin-bottom: .9rem;
  padding: .9rem;
  border: 1px solid #dce8e4;
  border-radius: 4px;
  background: #fdfefe;
}
.ejar-rental-fact header { display: flex; align-items: center; gap: .5rem; padding-bottom: .7rem; border-bottom: 1px solid #e4ece9; }
.ejar-rental-fact header span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #fdfefe; background: #00a477; font-size: .55rem; font-weight: 700; }
.ejar-rental-fact h4 { margin: 0; font-size: .72rem; }
.ejar-rental-fact label { display: grid; gap: .35rem; margin-top: .7rem; color: #4c5a55; font-size: .55rem; }
.ejar-rental-fact input { height: 32px; border: 1px solid #bed1cb; border-radius: 2px; background: #f8fbfa; }
.ejar-draft-detail__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: .8rem; }
.ejar-draft-detail__grid > section,
.ejar-draft-detail__grid > aside { padding: .9rem; border: 1px solid #dce8e4; border-radius: 4px; background: #fdfefe; }
.ejar-draft-detail__grid h4 { margin: 0; font-size: .7rem; }
.ejar-draft-detail__grid p { margin: .25rem 0 .7rem; color: #8a9692; font-size: .5rem; }
.ejar-draft-detail__grid section > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.ejar-draft-detail__grid label { color: #687570; font-size: .5rem; }
.ejar-draft-detail__grid label b { display: block; margin-top: .3rem; padding: .55rem; color: #3c4945; background: #edf7f4; font-size: .58rem; }
.ejar-draft-detail__grid section > strong { display: block; margin-top: .6rem; padding: .55rem; color: #42514c; background: #f7faf9; font-size: .54rem; }
.ejar-draft-detail__grid aside b,
.ejar-draft-detail__grid aside small { display: block; }
.ejar-draft-detail__grid aside b { margin-top: 1rem; font-size: .58rem; }
.ejar-draft-detail__grid aside small { margin-top: .25rem; color: #8a9692; font-size: .48rem; }
.ejar-legal-screen {
  position: relative;
  min-height: 610px;
  overflow: hidden;
}
.ejar-legal-background {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  padding: .7rem;
}
.ejar-legal-background > div,
.ejar-legal-background > section {
  min-height: 68px;
  padding: .8rem;
  border: 1px solid #dce8e4;
  border-radius: 4px;
  background: #fdfefe;
}
.ejar-legal-background > div span { display: block; color: #64716d; font-size: .52rem; }
.ejar-legal-background > div i { display: block; height: 27px; margin-top: .4rem; background: #edf7f4; }
.ejar-legal-background > section { grid-column: 1 / -1; min-height: 135px; }
.ejar-legal-background h4 { margin: 0; font-size: .68rem; }
.ejar-legal-background p { color: var(--muted); font-size: .52rem; }
.ejar-legal-overlay {
  position: absolute;
  z-index: 6;
  inset: 98px 0 0;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 1.2rem;
  background: rgba(31, 43, 39, .3);
}
.ejar-legal-modal {
  width: min(690px, 94%);
  overflow: hidden;
  border-radius: 5px;
  background: #fdfefe;
  box-shadow: 0 18px 45px rgba(19, 38, 32, .22);
}
.ejar-legal-modal > header {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  border-bottom: 1px solid #e5ece9;
}
.ejar-legal-modal h4 { margin: 0; font-size: .72rem; }
.ejar-legal-modal header button { border: 0; color: #008a67; background: transparent; font-size: 1rem; }
.ejar-legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem 1rem;
  padding: 1.2rem 1rem .8rem;
}
.ejar-legal-field { display: grid; gap: .35rem; }
.ejar-legal-field > span { color: #46534f; font-size: .56rem; }
.ejar-legal-field > div {
  min-height: 31px;
  display: flex;
  align-items: center;
  padding: 0 .6rem;
  border: 1px solid #d7e5e1;
  border-radius: 3px;
  color: #36443f;
  background: #edf7f4;
  font-size: .58rem;
}
.ejar-legal-field.is-select > div { border-color: #72bda4; background: #f1faf7; }
.ejar-legal-field.is-select > div::before { content: "⌄"; margin-left: auto; color: #62736d; }
.ejar-legal-field.is-date > div { color: #71bca4; background: #f8fbfa; }
.ejar-legal-field.is-expiry > span { color: #9a4039; }
.ejar-legal-field.is-optional > span { color: #4d625b; }
.ejar-legal-upload { margin: 0 1rem 1rem; padding: .7rem 1rem 1rem; border: 1px solid #edf1ef; border-radius: 3px; text-align: center; }
.ejar-legal-upload b { display: block; margin-bottom: .7rem; text-align: right; font-size: .58rem; }
.ejar-legal-upload span { display: block; color: #00a477; font-size: 1.4rem; }
.ejar-legal-upload strong { display: block; color: #53615c; font-size: .55rem; }
.ejar-legal-upload small { display: block; margin-top: .25rem; color: #8b9692; font-size: .48rem; }
.ejar-legal-modal > footer {
  display: flex;
  justify-content: space-between;
  padding: .8rem 1rem;
  border-top: 1px solid #e5ece9;
}
.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 .ejar-counting-rule {
  margin-top: .32rem;
  padding-top: .3rem;
  border-top: 1px solid #d5e8e2;
  color: #496b62;
  font-weight: 600;
  line-height: 1.55;
}
.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); }

.development-screen { min-height: 600px; }
.development-ui { padding: 1.1rem; }
.development-panel {
  width: min(760px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #d8e5e1;
  border-radius: 7px;
  background: #fdfefe;
  box-shadow: 0 7px 20px rgba(23,55,46,.06);
}
.development-panel > header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.development-panel h4 { margin: 0; font-size: .92rem; }
.development-panel header p { margin: .25rem 0 0; color: var(--muted); font-size: .62rem; }
.development-tag {
  flex: 0 0 auto;
  padding: .4rem .6rem;
  border-radius: 4px;
  color: var(--green-800);
  background: var(--green-100);
  font-size: .62rem;
  font-weight: 700;
}
.development-amount { color: var(--green-800); font-size: 1.2rem; }
.development-record {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, .65fr) minmax(130px, 1fr));
  gap: .7rem 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: #f8fbfa;
}
.development-record span { color: var(--muted); font-size: .6rem; }
.development-record b { font-size: .7rem; }
.text-success { color: var(--green-700); }
.text-warning { color: #b77506; }
.development-alert {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: .75rem;
  margin: 1rem 1.25rem;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7faf9;
}
.development-alert > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: #7b8c86;
  font-size: .7rem;
  font-weight: 700;
}
.development-alert b { font-size: .72rem; }
.development-alert p { margin: .25rem 0 0; color: var(--muted); font-size: .62rem; line-height: 1.6; }
.development-alert.success { border-color: #b8dfd2; background: #effaf6; }
.development-alert.success > span { color: var(--green-700); }
.development-alert.warning { border-color: #efd9b3; background: #fff9ee; }
.development-alert.warning > span { color: #ae7000; }
.development-actions {
  display: flex;
  gap: .6rem;
  padding: 0 1.25rem 1.25rem;
}
.development-actions button { min-width: 120px; }
.development-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  padding: 1.25rem;
}
.development-form.one-column { grid-template-columns: 1fr; }
.development-form label { display: grid; gap: .35rem; }
.development-form label > span { color: #465852; font-size: .65rem; font-weight: 700; }
.development-form input,
.development-form select {
  width: 100%;
  height: 42px;
  padding: 0 .75rem;
  border: 1px solid #d6e3df;
  border-radius: 5px;
  color: #34453f;
  background: #f8fbfa;
  font: inherit;
  font-size: .68rem;
}
.development-form label small { color: var(--muted); font-size: .55rem; }
.development-form .has-error input { border-color: #d7665d; background: #fff8f7; }
.development-form .has-error small { color: #b83b31; }
.wallet-charge-demo {
  width: min(860px, 100%);
  margin: 0 auto;
}
.wallet-charge-balance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: center;
  gap: .75rem;
  margin-bottom: .8rem;
  padding: .75rem .9rem;
  border: 1px solid #d8e5e1;
  border-radius: 6px;
  background: #f8fbfa;
}
.wallet-charge-balance div { display: grid; gap: .2rem; }
.wallet-charge-balance span { color: var(--muted); font-size: .54rem; }
.wallet-charge-balance strong { color: #253832; font-size: .72rem; }
.wallet-charge-balance b {
  padding: .45rem .65rem;
  border-radius: 4px;
  color: var(--green-800);
  background: #e7f5f0;
  font-size: .58rem;
}
.wallet-charge-dialog {
  overflow: clip;
  border: 1px solid #d1dfda;
  border-radius: 7px;
  background: #fdfefe;
  box-shadow: 0 10px 26px rgba(23,55,46,.08);
}
.wallet-charge-dialog > header {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1rem;
  border-bottom: 1px solid #dce7e3;
}
.wallet-charge-dialog h4 { margin: 0; font-size: .82rem; }
.wallet-charge-dialog header p { margin: .25rem 0 0; color: var(--muted); font-size: .56rem; }
.wallet-charge-dialog header > span { color: var(--green-700); font-size: 1.2rem; }
.wallet-charge-packages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .55rem;
  padding: 1rem;
}
.wallet-charge-packages label {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .35rem;
  padding: .45rem;
  border: 1px solid #e0ebe7;
  border-radius: 5px;
  background: #eef8f5;
  cursor: pointer;
}
.wallet-charge-packages label:has(input:checked) {
  border-color: var(--green-600);
  color: var(--green-800);
  background: #e3f5ef;
  box-shadow: inset 0 0 0 1px var(--green-600);
}
.wallet-charge-packages input {
  width: 14px;
  height: 14px;
  accent-color: var(--green-600);
}
.wallet-charge-packages b { font-size: .63rem; white-space: nowrap; }
.wallet-charge-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: .35rem 1rem 1.1rem;
}
.wallet-charge-fields > label { min-width: 0; display: grid; align-content: start; gap: .42rem; }
.wallet-charge-fields label > span { color: #344a43; font-size: .64rem; font-weight: 800; }
.wallet-charge-fields i { color: #c7463c; font-style: normal; }
.wallet-charge-fields select {
  width: 100%;
  height: 44px;
  padding: 0 .65rem;
  border: 1px solid #cfe0da;
  border-radius: 4px;
  color: #34453f;
  background: #f2f9f7;
  font: inherit;
  font-size: .63rem;
}
.wallet-charge-fields label small { color: var(--muted); font-size: .5rem; line-height: 1.5; }
.wallet-contract-summary,
.wallet-charge-current-note {
  min-height: 72px;
  align-self: end;
  padding: .65rem .75rem;
  border: 1px solid #cce4dc;
  border-radius: 5px;
  background: #eff9f5;
}
.wallet-contract-summary { display: grid; grid-template-columns: 1fr auto; align-content: center; gap: .25rem .7rem; }
.wallet-charge-fields > .wallet-contract-summary { grid-column: 1 / -1; }
.wallet-contract-summary span { color: var(--muted); font-size: .5rem; }
.wallet-contract-summary b { color: var(--green-800); font-size: .7rem; direction: ltr; }
.wallet-contract-summary small { grid-column: 1 / -1; color: #536a62; font-size: .5rem; }
.wallet-charge-current-note {
  display: flex;
  align-items: center;
  gap: .55rem;
  border-color: #dde6e3;
  color: #687a74;
  background: #f7f9f8;
}
.wallet-charge-current-note span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #8b9a95;
  border-radius: 50%;
  font-size: .55rem;
  font-weight: 700;
}
.wallet-charge-current-note p { margin: 0; font-size: .54rem; line-height: 1.55; }
.wallet-charge-dialog > footer {
  display: flex;
  gap: .6rem;
  padding: .9rem 1rem;
  border-top: 1px solid #dce7e3;
}
.wallet-charge-dialog > footer button { min-width: 110px; }
.wallet-contract-field[hidden],
.wallet-contract-summary[hidden] { display: none; }
.ownership-documents-screen { min-height: 620px; background: #eef8f6; }
.ownership-documents-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .3rem 1rem .8rem;
}
.ownership-documents-toolbar strong { color: #37453f; font-size: .72rem; }
.ownership-documents-list {
  display: grid;
  gap: .55rem;
  padding: 0 1rem;
}
.ownership-document-row {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr .95fr .9fr .8fr 28px;
  align-items: center;
  gap: .55rem;
  min-height: 74px;
  padding: .7rem .8rem;
  border: 1px solid #e0ebe8;
  border-radius: 4px;
  background: #fdfefe;
  box-shadow: 0 4px 10px rgba(23,55,46,.045);
}
.ownership-documents-screen.is-proposed .ownership-document-row {
  grid-template-columns: .85fr 1fr .8fr .75fr 1.08fr .72fr 28px;
}
.ownership-document-row > div { min-width: 0; }
.ownership-document-row small,
.ownership-document-row b,
.ownership-document-row em { display: block; }
.ownership-document-row small { margin-bottom: .2rem; color: #8a9692; font-size: .48rem; }
.ownership-document-row b {
  overflow-wrap: anywhere;
  color: #34443f;
  font-size: .57rem;
  line-height: 1.45;
}
.ownership-document-row em { margin-top: .2rem; color: #71817c; font-size: .46rem; font-style: normal; line-height: 1.45; }
.ownership-entry-data {
  width: 100%;
  max-width: 116px;
  justify-self: start;
  padding: .3rem .38rem;
  border: 1px solid #bfe1d5;
  border-radius: 3px;
  background: #f4faf8;
}
.ownership-entry-data small {
  margin-bottom: .1rem;
  color: var(--green-700);
  font-size: .39rem;
  font-weight: 700;
}
.ownership-entry-data b {
  color: var(--green-900);
  font-size: .45rem;
  line-height: 1.35;
}
.ownership-entry-data em {
  margin-top: .12rem;
  font-size: .37rem;
  line-height: 1.3;
}
.ownership-document-row .ejar-state { justify-self: start; white-space: nowrap; }
.ownership-document-row .ejar-more {
  width: 28px;
  height: 28px;
  min-height: 28px;
}
.ownership-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .9rem;
}
.ownership-pagination button {
  min-width: 28px;
  height: 28px;
  border: 1px solid #d8e4e0;
  border-radius: 3px;
  color: #5f706a;
  background: #fdfefe;
  font-size: .56rem;
}
.ownership-pagination button.is-active { border-color: var(--green-600); color: #f7fbfa; background: var(--green-600); }
.ownership-units-screen {
  min-height: 700px;
  padding-bottom: 1rem;
  background: #eef8f6;
}
.ownership-units-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .2rem 1rem .8rem;
}
.ownership-units-toolbar b,
.ownership-units-toolbar small { display: block; }
.ownership-units-toolbar b { color: #34443f; font-size: .7rem; }
.ownership-units-toolbar small { margin-top: .2rem; color: var(--muted); font-size: .48rem; }
.ownership-units-list {
  display: grid;
  gap: .75rem;
  padding: 0 1rem;
}
.ownership-unit-card {
  padding: .85rem 1rem;
  border: 1px solid #e0ebe8;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(23,55,46,.045);
}
.ownership-unit-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .8rem;
}
.ownership-unit-title {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
}
.ownership-unit-title h4 { margin: 0; color: #263730; font-size: .72rem; }
.ownership-unit-title small { display: block; margin-top: .15rem; color: var(--muted); font-size: .48rem; }
.ownership-unit-actions { display: flex; gap: .35rem; }
.ownership-unit-actions button { min-height: 28px; padding: .35rem .6rem; font-size: .5rem; }
.ownership-unit-actions .is-danger { border-color: #efc4bd; color: #c7483c; }
.ownership-unit-data {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .55rem;
  padding: .7rem 0;
  border-top: 1px solid #edf2f0;
}
.ownership-unit-data > div { min-width: 0; }
.ownership-unit-data small,
.ownership-unit-data b { display: block; }
.ownership-unit-data small { margin-bottom: .22rem; color: #8a9692; font-size: .46rem; }
.ownership-unit-data b { overflow-wrap: anywhere; color: #34443f; font-size: .56rem; }
.ownership-unit-features {
  display: flex;
  gap: .4rem;
  justify-content: flex-start;
  padding-top: .25rem;
}
.ownership-unit-features span {
  padding: .3rem .45rem;
  border-radius: 3px;
  color: #465b54;
  background: #f7faf9;
  font-size: .48rem;
}
.unit-rental-insight {
  margin-top: .8rem;
  padding: .75rem;
  border: 1px solid #b9dfd2;
  border-radius: 5px;
  background: #eff9f5;
}
.unit-rental-insight__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.unit-rental-insight__heading span,
.unit-rental-insight__heading b { display: block; }
.unit-rental-insight__heading span { color: var(--green-700); font-size: .48rem; font-weight: 700; }
.unit-rental-insight__heading b { margin-top: .15rem; color: #27483d; font-size: .62rem; }
.unit-rental-insight__heading em {
  padding: .3rem .45rem;
  border-radius: 99px;
  color: var(--green-700);
  background: #d9f1e8;
  font-size: .46rem;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}
.unit-rental-summary {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: .55rem;
  margin-top: .65rem;
}
.unit-rental-summary > div {
  padding: .55rem .65rem;
  border: 1px solid #d4e9e2;
  border-radius: 4px;
  background: #fff;
}
.unit-rental-summary small,
.unit-rental-summary strong,
.unit-rental-summary span { display: block; }
.unit-rental-summary small { color: #7c8d87; font-size: .44rem; }
.unit-rental-summary strong { margin-top: .18rem; color: #183f33; font-size: .64rem; }
.unit-rental-summary span { margin-top: .1rem; color: #7b8d87; font-size: .42rem; }
.unit-contract-history {
  margin-top: .55rem;
  border-top: 1px solid #d2e7df;
}
.unit-contract-history summary {
  padding-top: .55rem;
  color: var(--green-700);
  cursor: pointer;
  font-size: .5rem;
  font-weight: 700;
}
.unit-contract-history__rows {
  display: grid;
  gap: .35rem;
  margin-top: .45rem;
}
.unit-contract-history__rows > div {
  display: grid;
  grid-template-columns: .9fr 1.5fr 1fr;
  gap: .5rem;
  padding: .45rem .55rem;
  border: 1px solid #dbeae5;
  border-radius: 3px;
  background: #fff;
}
.unit-contract-history__rows small,
.unit-contract-history__rows b { display: block; }
.unit-contract-history__rows small { color: #83928d; font-size: .4rem; }
.unit-contract-history__rows b { margin-top: .12rem; color: #3d514a; font-size: .48rem; }
.ejar-settlement-screen {
  position: relative;
  min-height: 670px;
  padding-bottom: 1rem;
  background: #eef8f6;
}
.settlement-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
  padding: 0 1rem 1rem;
}
.settlement-summary article {
  padding: .75rem;
  border: 1px solid #dce8e4;
  border-radius: 4px;
  background: #fff;
}
.settlement-summary span,
.settlement-summary strong,
.settlement-summary small { display: block; }
.settlement-summary span { color: #788984; font-size: .48rem; }
.settlement-summary strong { margin-top: .25rem; color: #293c35; font-size: .72rem; }
.settlement-summary small { margin-top: .35rem; color: #899793; font-size: .44rem; }
.settlement-list-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: .15rem 1rem .7rem;
}
.settlement-list-heading h4 { margin: 0; color: #293b35; font-size: .78rem; }
.settlement-list-heading p { margin: .2rem 0 0; color: var(--muted); font-size: .5rem; }
.settlement-contracts { padding: 0 1rem; }
.settlement-contract {
  overflow: hidden;
  border: 1px solid #dce8e4;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(23,55,46,.05);
}
.settlement-contract > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem .85rem;
  border-bottom: 1px solid #e4ece9;
}
.settlement-contract > header h4 { margin: .22rem 0 0; color: #2d3e38; font-size: .7rem; }
.settlement-contract > header small { display: block; margin-top: .18rem; color: var(--muted); font-size: .46rem; }
.settlement-contract__state {
  display: inline-flex;
  padding: .22rem .38rem;
  border-radius: 99px;
  color: #7e514a;
  background: #fbece9;
  font-size: .42rem;
  font-weight: 700;
}
.settlement-contract__data {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
  padding: .75rem .85rem;
}
.settlement-contract__data small,
.settlement-contract__data b,
.settlement-contract__data strong { display: block; }
.settlement-contract__data small { margin-bottom: .18rem; color: #87958f; font-size: .45rem; }
.settlement-contract__data b { color: #34443f; font-size: .56rem; }
.settlement-contract__data strong { color: #b74d41; font-size: .64rem; }
.settlement-invoices {
  display: grid;
  gap: .35rem;
  margin: 0 .85rem;
  padding: .55rem .65rem;
  border-radius: 4px;
  background: #f7faf9;
}
.settlement-invoices > div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: .7rem;
  align-items: center;
  font-size: .48rem;
}
.settlement-invoices b { color: #3a4a45; }
.settlement-invoices em { color: #b44d42; font-style: normal; }
.settlement-invoices em.is-settled { color: var(--green-700); }
.settlement-contract > footer {
  display: flex;
  justify-content: flex-start;
  gap: .5rem;
  padding: .75rem .85rem;
}
.settlement-contract > footer button { min-height: 32px; font-size: .53rem; }
.settlement-contract > footer button:disabled { opacity: .55; cursor: not-allowed; }
.settlement-confirm-overlay {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(20,36,31,.36);
}
.settlement-confirm {
  width: min(360px, 92%);
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20,36,31,.18);
}
.settlement-confirm header { padding: 1rem; border-bottom: 1px solid #e3ebe8; }
.settlement-confirm h4 { margin: 0; color: #293b35; font-size: .76rem; }
.settlement-confirm p { margin: .4rem 0 0; color: #667872; font-size: .53rem; line-height: 1.7; }
.settlement-confirm__amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  margin: .8rem 1rem 0;
  padding: .7rem;
  border-radius: 4px;
  color: #385048;
  background: #eef8f5;
  font-size: .55rem;
}
.settlement-confirm__amount strong { color: var(--green-800); font-size: .72rem; }
.settlement-confirm footer { display: flex; gap: .5rem; padding: 1rem; }
.settlement-confirm footer button { min-width: 105px; }
.settlement-complete {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin: 0 .85rem .75rem;
  padding: .65rem;
  border: 1px solid #b9dfd2;
  border-radius: 4px;
  color: var(--green-800);
  background: #eff9f5;
  font-size: .53rem;
}
.settlement-complete span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-600);
}
.message-preview {
  margin: 1rem 1.25rem;
  padding: 1rem;
  border: 1px dashed #cbd9d5;
  border-radius: 7px;
  background: #f8fbfa;
}
.message-preview > span { color: var(--muted); font-size: .58rem; }
.message-preview p { margin: .65rem 0; font-size: .72rem; line-height: 1.7; }
.message-preview b { color: #8a9893; font-size: .56rem; }
.message-preview.is-sent { border-style: solid; border-color: #b8dfd2; background: #effaf6; }
.message-preview.is-sent b { color: var(--green-700); }
.demo-action-link { display: inline-block; color: var(--green-700); font-size: .68rem; font-weight: 700; }

.sms-demo {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  grid-template-areas:
    "phone summary"
    "phone caption";
  align-items: center;
  gap: 1rem 2rem;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 1.2rem 1.5rem 1.5rem;
}
.sms-contract-summary {
  grid-area: summary;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  border-block: 1px solid var(--line);
}
.sms-contract-summary > div {
  display: grid;
  gap: .3rem;
  padding: .9rem .7rem;
}
.sms-contract-summary > div + div { border-right: 1px solid var(--line); }
.sms-contract-summary span { color: var(--muted); font-size: .58rem; }
.sms-contract-summary strong { color: #263a33; font-size: .7rem; }
.sms-phone {
  grid-area: phone;
  width: min(310px, 100%);
  min-height: 505px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  justify-self: center;
  overflow: hidden;
  border: 7px solid #181a1d;
  border-radius: 32px;
  color: #f2f4f3;
  background: #090a0c;
  box-shadow: 0 18px 40px rgba(11, 30, 24, .16);
}
.sms-phone__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem .4rem;
  direction: ltr;
  font-size: .62rem;
}
.sms-phone__status span { color: #d7dcda; letter-spacing: .04em; }
.sms-phone__header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  justify-items: center;
  align-items: center;
  gap: .55rem;
  padding: .35rem .8rem .8rem;
  border-bottom: 1px solid #22262a;
  text-align: center;
}
.sms-phone__header > div:last-child { grid-column: 2; display: grid; gap: .1rem; }
.sms-phone__header b { font-size: .72rem; }
.sms-phone__header small { color: #929a97; font-size: .5rem; }
.sms-phone__back {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  color: #dfe4e2;
  font-size: 1.3rem;
  line-height: 1;
}
.sms-phone__avatar {
  grid-column: 2;
  grid-row: 1;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #eaf7f2;
  background: #126b54;
  font-size: 1rem;
  font-weight: 800;
}
.sms-phone__conversation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem .8rem;
}
.sms-phone__conversation time {
  align-self: center;
  margin-bottom: 1rem;
  color: #7e8783;
  font-size: .52rem;
}
.sms-bubble {
  width: 92%;
  padding: .85rem .9rem;
  border-radius: 18px 18px 5px 18px;
  color: #f0f3f2;
  background: #2a2c31;
  font-size: .68rem;
  line-height: 1.75;
  text-align: right;
}
.sms-bubble p { margin: 0 0 .35rem; }
.sms-bubble p:last-of-type { margin-bottom: .55rem; }
.sms-bubble a {
  color: #5bb5ff;
  font-size: .62rem;
  overflow-wrap: anywhere;
  text-decoration: underline;
}
.sms-delivery {
  margin: .35rem .4rem 0 0;
  color: #7e8783;
  font-size: .48rem;
}
.sms-empty {
  align-self: center;
  padding: 1.2rem .8rem;
  color: #8f9894;
  text-align: center;
}
.sms-empty span {
  display: inline-block;
  margin-bottom: .55rem;
  color: #c1c7c4;
  font-size: .75rem;
  font-weight: 700;
}
.sms-empty p { margin: 0; font-size: .58rem; line-height: 1.7; }
.sms-phone__composer {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem .75rem .85rem;
  direction: ltr;
}
.sms-phone__composer > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid #4b5054;
  border-radius: 50%;
  color: #bcc2bf;
  font-size: .9rem;
}
.sms-phone__composer > div {
  flex: 1;
  padding: .5rem .7rem;
  border: 1px solid #3c4145;
  border-radius: 20px;
  color: #757d79;
  font-size: .52rem;
}
.sms-demo__caption {
  grid-area: caption;
  align-self: start;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: .75rem;
  padding: 1rem 0;
}
.sms-demo__caption > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #aab9b4;
  border-radius: 50%;
  color: #71827c;
  font-size: .68rem;
  font-weight: 800;
}
.sms-demo__caption b { color: #344740; font-size: .76rem; }
.sms-demo__caption p {
  max-width: 48ch;
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .64rem;
  line-height: 1.7;
}
.sms-demo__caption.is-proposed > span { border-color: #78bda8; color: var(--green-700); background: #edf8f4; }
.sms-demo__caption.is-proposed b { color: var(--green-800); }

.development-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1.25rem;
}
.development-timeline > div { position: relative; display: grid; justify-items: center; gap: .35rem; color: #87968f; text-align: center; }
.development-timeline > div::after { content: ""; position: absolute; top: 15px; right: 60%; width: 80%; height: 1px; background: #d7e3df; }
.development-timeline > div:last-child::after { display: none; }
.development-timeline i { z-index: 1; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; background: #fdfefe; font-size: .58rem; font-style: normal; }
.development-timeline b { font-size: .62rem; }
.development-timeline span { font-size: .54rem; }
.development-timeline .done, .development-timeline .active { color: var(--green-700); }
.linked-contracts,
.contract-history,
.request-table { padding: 1rem 1.25rem; }
.linked-contracts h5,
.contract-history h5 { margin: 0 0 .75rem; font-size: .72rem; }
.linked-contracts p,
.contract-history p,
.request-table p {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: .8rem;
  align-items: center;
  margin: 0;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .62rem;
}
.linked-contracts p:last-child,
.contract-history p:last-child,
.request-table p:last-child { border-bottom: 0; }
.linked-contracts span,
.contract-history span,
.request-table span { color: var(--muted); }
.linked-contracts em,
.contract-history em,
.request-table em { color: var(--green-700); font-style: normal; }
.request-table p { grid-template-columns: 72px 1fr 58px 1fr; }
.request-table em.pending { color: #ad7104; }
.payment-methods { display: grid; gap: .55rem; padding: 1rem 1.25rem; }
.payment-methods label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .65rem;
  align-items: center;
  min-height: 48px;
  padding: .7rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: .68rem;
}
.payment-methods label.featured { border-color: #79c5ac; background: #effaf6; }
.payment-methods small { color: var(--muted); font-size: .55rem; }

.ejar-unpaid-screen { background: #f1faf9; }
.ejar-unpaid-tools {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 .8rem;
}
.ejar-unpaid-list {
  overflow-x: auto;
  padding-bottom: .35rem;
}
.ejar-unpaid-row {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(72px, 1fr)) 88px 30px;
  align-items: center;
  gap: .65rem;
  margin-bottom: .65rem;
  padding: .75rem .8rem;
  border: 1px solid #e0ebe7;
  border-radius: 4px;
  background: #fdfefe;
  box-shadow: 0 5px 13px rgba(26, 64, 53, .05);
}
.ejar-unpaid-row > div { display: grid; gap: .28rem; }
.ejar-unpaid-row small { color: #7c8985; font-size: .48rem; }
.ejar-unpaid-row b { color: #364640; font-size: .56rem; }
.ejar-unpaid-row .ejar-link { color: #009a70; }
.ejar-unpaid-row .ejar-state { justify-self: start; }
.ejar-pay-now {
  min-height: 34px;
  color: #008b66;
  background: #fdfefe;
  font-size: .57rem;
  font-weight: 700;
}
.ejar-unpaid-pagination {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .8rem;
  color: #64726d;
  font-size: .55rem;
}
.ejar-unpaid-pagination button { min-width: 56px; }
.ejar-checkout-screen { background: #f1faf9; }
.ejar-checkout {
  width: min(720px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #dce8e4;
  border-radius: 6px;
  background: #fdfefe;
  box-shadow: 0 8px 24px rgba(24, 61, 50, .07);
}
.ejar-checkout > header {
  display: grid;
  grid-template-columns: 1.2fr 1fr .7fr;
  border-bottom: 1px solid #e2ebe8;
  background: #f7faf9;
}
.ejar-checkout > header > div {
  display: grid;
  gap: .25rem;
  padding: .85rem 1rem;
}
.ejar-checkout > header > div + div { border-right: 1px solid #e2ebe8; }
.ejar-checkout > header span { color: #788681; font-size: .52rem; }
.ejar-checkout > header strong { color: #30413b; font-size: .7rem; }
.ejar-payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  padding: 1rem;
}
.ejar-payment-method {
  position: relative;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 44px 1fr;
  align-items: center;
  gap: .65rem;
  padding: .75rem;
  border: 1px solid #dbe6e2;
  border-radius: 5px;
  background: #fdfefe;
  cursor: pointer;
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}
.ejar-payment-method:hover { border-color: #9fcbbd; background: #f8fcfa; }
.ejar-payment-method:focus-within {
  outline: 3px solid rgba(0, 164, 119, .16);
  outline-offset: 1px;
}
.ejar-payment-method input { accent-color: #008f69; }
.ejar-payment-method__mark {
  width: 44px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #dce7e3;
  border-radius: 4px;
  color: #0a7358;
  background: #f4f9f7;
  font-size: .62rem;
  font-weight: 800;
  direction: ltr;
}
.ejar-payment-method__mark svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.ejar-payment-method__copy { display: grid; gap: .22rem; }
.ejar-payment-method__copy b { color: #34443e; font-size: .68rem; }
.ejar-payment-method__copy small { color: #7b8984; font-size: .52rem; line-height: 1.5; }
.ejar-payment-method em {
  position: absolute;
  top: .45rem;
  left: .45rem;
  padding: .15rem .35rem;
  border-radius: 3px;
  color: #087a59;
  background: #dff3ec;
  font-size: .45rem;
  font-style: normal;
  font-weight: 700;
}
.ejar-payment-method.is-wallet { border-color: #69bda2; background: #effaf6; }
.ejar-wallet-balance {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: .7rem;
  margin: 0 1rem 1rem;
  padding: .75rem;
  border: 1px solid #b9ddd2;
  border-radius: 5px;
  color: #276d59;
  background: #f0faf6;
}
.ejar-wallet-balance > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d9f1e8;
}
.ejar-payment-success {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: .7rem;
  margin: -.25rem 1rem 1rem;
  padding: .7rem .8rem;
  border: 1px solid #83cbb4;
  border-radius: 5px;
  color: #17664f;
  background: #e9f8f2;
}
.ejar-payment-success > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #009b71;
  font-weight: 800;
}
.ejar-payment-success b,
.ejar-payment-success small { display: block; }
.ejar-payment-success b { font-size: .62rem; }
.ejar-payment-success small { margin-top: .18rem; color: #577a6e; font-size: .51rem; }
.ejar-wallet-balance svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.ejar-wallet-balance div { display: grid; gap: .2rem; }
.ejar-wallet-balance b { font-size: .62rem; }
.ejar-wallet-balance small { color: #5f7a71; font-size: .5rem; line-height: 1.45; }
.ejar-wallet-balance strong { font-size: .68rem; white-space: nowrap; }
.ejar-checkout > footer {
  display: flex;
  gap: .65rem;
  padding: .9rem 1rem;
  border-top: 1px solid #e2ebe8;
}
.ejar-checkout > footer button { min-width: 120px; }

.declaration-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: start;
  margin: 1rem 1.25rem;
  padding: 1rem;
  border: 1px solid #b8dfd2;
  border-radius: 6px;
  background: #effaf6;
}
.declaration-check span,
.declaration-check b,
.declaration-check small { display: block; }
.declaration-check b { margin-bottom: .3rem; font-size: .7rem; }
.declaration-check small { color: var(--muted); font-size: .6rem; line-height: 1.6; }
.empty-detail { margin: 1rem 1.25rem; padding: 2rem 1rem; border: 1px dashed #cbd9d5; border-radius: 6px; color: var(--muted); text-align: center; }
.empty-detail b { color: #44564f; font-size: .72rem; }
.empty-detail p { margin: .5rem auto 0; max-width: 420px; font-size: .62rem; line-height: 1.6; }

.ejar-app-header nav [data-demo-nav] { cursor: pointer; }
.execution-request-list {
  display: grid;
  gap: .55rem;
  padding: 1rem 1.25rem 0;
}
.execution-request-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid #d7e5e1;
  border-radius: 6px;
  background: #fff;
  color: #243832;
  text-align: right;
  cursor: pointer;
  font: inherit;
}
.execution-request-card span { font-size: .78rem; font-weight: 700; }
.execution-request-card strong {
  color: #087a59;
  font-size: .9rem;
  font-variant-numeric: tabular-nums;
}
.execution-request-card.is-empty strong { color: #9a6b12; }
.execution-request-card.is-execution,
.execution-request-card.is-key {
  border-color: #9ed4c3;
  background: #f3fbf8;
  box-shadow: 0 0 0 1px rgba(8, 122, 89, .06);
}
.execution-request-card.is-open {
  border-color: #087a59;
  outline: 2px solid rgba(8, 122, 89, .18);
}
.execution-invoice-list {
  margin: .85rem 1.25rem 0;
  padding: .85rem 1rem;
  border: 1px solid #cfe6dd;
  border-radius: 6px;
  background: #fbfffd;
}
.execution-invoice-list[hidden] { display: none !important; }
.execution-invoice-list h5 {
  margin: 0 0 .65rem;
  color: #087a59;
  font-size: .78rem;
}
.execution-invoice-list p {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: .55rem;
  align-items: center;
  margin: 0;
  padding: .55rem 0;
  border-bottom: 1px solid #e5efeb;
  font-size: .66rem;
}
.execution-invoice-list p:last-child { border-bottom: 0; }
.execution-invoice-list span { color: var(--muted); }
.execution-invoice-list em { font-style: normal; font-weight: 700; }
.execution-invoice-list em.success { color: #087a59; }
.execution-invoice-list em.pending { color: #ad7104; }
.execution-requests-panel .development-alert { margin: 1rem 1.25rem 1.15rem; }


.najiz-page {
  display: grid;
  gap: .55rem;
}
.najiz-page-header h3 {
  margin: .15rem 0 .45rem;
  color: #1f2b27;
  font-size: .95rem;
}
.najiz-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .28rem;
  color: #8a9490;
  font-size: .52rem;
}
.najiz-breadcrumb a {
  color: #1f2b27;
  text-decoration: none;
  font-weight: 700;
}
.najiz-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-bottom: .15rem;
}
.najiz-filter-bar h4 {
  margin: 0;
  color: #31433d;
  font-size: .68rem;
}
.najiz-filter-btn {
  min-height: 28px;
  padding: 0 .7rem;
  border: 1px solid #00a477;
  border-radius: 3px;
  color: #00a477;
  background: #fff;
  font: inherit;
  font-size: .52rem;
  font-weight: 700;
  cursor: pointer;
}
.najiz-invoices-layout {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: .65rem;
  align-items: start;
}
.najiz-contracts-aside,
.najiz-invoices-main {
  border: 1px solid #dce6e2;
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
}
.najiz-contracts-aside header,
.najiz-main-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
  padding: .65rem .75rem .55rem;
  border-bottom: 1px solid #edf2f0;
}
.najiz-contracts-aside h4,
.najiz-main-header h4 {
  margin: 0;
  color: #24332e;
  font-size: .68rem;
}
.najiz-contracts-aside p,
.najiz-main-header p {
  margin: .18rem 0 0;
  color: #8a9490;
  font-size: .48rem;
  line-height: 1.45;
}
.najiz-contracts-aside small,
.najiz-main-header small {
  color: #8a9490;
  white-space: nowrap;
  font-size: .48rem;
}
.najiz-contracts-list { display: grid; }
.najiz-contract-item {
  display: grid;
  gap: .18rem;
  width: 100%;
  padding: .7rem .75rem;
  border: 0;
  border-top: 1px solid #edf2f0;
  background: #fff;
  color: inherit;
  text-align: right;
  cursor: pointer;
  font: inherit;
}
.najiz-contract-item span {
  color: #8a9490;
  font-size: .46rem;
}
.najiz-contract-item b {
  color: #00a477;
  font-size: .62rem;
  line-height: 1.3;
}
.najiz-contract-item.is-active {
  background: #f3faf7;
  box-shadow: inset -3px 0 0 #00a477;
}
.najiz-accordion { min-width: 0; }
.najiz-contract-row {
  display: grid;
  grid-template-columns: 28px 1.1fr repeat(4, minmax(0, 1fr));
  gap: .45rem;
  align-items: center;
  padding: .75rem .8rem;
  border-bottom: 1px solid #edf2f0;
}
.najiz-contract-row__icon {
  display: grid;
  place-items: center;
}
.najiz-contract-row span {
  display: block;
  color: #8a9490;
  font-size: .46rem;
  white-space: nowrap;
}
.najiz-contract-row b,
.najiz-contract-row strong {
  display: block;
  margin-top: .18rem;
  color: #24332e;
  font-size: .58rem;
}
.najiz-link { color: #00a477 !important; }
.najiz-payment-method { min-width: 0; }
.najiz-payment-badge {
  display: inline-flex;
  margin-top: .18rem;
  padding: .12rem .4rem;
  border-radius: 999px;
  font-size: .48rem;
  font-weight: 800;
}
.najiz-payment-badge.is-monthly {
  color: #087a59;
  background: #e7f6f0;
}
.najiz-payment-badge.is-semiannual {
  color: #7a5b08;
  background: #fff4d9;
}
.najiz-invoice-table-wrap { overflow-x: auto; }
.najiz-invoice-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.najiz-invoice-table td {
  padding: .7rem .75rem;
  border-bottom: 1px solid #edf2f0;
  color: #31433d;
  vertical-align: middle;
  font-size: .54rem;
  white-space: nowrap;
  text-align: right;
}
.najiz-invoice-table thead td {
  color: #8a9490;
  background: #f7f9f8;
  font-size: .5rem;
  font-weight: 700;
}
.najiz-invoice-table tbody tr:last-child td { border-bottom: 0; }
.najiz-date {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  direction: ltr;
}
.najiz-date i {
  width: 11px;
  height: 11px;
  border: 1px solid #9aa7a2;
  border-radius: 2px;
  background:
    linear-gradient(#9aa7a2, #9aa7a2) center 3px / 7px 1px no-repeat,
    linear-gradient(#9aa7a2, #9aa7a2) 3px 1px / 1px 3px no-repeat,
    linear-gradient(#9aa7a2, #9aa7a2) 7px 1px / 1px 3px no-repeat;
}
.najiz-invoice-table td.is-paid { color: #087a59; font-weight: 700; }
.najiz-invoice-table td.is-unpaid { color: #c2473d; font-weight: 700; }
.najiz-grace-col { background: #f3fbf8; }
.najiz-invoice-table thead .najiz-grace-col {
  color: #087a59;
  background: #eaf7f2;
}
.najiz-grace-date {
  color: #087a59;
  font-weight: 800;
}
.najiz-accordion-footer {
  display: grid;
  place-items: center;
  padding: .65rem;
  border-top: 1px solid #edf2f0;
}
.najiz-accordion-footer button {
  border: 0;
  color: #00a477;
  background: transparent;
  font: inherit;
  font-size: .54rem;
  font-weight: 700;
  cursor: pointer;
}
.najiz-grace-hint,
.najiz-missing-hint {
  margin: 0;
  padding: .55rem .75rem .7rem;
  font-size: .52rem;
  line-height: 1.5;
}
.najiz-grace-hint { color: #087a59; font-weight: 700; }
.najiz-missing-hint { color: #8a9490; }
.comparison-panel__screen .ejar-najiz-invoices-screen { min-height: 560px; }
.comparison-panel__screen .ejar-najiz-invoices-screen .ejar-app-header { font-size: .55rem; }
.comparison-panel__screen .najiz-page-header h3 { font-size: .82rem; }
.comparison-panel__screen .najiz-contract-row {
  grid-template-columns: 22px 1fr 1fr 1fr;
}
.comparison-panel__screen .najiz-contract-row > :nth-child(5),
.comparison-panel__screen .najiz-contract-row > :nth-child(6) {
  display: none;
}
@media (max-width: 900px) {
  .najiz-invoices-layout { grid-template-columns: 1fr; }
  .najiz-contract-row { grid-template-columns: 28px 1fr 1fr; }
}

.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; }

.ejar-area-screen {
  min-height: 610px;
}

.ejar-area-warning {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .7rem;
  padding: .65rem .8rem;
  border: 1px solid #efb24f;
  border-radius: 5px;
  color: #664714;
  background: #fff6df;
  font-size: .62rem;
}

.ejar-area-warning span {
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  place-items: center;
  color: white;
  background: #e79a19;
  font-weight: 800;
}

.ejar-area-form {
  border: 1px solid #d7e4e1;
  border-radius: 5px;
  background: white;
}

.ejar-area-form > header {
  padding: .75rem .9rem;
  border-bottom: 1px solid #dce7e4;
}

.ejar-area-form > header h4 {
  margin: 0;
  color: #2c3433;
  font-size: .86rem;
}

.ejar-area-form > header p {
  margin: .18rem 0 0;
  color: #909a98;
  font-size: .54rem;
}

.ejar-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  padding: .85rem;
}

.ejar-area-grid label {
  min-width: 0;
}

.ejar-area-grid label > span {
  display: block;
  margin-bottom: .3rem;
  color: #4f5756;
  font-size: .58rem;
  font-weight: 700;
}

.ejar-area-grid label > span i {
  color: #da4c42;
  font-style: normal;
}

.ejar-area-grid input,
.ejar-area-grid select,
.ejar-area-static {
  width: 100%;
  height: 34px;
  padding: 0 .65rem;
  border: 1px solid #cfe0dc;
  border-radius: 4px;
  color: #36403e;
  background: #eef8f6;
  font: inherit;
  font-size: .62rem;
}

.ejar-area-grid select {
  cursor: pointer;
}

.ejar-area-static {
  display: flex;
  align-items: center;
}

.ejar-area-grid input.is-invalid {
  border-color: #e9928a;
  background: #fffafa;
}

.ejar-area-grid input.is-valid {
  border-color: #36a982;
  background: #f5fcf9;
}

.ejar-area-guidance {
  margin-bottom: .38rem;
  padding: .55rem .65rem;
  border: 1px solid #abdccc;
  border-radius: 4px;
  color: #176e57;
  background: #f1fbf7;
}

.ejar-area-guidance b,
.ejar-area-guidance span,
.ejar-area-guidance small {
  display: block;
}

.ejar-area-guidance b {
  font-size: .58rem;
}

.ejar-area-guidance span {
  margin-top: .15rem;
  font-size: .58rem;
}

.ejar-area-guidance small {
  margin-top: .15rem;
  color: #6a807a;
  font-size: .49rem;
}

.ejar-area-feedback,
.ejar-area-generic-error {
  margin: .28rem 0 0;
  font-size: .5rem;
  line-height: 1.55;
}

.ejar-area-feedback.is-error,
.ejar-area-generic-error {
  color: #cf4b42;
}

.ejar-area-feedback.is-success {
  color: #168263;
}

.ejar-area-reference {
  margin: 0 .85rem .85rem;
  border: 1px solid #cfe2dd;
  border-radius: 4px;
  background: #fbfefd;
}

.ejar-area-reference summary {
  padding: .65rem .75rem;
  color: #08795e;
  font-size: .58rem;
  font-weight: 800;
  cursor: pointer;
}

.ejar-area-reference > div {
  padding: 0 .75rem .75rem;
}

.ejar-area-reference table {
  width: 100%;
  border-collapse: collapse;
  font-size: .53rem;
}

.ejar-area-reference th,
.ejar-area-reference td {
  padding: .38rem .45rem;
  border-bottom: 1px solid #e2ece9;
  text-align: right;
}

.ejar-area-reference th {
  color: #50615d;
  background: #eef7f4;
}

.ejar-area-reference td span {
  display: inline-block;
  margin-right: .3rem;
  padding: .08rem .28rem;
  border-radius: 3px;
  color: #08795e;
  background: #dcf5eb;
  font-size: .44rem;
}

.ejar-area-reference p {
  margin: .55rem 0 0;
  color: #71807d;
  font-size: .49rem;
}

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

@media (max-width: 1450px) {
  .workspace { grid-template-columns: 1fr; }
  .scenario-nav { position: static; }
  .scenario-nav__list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .research-note { display: none; }
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; }
  .hero--development { width: min(900px, calc(100% - 3rem)); min-height: auto; }
  .hero--development h1 { font-size: 3.8rem; }
  .hero__signal { display: none; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-overview {
    grid-template-columns: 1fr;
    gap: .55rem;
  }
  .comparison-overview__transition {
    min-height: 36px;
    grid-auto-flow: column;
    gap: .45rem;
  }
  .comparison-overview__transition span { transform: rotate(-90deg); }
  .evidence { grid-template-columns: 1fr; gap: 3rem; }
  .development-overview { justify-self: center; }
}

@media (max-width: 720px) {
  .demo-ribbon p { display: none; }
  .catalog-nav { margin-top: 1rem; }
  .catalog-nav a { padding: .6rem .7rem; }
  .catalog-nav strong { font-size: .72rem; }
  .hero { width: calc(100% - 2rem); min-height: auto; padding: 3rem 0; }
  .hero h1 { font-size: 2.7rem; }
  .development-overview {
    min-height: 145px;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    padding: 1rem 0;
  }
  .development-overview > strong { padding-inline: .75rem; font-size: 3.2rem; }
  .development-overview > span { padding: .45rem .75rem 0; font-size: .64rem; }
  .development-overview > div { min-height: 92px; }
  .development-overview b { font-size: 1.35rem; }
  .wallet-charge-balance,
  .wallet-charge-fields { grid-template-columns: 1fr; }
  .wallet-charge-packages { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wallet-charge-balance b { justify-self: stretch; text-align: center; }
  .ownership-document-row,
  .ownership-documents-screen.is-proposed .ownership-document-row { grid-template-columns: 1fr 1fr 28px; }
  .ownership-document-row > div:nth-of-type(3),
  .ownership-document-row > div:nth-of-type(4) { display: none; }
  .ownership-entry-data { grid-column: 1 / 3; }
  .ownership-unit-card > header { align-items: stretch; flex-direction: column; }
  .ownership-unit-data { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .unit-rental-summary { grid-template-columns: 1fr; }
  .unit-contract-history__rows > div { grid-template-columns: 1fr; }
  .settlement-summary { grid-template-columns: 1fr; }
  .settlement-contract__data { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workspace { width: calc(100% - 1rem); margin-top: 2.5rem; }
  .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; }
  .prototype-frame { margin: 0 .6rem; }
  .prototype-frame__bar { grid-template-columns: auto 1fr auto; }
  .scenario-content { min-height: 560px; padding: .6rem; }
  .comparison-overview__state { grid-template-columns: 1fr; gap: .65rem; }
  .comparison-note {
    padding-right: 0;
    border-right: 0;
  }
  .comparison-journey { overflow-x: auto; grid-template-columns: repeat(4, minmax(88px, 1fr)); }
  .customer-view__bar span { text-align: right; }
  .ejar-annotation { width: 100%; margin: .45rem 0; }
  .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-app-header { margin: -1rem -1rem 1rem; padding: .5rem .65rem; }
  .ejar-app-header nav { justify-content: flex-start; gap: .65rem; overflow-x: auto; }
  .ejar-app-header nav span { flex: 0 0 auto; }
  .ejar-full-header__main { grid-template-columns: auto minmax(0, 1fr) auto; }
  .ejar-full-account, .ejar-full-search, .ejar-full-language, .ejar-full-bell, .ejar-full-profile > div { display: none; }
  .ejar-full-profile { justify-self: end; }
  .ejar-full-nav { gap: .75rem; }
  .ejar-app-profile > div { display: none; }
  .ejar-app-header > img { width: 45px; }
  .ejar-role-dashboard, .ejar-role-options { grid-template-columns: 1fr; }
  .ejar-role-current > header { align-items: flex-start; flex-direction: column; }
  .ejar-role-account { width: 100%; }
  .ejar-role-option { min-height: 132px; }
  .ejar-role-nafath__card > header { grid-template-columns: 1fr; }
  .ejar-role-dashboard-nav > nav { display: none; }
  .ejar-role-dashboard { grid-template-columns: 1fr; }
  .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-draft-menu { top: 54px; }
  .ejar-draft-detail__actions { flex-wrap: wrap; direction: rtl; }
  .ejar-contract-progress { display: flex; overflow-x: auto; }
  .ejar-contract-progress span { min-width: 92px; }
  .ejar-draft-detail__grid { grid-template-columns: 1fr; }
  .ejar-legal-overlay { inset: 80px 0 0; padding: .6rem; }
  .ejar-legal-modal { width: 100%; }
  .ejar-legal-grid { grid-template-columns: 1fr; }
  .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-area-grid { 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; }
  .development-ui { padding: .4rem; }
  .development-record { grid-template-columns: 1fr 1fr; }
  .development-form { grid-template-columns: 1fr; }
  .sms-demo {
    grid-template-columns: 1fr;
    grid-template-areas: "summary" "phone" "caption";
    padding: .8rem;
  }
  .sms-contract-summary { grid-template-columns: 1fr; }
  .sms-contract-summary > div + div { border-right: 0; border-top: 1px solid var(--line); }
  .sms-phone { width: min(330px, 100%); }
  .ejar-checkout > header { grid-template-columns: 1fr; }
  .ejar-checkout > header > div + div { border-right: 0; border-top: 1px solid #e2ebe8; }
  .ejar-payment-methods { grid-template-columns: 1fr; }
  .ejar-wallet-balance { grid-template-columns: 34px 1fr; }
  .ejar-wallet-balance strong { grid-column: 2; }
  .ejar-checkout > footer { flex-wrap: wrap; }
  .development-timeline { grid-template-columns: 1fr; gap: .8rem; }
  .development-timeline > div { grid-template-columns: 30px 1fr; justify-items: start; text-align: right; }
  .development-timeline > div::after { display: none; }
  .development-timeline i { grid-row: 1 / 3; }
  .linked-contracts p, .contract-history p, .request-table p { grid-template-columns: 1fr; gap: .25rem; }
  .development-panel > header { align-items: flex-start; flex-direction: column; }
  .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; }
}

/* Guided presentation mode: quiet, precise and outside Ejar's customer UI language. */
.is-presentation-tour { padding-bottom: 108px; }
.demo-guide-target {
  cursor: pointer;
  outline: 2px solid rgba(0, 145, 105, .68) !important;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 168, 120, .08) !important;
  animation: guide-target-pulse 1.65s ease-in-out infinite;
}
.demo-guide-target--danger {
  outline-color: rgba(190, 55, 45, .88) !important;
  color: #b9362d !important;
  background: #fff3f1 !important;
  box-shadow: 0 0 0 5px rgba(190, 55, 45, .12), 0 8px 20px rgba(116, 34, 27, .12) !important;
  font-weight: 800 !important;
}
.ejar-draft-menu .demo-guide-target--danger::before {
  content: "الميزة الجديدة";
  display: inline-flex;
  margin-inline-end: .42rem;
  padding: .14rem .34rem;
  border-radius: 999px;
  color: #fff;
  background: #b9362d;
  font-size: .46rem;
  font-weight: 800;
  vertical-align: middle;
}

/* Legacy tour labels must never sit on top of the Ejar mock interface. */
.demo-feature-flag {
  display: none !important;
}

.presentation-cursor {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  display: block;
  opacity: 0;
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0) translate(-5px, -4px);
  transition: transform 1.05s cubic-bezier(.16, 1, .3, 1), opacity .2s ease;
  pointer-events: none;
}
.presentation-cursor.is-visible { opacity: 1; }
.presentation-cursor svg {
  width: 30px;
  height: 36px;
  overflow: visible;
  filter: drop-shadow(0 3px 5px rgba(3, 44, 34, .25));
}
.presentation-cursor svg path { fill: #087a59; stroke: #f5fbf8; stroke-width: 2; stroke-linejoin: round; }
.presentation-tour-controls {
  position: fixed;
  right: 50%;
  bottom: 18px;
  z-index: 290;
  width: min(690px, calc(100vw - 48px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: .72rem .85rem;
  color: #eef8f4;
  background: #163a31;
  border: 1px solid #315b50;
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(5, 38, 30, .22);
  transform: translateX(50%);
}
.presentation-tour-controls[hidden] { display: none; }
.presentation-tour-controls div {
  min-width: 0;
  display: grid;
  grid-template-columns: auto auto minmax(180px, 1fr);
  align-items: center;
  gap: .12rem .75rem;
  text-align: right;
}
.presentation-tour-controls span { color: #91d6c2; font-size: .76rem; font-weight: 800; }
.presentation-tour-controls b { font-size: .84rem; white-space: nowrap; }
.presentation-tour-controls strong {
  overflow: hidden;
  color: #fff;
  font-size: .9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.presentation-tour-controls small { grid-column: 1 / -1; color: #c5d8d2; font-size: .66rem; }
.presentation-tour-controls button {
  min-height: 38px;
  flex: 0 0 auto;
  padding: .45rem .8rem;
  border: 1px solid #73968c;
  border-radius: 4px;
  color: #eef8f4;
  background: transparent;
  font-size: .72rem;
}
.presentation-tour-controls button:hover { background: #245045; }

.demo-feature-reveal {
  outline: 2px solid rgba(0, 145, 105, .38);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(0, 168, 120, .055) !important;
  transition: outline-color .2s ease, box-shadow .2s ease;
}

@keyframes guide-target-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 168, 120, .07); }
  50% { box-shadow: 0 0 0 6px rgba(0, 168, 120, .13); }
}

@media (max-width: 900px) {
  .presentation-tour-controls { right: 12px; left: 12px; width: auto; transform: none; }
  .presentation-tour-controls div { grid-template-columns: auto auto; }
  .presentation-tour-controls strong { grid-column: 1 / -1; white-space: normal; }
}
