:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5c6863;
  --line: #d9e1dc;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --green: #0f6b4f;
  --green-dark: #083f31;
  --red: #b73b33;
  --gold: #c89a3f;
  --blue: #2f6f91;
  --shadow: 0 22px 70px rgba(15, 35, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green-dark);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  min-height: min(760px, calc(100vh - 72px));
  padding: 64px 5vw 48px;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.button,
.contact-card button,
.apply-form button,
.upload-box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--green-dark);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.contact-card button {
  color: #fff;
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  background: transparent;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 38px 0 0;
}

.proof-strip div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.proof-strip dt {
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 900;
}

.proof-strip dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.ops-visual {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(8, 63, 49, 0.14);
  border-radius: 8px;
  background: #fdfcf8;
  box-shadow: var(--shadow);
}

.visual-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.visual-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.visual-toolbar span:nth-child(2) {
  background: var(--gold);
}

.visual-toolbar span:nth-child(3) {
  background: var(--green);
}

.visual-toolbar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 13px;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.queue-panel,
.audit-panel,
.status-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.queue-panel {
  grid-row: span 2;
}

.panel-title {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.ticket {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ticket + .ticket {
  margin-top: 10px;
}

.ticket.active {
  border-color: rgba(15, 107, 79, 0.4);
  background: #f0faf5;
}

.ticket span,
.ticket em,
.status-panel span {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.audit-panel ol {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.audit-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.audit-panel li span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.status-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.status-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 34px;
}

.section,
.product-section,
.split-section,
.pilot,
.page-hero,
.pricing-section,
.faq-section {
  padding: 84px 5vw;
}

.page-hero {
  max-width: 1060px;
  padding-top: 96px;
  padding-bottom: 66px;
}

.page-hero h1 {
  max-width: 920px;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #f9fbf8;
  line-height: 1.7;
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.intro p:last-child,
.check-list p,
.section-head p,
.split-section p,
.pilot p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.section-head {
  max-width: 860px;
  margin-bottom: 36px;
}

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

.feature-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-index {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.feature-grid p,
.compact-list span {
  color: var(--muted);
  line-height: 1.7;
}

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

.timeline article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.timeline p {
  color: var(--muted);
  line-height: 1.7;
}

.pricing-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.price-card {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.price-card.featured {
  border-color: rgba(15, 107, 79, 0.55);
  box-shadow: var(--shadow);
}

.price-top {
  display: grid;
  gap: 8px;
}

.price-top span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.price-top strong {
  color: var(--green-dark);
  font-size: 42px;
  line-height: 1;
}

.price-top em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.deliverables {
  background: var(--paper);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  background: var(--green-dark);
  color: #fff;
}

.split-section .eyebrow,
.split-section p,
.compact-list span {
  color: #d9eee6;
}

.compact-list {
  display: grid;
  gap: 14px;
}

.compact-list div {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.operating-model {
  background: #fff;
}

.model-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.model-row div {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  text-align: center;
  font-weight: 850;
  background: #f9fbf8;
}

.diagnosis-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 58px 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.diagnosis-band div {
  max-width: 860px;
}

.diagnosis-band p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 5vw 72px;
}

.metrics-strip div {
  display: grid;
  gap: 8px;
  min-height: 128px;
  align-content: center;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.metrics-strip strong {
  color: var(--green-dark);
  font-size: 44px;
  line-height: 1;
}

.metrics-strip span {
  color: var(--muted);
}

.single-deliverable {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.single-deliverable p {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.savings-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
  padding: 84px 5vw;
  background: var(--green-dark);
  color: #fff;
}

.savings-section .eyebrow,
.savings-section p {
  color: #d9eee6;
}

.savings-section p {
  font-size: 18px;
  line-height: 1.8;
}

.savings-table {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

.savings-table div {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
}

.savings-table div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.savings-table span,
.savings-table em {
  color: #d9eee6;
  font-style: normal;
}

.pilot {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 480px);
  gap: 56px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-card select,
.contact-card textarea,
.apply-form select,
.apply-form textarea,
.apply-form input,
.roi-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-card textarea {
  resize: vertical;
}

.deliverable-preview,
.industry-section,
.apply-section,
.roi-section {
  padding: 84px 5vw;
}

.deliverable-preview {
  background: #fff;
}

.deliverable-grid,
.trust-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.deliverable-grid article,
.trust-grid article,
.industry-grid article {
  display: grid;
  gap: 10px;
  min-height: 170px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbf8;
}

.deliverable-grid strong,
.trust-grid strong,
.industry-grid strong {
  color: var(--green-dark);
  font-size: 20px;
}

.deliverable-grid span,
.trust-grid span,
.industry-grid span {
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.faq-hero {
  padding-bottom: 36px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
  padding-top: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.25;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.faq-aside {
  position: sticky;
  top: 96px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
}

.faq-aside .eyebrow,
.faq-aside p {
  color: #d9eee6;
}

.faq-aside h2 {
  font-size: 30px;
}

.faq-aside ol {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 0 0 24px;
  color: #d9eee6;
  line-height: 1.6;
}

.app-header .nav-cta {
  padding: 8px 12px;
  border: 1px solid var(--green-dark);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 800;
}

.platform-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 70px 32px 58px;
  min-height: auto;
}

.platform-copy {
  justify-self: center;
  width: 100%;
  max-width: 840px;
  min-width: 0;
  text-align: center;
}

.platform-hero h1 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
}

.platform-hero .lead {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: 18px;
}

.platform-hero .actions {
  justify-content: center;
  margin-bottom: 0;
}

.product-shell {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  justify-self: center;
  width: 100%;
  max-width: 980px;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(8, 63, 49, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.shell-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 14px;
  color: #d9eee6;
  background: var(--green-dark);
}

.shell-sidebar strong {
  margin-bottom: 16px;
  color: #fff;
}

.shell-sidebar a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #d9eee6;
  font-size: 13px;
  font-weight: 750;
}

.shell-sidebar a.active {
  color: var(--green-dark);
  background: #fff;
}

.shell-main {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 18px;
  background: #f8faf7;
}

.shell-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.shell-topbar span,
.shell-topbar em,
.kpi-row span,
.work-grid p {
  color: var(--muted);
  font-style: normal;
}

.shell-topbar em {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #e8f6ee;
  font-size: 12px;
  font-weight: 850;
}

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

.kpi-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.kpi-row strong {
  display: block;
  margin-top: 10px;
  color: var(--green-dark);
  font-size: 36px;
  line-height: 1;
}

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

.work-grid article {
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.status-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 34px;
  border-radius: 50%;
}

.status-dot.green {
  background: var(--green);
}

.status-dot.red {
  background: var(--red);
}

.status-dot.gold {
  background: var(--gold);
}

.platform-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 5vw;
  background: var(--line);
}

.platform-strip div {
  display: grid;
  gap: 8px;
  min-height: 136px;
  align-content: center;
  padding: 24px;
  background: #fff;
}

.platform-strip strong {
  color: var(--green-dark);
  font-size: 20px;
}

.platform-strip span,
.module-grid p,
.stakeholder-grid p,
.workflow-section p,
.platform-cta p {
  color: var(--muted);
  line-height: 1.7;
}

.module-section,
.stakeholder-section,
.workflow-section {
  padding: 84px 5vw;
}

.stakeholder-section {
  background: #fff;
}

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

.stakeholder-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbf8;
}

.stakeholder-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

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

.module-grid article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.module-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.workflow-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.workflow-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.workflow-board div {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  text-align: center;
  font-weight: 850;
  background: #f9fbf8;
}

.revenue-board div {
  align-content: center;
  line-height: 1.5;
}

.platform-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 64px 5vw;
  background: var(--green-dark);
  color: #fff;
}

.platform-cta div {
  max-width: 850px;
}

.platform-cta .eyebrow,
.platform-cta p {
  color: #d9eee6;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1fr);
  gap: 42px;
  align-items: start;
  padding: 84px 5vw;
  background: var(--green-dark);
  color: #fff;
}

.trust-section .eyebrow,
.trust-section p {
  color: #d9eee6;
}

.trust-section p {
  font-size: 18px;
  line-height: 1.8;
}

.trust-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.trust-grid strong {
  color: #fff;
}

.trust-grid span {
  color: #d9eee6;
}

.industry-section {
  border-top: 1px solid var(--line);
  background: #fff;
}

.industry-grid article {
  min-height: 150px;
}

.industry-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: start;
}

.apply-form,
.apply-aside,
.roi-form,
.roi-result {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.apply-form label,
.roi-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.apply-form textarea {
  resize: vertical;
}

.apply-aside {
  position: sticky;
  top: 96px;
  background: var(--green-dark);
  color: #fff;
}

.apply-aside .eyebrow {
  color: #d9eee6;
}

.apply-aside div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.apply-aside span {
  color: #d9eee6;
  line-height: 1.7;
}

.roi-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
}

.roi-result {
  background: var(--green-dark);
  color: #fff;
}

.roi-result div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.roi-result span,
.roi-result p {
  color: #d9eee6;
}

.roi-result strong {
  font-size: 38px;
  line-height: 1;
}

.console-body {
  background: #eef2ef;
}

.console-layout {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  min-height: 100vh;
}

.console-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  align-content: start;
  gap: 28px;
  height: 100vh;
  padding: 22px 18px;
  color: #d9eee6;
  background: var(--green-dark);
}

.console-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.console-sidebar nav {
  display: grid;
  gap: 8px;
}

.console-sidebar nav a {
  padding: 12px 14px;
  border-radius: 8px;
  color: #d9eee6;
  font-weight: 760;
}

.console-sidebar nav a.active,
.console-sidebar nav a:hover {
  color: var(--green-dark);
  background: #fff;
}

.console-main {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 28px;
}

.console-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.console-header h1 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
}

.console-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.console-actions button,
.export-list button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--green-dark);
  border-radius: 8px;
  color: var(--green-dark);
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.console-actions button.primary {
  color: #fff;
  background: var(--green-dark);
}

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

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

.console-process article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.console-process span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-dark);
  font-weight: 900;
}

