:root{
  --bg: #f7f6f2;
  --surface: #ffffff;

  /* Higher contrast, less gray */
  --ink: #0f0f10;
  --muted: rgba(15,15,16,0.78);
  --muted2: rgba(15,15,16,0.66);

  --rule: rgba(24,24,27,0.18);
  --rule-soft: rgba(24,24,27,0.12);

  --accent: #0f2f2a;
  --focus: rgba(15,47,42,0.20);

  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --r: 10px;
  --s1: 10px;
  --s2: 14px;
  --s3: 18px;
  --s4: 28px;
}

html, body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);

  /* Crisper on Windows */
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

*{ box-sizing: border-box; }

.page{ padding: 56px 22px; }

.container{
  max-width: 1040px;
  margin: 0 auto;
}

/* HERO */
.hero{ margin-bottom: 14px; }

.hero .kicker{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15,15,16,0.72);
  margin-bottom: 10px;
}

.hero .h1{
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.55px;
  margin: 0 0 12px 0;
  line-height: 1.06;
  color: var(--ink);
}

.hero .subhead{
  font-size: 16px;
  line-height: 1.55;
  color: rgba(15,15,16,0.78);
  margin: 0 0 18px 0;
  max-width: 84ch;
}

/* TOP LAYOUT */
.topGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
  align-items: start;
  margin-top: 10px;
}

@media (min-width: 980px){
  .topGrid{
    grid-template-columns: 520px 1fr;
    column-gap: var(--s4);
    align-items: start;
  }
}

/* No “cards” */
.panel,
.workflowCard,
.eCol{
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Strip */
.panelCompact.panelStrip{
  padding: 16px 0 14px 0;
  border-top: 1px solid var(--rule);
}

.row{
  display: flex;
  gap: var(--s1);
  align-items: center;
  flex-wrap: wrap;
}

@media (min-width: 980px){
  .rowStrip{
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: var(--s1);
    align-items: center;
  }
}

/* INPUT */
.input{
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--r);
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input::placeholder{ color: rgba(15,15,16,0.46); }

.input:focus{
  border-color: rgba(15,47,42,0.40);
  box-shadow: 0 0 0 4px var(--focus);
}

/* BUTTONS */
.btnRow{
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

@media (min-width: 980px){
  .btnRowStrip{ justify-content: flex-end; flex-wrap: nowrap; }
}

.btn{
  padding: 9px 11px;
  font-size: 12.5px;
  font-weight: 850;
  border-radius: 10px;
  border: 1px solid rgba(15,47,42,0.95);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn:disabled{ opacity: 0.42; cursor: not-allowed; }

.btnGhost{
  background: #fff;
  color: rgba(15,15,16,0.90);
  border: 1px solid rgba(24,24,27,0.26);
  font-weight: 800;
}

.btn:focus{ outline: none; box-shadow: 0 0 0 4px var(--focus); }

/* META */
.status{
  margin-top: 10px;
  font-size: 12.75px;
  color: rgba(15,15,16,0.78);
}
.status.ok{ color: rgba(15,47,42,0.92); }
.status.error{ color: #9b1c1c; }

.meta{
  margin-top: 10px;
  font-size: 12.75px;
  line-height: 1.60;
  color: rgba(15,15,16,0.78);
}

.metaLine.small{ color: rgba(15,15,16,0.68); }

.sourceLine{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
  font-size: 12.5px;
  color: rgba(15,15,16,0.72);
}

/* WORKFLOW */
.workflowCard{
  padding: 16px 0 14px 0;
  border-top: 1px solid var(--rule);
}

.workflowCardTitle{
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15,15,16,0.74);
  margin: 2px 0 12px 0;
  font-weight: 950;
}

.workflowList{
  list-style: none;
  padding: 0;
  margin: 0;
}

.workflowList li{
  margin: 0 0 10px 0;
  font-size: 14px;
  color: rgba(15,15,16,0.88);
  line-height: 1.35;
  position: relative;
  padding-left: 14px;
}

.workflowList li:before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(15,47,42,0.48);
}

.workflowNote{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
  font-size: 12.5px;
  color: rgba(15,15,16,0.72);
  line-height: 1.45;
}

/* ENTERPRISE */
.enterprise{
  margin-top: 44px;
  border-top: 1px solid rgba(24,24,27,0.14);
  padding-top: 34px;
}

.enterpriseHeader{
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.18px;
  margin: 0 0 18px 0;
  color: var(--ink);
}

.enterpriseGridAligned{
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.eCol{ padding: 0; }

.eColPrimary{
  padding-left: 16px;
  border-left: 3px solid rgba(15,47,42,0.26);
}

.eTitle{
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15,15,16,0.74);
  margin-bottom: 10px;
  font-weight: 950;
}

.eLead{
  font-size: 14.75px;
  line-height: 1.52;
  color: rgba(15,15,16,0.82);
  margin: 0 0 14px 0;
  max-width: 62ch;
}

.eCol ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.eCol li{
  margin: 0 0 10px 0;
  font-size: 14px;
  color: rgba(15,15,16,0.90);
  line-height: 1.35;
  position: relative;
  padding-left: 14px;
}

.eCol li:before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(15,47,42,0.48);
}

.eNote{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
  font-size: 12.5px;
  color: rgba(15,15,16,0.72);
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 980px){
  .page{ padding: 46px 18px; }
  .hero .h1{ font-size: 36px; }
  .enterpriseGridAligned{ grid-template-columns: 1fr; gap: 18px; }
  .eColPrimary{ padding-left: 0; border-left: none; border-top: 2px solid rgba(15,47,42,0.26); padding-top: 12px; }
}

/* === Minimal passability patch (readability + restraint) === */
html, body{
  color: #111 !important;
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
  text-rendering: optimizeLegibility !important;
}

.hero .subhead,
.meta,
.sourceLine,
.workflowNote,
.eNote{
  color: rgba(17,17,17,0.78) !important;
}

.workflowCardTitle,
.eTitle{
  color: rgba(17,17,17,0.76) !important;
}

.btnGhost{
  color: rgba(17,17,17,0.88) !important;
  border-color: rgba(24,24,27,0.26) !important;
}

.input{
  border-color: rgba(24,24,27,0.20) !important;
}

