:root {
  color-scheme: light;
  --bg: #f5f7f6;
  --surface: #ffffff;
  --ink: #17201d;
  --muted: #65726d;
  --line: #dce4df;
  --green: #137a5d;
  --green-soft: #dff4eb;
  --blue: #245bc7;
  --blue-soft: #e6eefc;
  --gold: #9b6a15;
  --gold-soft: #fff4dc;
  --shadow: 0 18px 45px rgba(22, 38, 32, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(36, 91, 199, 0.16), transparent 30rem),
    linear-gradient(135deg, #f8fbfa 0%, var(--bg) 55%, #edf3f0 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

.app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  margin-bottom: 18px;
}

.brand,
.topbar-link {
  color: var(--ink);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 850;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.brand-serif {
  border-bottom: 2px solid var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  padding-bottom: 1px;
}

.topbar-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 13px;
  font-size: 0.9rem;
  font-weight: 800;
}

.topbar-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: end;
  padding: 28px 0 24px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 1.2rem;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.lede {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.scenario-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.status-panel,
.panel,
.sources {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.status-panel {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.trust-strip div {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.trust-strip strong {
  font-size: 1rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.lab-section {
  margin-top: 20px;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  line-height: 1.08;
}

.tool-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 22px;
}

.tool-card h2 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.tool-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.5;
}

.tool-card.is-planned {
  border-style: dashed;
  opacity: 0.78;
}

.primary-link,
.disabled-link {
  align-self: end;
  justify-self: start;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.primary-link {
  background: var(--ink);
  color: #fff;
}

.disabled-link {
  border: 1px solid var(--line);
  color: var(--muted);
}

.status-label,
.metric span,
.roi-card span,
.bar-chart span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-panel strong {
  font-size: 1.55rem;
}

.status-panel span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: 20px;
  align-items: start;
}

.panel {
  padding: 22px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

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

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #26332f;
  font-size: 0.9rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd7d1;
  border-radius: 8px;
  background: #fbfdfc;
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 91, 199, 0.12);
}

textarea {
  resize: vertical;
  line-height: 1.45;
}

.note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.primary-button,
.ghost-button {
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 800;
}

.primary-button {
  background: var(--ink);
  color: #fff;
}

.ghost-button {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric,
.roi-card,
.summary-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.metric {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 16px;
}
wa.m\jYfk&ޢFZUا\yhm'q^vXz\~̬鞖X,ްkyǢ_YIH_ƠxZם~ejYrwijz׫"brq^u"@rۚ\hWXn(ק)ܖ^u蚋fk&~e{b{vz-kz˥'mƥl5睱爵؝޶"zk(n+!w-j+m+"z-%.g+y^nZrhɢ@rۚ\[b%nwjz׫yibZ'z