.console-process em,
.upload-box span {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.upload-box {
  display: grid;
  gap: 12px;
  min-height: 190px;
  align-content: center;
  padding: 20px;
  border: 1px dashed rgba(8, 63, 49, 0.42);
  border-radius: 8px;
  background: #f8faf7;
}

.upload-box button {
  justify-self: start;
  min-height: 40px;
  background: #fff;
}

.console-kpis article,
.console-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.console-kpis article {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.console-kpis span,
.console-kpis em,
.panel-head span,
.case-table span,
.case-table em,
.review-list span,
.export-list button,
.content-pipeline span {
  color: var(--muted);
  font-style: normal;
}

.console-kpis strong {
  color: var(--green-dark);
  font-size: 42px;
  line-height: 1;
}

.console-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 16px;
}

.console-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 20px;
}

.console-panel.wide {
  grid-column: span 1;
}

.console-panel.full {
  grid-column: 1 / -1;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-head h2 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.2;
}

.panel-head span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f5f2;
  font-size: 12px;
  font-weight: 850;
}

.case-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-table div {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr 0.8fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.case-table div + div {
  border-top: 1px solid var(--line);
}

.case-table div:first-child {
  background: #f8faf7;
}

.case-table em {
  font-weight: 850;
}

.review-list,
.export-list,
.content-pipeline {
  display: grid;
  gap: 12px;
}

.review-list div,
.content-pipeline div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
}

.content-pipeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .hero,
  .platform-hero,
  .intro,
  .split-section,
  .pilot,
  .faq-section,
  .diagnosis-band,
  .savings-section,
  .trust-section,
  .apply-section,
  .roi-section,
  .platform-cta,
  .console-layout,
  .console-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .feature-grid.three,
  .model-row,
  .module-grid,
  .stakeholder-grid,
  .workflow-board,
  .platform-strip,
  .deliverable-grid,
  .trust-grid,
  .industry-grid,
  .work-grid,
  .console-process,
  .content-pipeline,
  .timeline,
  .pricing-grid,
  .metrics-strip,
  .console-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-aside {
    position: static;
  }

  .product-shell {
    grid-template-columns: 1fr;
  }

  .shell-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .console-sidebar {
    position: static;
    height: auto;
  }

  .apply-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    min-height: 94px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav {
    display: none;
  }

  .hero,
  .platform-hero,
  .section,
  .product-section,
  .module-section,
  .stakeholder-section,
  .workflow-section,
  .split-section,
  .pilot,
  .page-hero,
  .pricing-section,
  .faq-section,
  .deliverable-preview,
  .industry-section,
  .apply-section,
  .roi-section,
  .platform-cta {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .diagnosis-band,
  .metrics-strip,
  .savings-section,
  .platform-strip {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 35px;
    line-height: 1.05;
  }

  .hero-copy {
    width: 100%;
    max-width: 350px;
  }

  .hero-copy p {
    max-width: 350px;
    overflow-wrap: anywhere;
  }

  .page-hero,
  .page-hero h1,
  .page-hero .lead,
  .intro h2,
  .check-list,
  .check-list p,
  .timeline article,
  .price-card,
  .faq-list article,
  .faq-aside {
    width: 100%;
    max-width: 350px;
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 17px;
  }

  .proof-strip,
  .visual-grid,
  .feature-grid,
  .feature-grid.three,
  .model-row,
  .module-grid,
  .stakeholder-grid,
  .workflow-board,
  .platform-strip,
  .deliverable-grid,
  .trust-grid,
  .industry-grid,
  .console-process,
  .kpi-row,
  .work-grid,
  .shell-sidebar,
  .content-pipeline,
  .status-panel,
  .timeline,
  .pricing-grid,
  .console-kpis {
    grid-template-columns: 1fr;
  }

  .metrics-strip,
  .case-table div,
  .savings-table div {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 56px;
  }

  .price-top strong {
    font-size: 34px;
  }

  .ops-visual {
    width: 100%;
    max-width: 350px;
    margin-top: 10px;
  }

  .product-shell {
    width: 100%;
    max-width: 350px;
    min-height: auto;
  }

  .console-main {
    padding: 18px;
  }

  .console-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
  }
}
