:root {
  color-scheme: light;
  --ink: #102522;
  --muted: #5c716d;
  --line: #dce8e4;
  --paper: #ffffff;
  --soft: #f5faf8;
  --soft-2: #edf5f2;
  --teal: #00796f;
  --teal-dark: #004f4d;
  --green: #2fac4d;
  --amber: #e39b18;
  --red: #d75b4e;
  --blue: #4169a8;
  --violet: #6e5aa8;
  --shadow: 0 20px 58px rgba(16, 37, 34, 0.13);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7fbf9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 121, 111, 0.28);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

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

.site {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #f6fbf9 0%, #ffffff 45%, #f4f8f6 100%),
    repeating-linear-gradient(90deg, rgba(0, 121, 111, 0.05) 0 1px, transparent 1px 120px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(220, 232, 228, 0.88);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1200px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0, 79, 77, 0.16);
}

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

.brand strong {
  color: var(--teal-dark);
  font-size: 17px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #405d58;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.text-button {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 750;
  border-radius: 8px;
  padding: 8px 10px;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.text-button:hover {
  background: #e7f4f0;
  color: var(--teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--paper);
  color: var(--teal-dark);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.mini-button:hover,
.proof:hover,
.side-item:hover,
.stage-tab:hover,
.task-tab:hover,
.road-step:hover {
  transform: translateY(-1px);
}

.button:active,
.mini-button:active,
.proof:active,
.side-item:active,
.stage-tab:active,
.task-tab:active,
.road-step:active {
  transform: translateY(0);
}

.button.primary {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 121, 111, 0.21);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.74);
}

.button.large {
  min-height: 48px;
  padding: 0 20px;
}

.button.full {
  width: 100%;
}

.icon-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.icon-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-dark);
}

.hero,
.section,
.cta,
.footer {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 48px;
  align-items: center;
  padding: 42px 0 64px;
}

.hero-copy,
.hero-panel,
.browser-shell,
.preview-main {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.eyebrow {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(0, 121, 111, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(47, 172, 77, 0.14);
}

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

h1 {
  margin-bottom: 16px;
  max-width: 720px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  color: #0c2b28;
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
}

.hero-statement {
  max-width: 690px;
  margin-bottom: 22px;
  color: #0f3531;
  font-size: 32px;
  line-height: 1.24;
  font-weight: 850;
}

.lead {
  max-width: 650px;
  color: #4f6762;
  font-size: 18px;
  line-height: 1.78;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
}

.proof {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
  text-align: left;
  color: var(--ink);
}

.proof.active {
  border-color: rgba(0, 121, 111, 0.48);
  box-shadow: 0 12px 26px rgba(0, 121, 111, 0.12);
}

.proof strong {
  display: block;
  color: var(--teal-dark);
  font-size: 30px;
}

.proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-panel {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.browser-shell {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.browser-top {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #fbfdfc;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bdd0ca;
}

.mini-button {
  min-height: 32px;
  padding: 0 11px;
  font-size: 12px;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 560px;
}

.dashboard-preview aside {
  border-right: 1px solid var(--line);
  background: #f8fbfa;
  padding: 18px 12px;
}

.side-item {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #61736f;
  text-align: left;
  padding: 0 12px;
  font-weight: 800;
}

.side-item.active {
  background: #e7f4f0;
  color: var(--teal-dark);
}

.preview-main {
  padding: 24px;
}

.preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.preview-head span:first-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.preview-head h2 {
  margin: 7px 0 0;
  font-size: 25px;
  line-height: 1.18;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.status-chip.ok {
  color: #13692a;
  background: #e4f7e8;
}

.status-chip.warn {
  color: #815907;
  background: #fff2cc;
}

.status-chip.risk {
  color: #a83a31;
  background: #ffe8e5;
}

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

.kpi-card {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  padding: 15px;
}

.kpi-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.kpi-card strong {
  display: block;
  margin-top: 8px;
  font-size: 27px;
  color: var(--teal-dark);
}

.kpi-card em {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.preview-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.preview-row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.7fr;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.preview-row:last-child {
  border-bottom: 0;
}

.preview-row strong {
  font-size: 14px;
}

.preview-row span {
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: #0d2d2a;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.stage-tabs,
.task-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.stage-tab,
.task-tab {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #4b625e;
  padding: 0 14px;
  font-weight: 850;
}

.stage-tab.active,
.task-tab.active {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

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

.capability-card {
  min-height: 206px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  animation: fade-in 180ms ease both;
}

.capability-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #e7f4f0;
  color: var(--teal-dark);
  font-weight: 900;
}

.capability-card h3 {
  margin: 18px 0 9px;
  font-size: 19px;
}

.capability-card p {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.card-action {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--teal);
  padding: 0;
  font-weight: 850;
}

.workspace {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workspace-tools {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 140px 150px;
  gap: 10px;
  min-width: min(100%, 570px);
}

.workspace-tools input,
.workspace-tools select,
.sla-form select,
.modal select,
.modal textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
}

.modal textarea {
  min-height: 92px;
  padding-top: 10px;
  resize: vertical;
}

.workspace-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.supplier-board,
.supplier-detail,
.sla-lab,
.road-detail,
.cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(16, 37, 34, 0.07);
}

.board-head {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.board-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.supplier-list {
  max-height: 680px;
  overflow: auto;
}

.supplier-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 16px 18px;
  text-align: left;
}

.supplier-item.active {
  background: #f1f8f5;
}

.supplier-item h3 {
  margin: 0;
  font-size: 16px;
}

.supplier-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 8px;
  padding: 0 8px;
  background: var(--soft-2);
  color: #48605c;
  font-size: 12px;
  font-weight: 800;
}

.pill.high {
  background: #ffe8e5;
  color: #9f352d;
}

.pill.medium {
  background: #fff2cc;
  color: #7d5709;
}

.pill.low {
  background: #e4f7e8;
  color: #15672b;
}

.supplier-detail {
  padding: 24px;
  min-height: 620px;
  animation: fade-in 180ms ease both;
}

.detail-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.detail-top h3 {
  margin: 0;
  font-size: 26px;
}

.detail-top p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

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

.detail-stat {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfdfc;
}

.detail-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.detail-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.timeline {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.timeline-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.timeline-item strong {
  display: block;
  margin-bottom: 5px;
}

.timeline-item span {
  color: var(--muted);
  font-size: 13px;
}

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

.task-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  min-height: 250px;
  animation: fade-in 180ms ease both;
}

.task-card h3 {
  margin: 12px 0 8px;
  font-size: 18px;
}

.task-card p {
  color: var(--muted);
  line-height: 1.55;
}

.task-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.task-actions .button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

.sla-lab {
  margin-top: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.sla-lab h3 {
  margin: 8px 0 8px;
  font-size: 24px;
}

.sla-lab p {
  color: var(--muted);
  line-height: 1.6;
}

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

.sla-form label,
.modal label {
  display: grid;
  gap: 7px;
  color: #405d58;
  font-size: 13px;
  font-weight: 850;
}

.sla-result {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  padding: 16px;
  transition: border-color 160ms ease, background 160ms ease;
}

.sla-result.ok {
  border-color: rgba(47, 172, 77, 0.36);
  background: #f1fbf4;
}

.sla-result.warn {
  border-color: rgba(227, 155, 24, 0.42);
  background: #fff8e6;
}

.sla-result.risk {
  border-color: rgba(215, 91, 78, 0.42);
  background: #fff1ef;
}

.sla-result strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.sla-result p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.road-step {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  text-align: left;
}

.road-step.active {
  border-color: var(--teal);
  background: #eff8f5;
}

.road-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #e7f4f0;
  color: var(--teal-dark);
  font-weight: 900;
}

.road-step strong,
.road-step small {
  display: block;
}

.road-step strong {
  margin-top: 16px;
  font-size: 17px;
}

.road-step small {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.road-detail {
  margin-top: 14px;
  padding: 24px;
  animation: fade-in 180ms ease both;
}

.road-detail h3 {
  font-size: 25px;
}

.road-detail ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.cta {
  margin-top: 32px;
  margin-bottom: 80px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  background:
    linear-gradient(135deg, rgba(0, 79, 77, 0.98), rgba(0, 121, 111, 0.92)),
    #00524f;
  color: #fff;
}

.cta .section-kicker {
  color: #d6fff2;
}

.cta h2 {
  margin: 9px 0 10px;
  font-size: 34px;
  line-height: 1.15;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

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

.cta .button.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer {
  min-height: 86px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 37, 34, 0.42);
}

.modal {
  width: min(520px, 100%);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
  position: relative;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 22px;
}

.modal h2,
.drawer h2 {
  margin: 9px 0 18px;
}

.modal form {
  display: grid;
  gap: 14px;
}

.modal-result {
  margin-top: 14px;
  min-height: 0;
}

.modal-result:not(:empty) {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f5faf8;
  color: var(--teal-dark);
  line-height: 1.6;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(460px, calc(100% - 24px));
  height: 100vh;
  transform: translateX(105%);
  transition: transform 220ms ease;
  border-left: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 28px;
  overflow: auto;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  background: #fbfdfc;
}

.drawer-card strong {
  display: block;
  margin-bottom: 7px;
}

.drawer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  min-width: min(420px, calc(100% - 32px));
  border-radius: 8px;
  background: #0f2f2c;
  color: #fff;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
  text-align: center;
  font-weight: 750;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1020px) {
  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px 0;
  }

  .brand {
    flex: 1 1 auto;
  }

  .icon-button {
    display: inline-flex;
    flex: 0 0 42px;
    margin-left: auto;
  }

  .nav-links,
  .nav-actions {
    flex: 1 0 100%;
    display: none;
    width: 100%;
    justify-content: flex-start;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
  }

  .nav.open .nav-links {
    flex-wrap: wrap;
    padding-top: 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .dashboard-preview,
  .workspace-layout,
  .sla-lab,
  .cta {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .task-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .hero,
  .section,
  .cta,
  .footer,
  .nav {
    width: min(100% - 28px, 1200px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .eyebrow {
    min-height: 0;
    align-items: flex-start;
    line-height: 1.45;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: 42px;
    line-height: 1.08;
    word-break: normal;
  }

  .hero-statement {
    font-size: 27px;
    line-height: 1.24;
  }

  .lead {
    font-size: 16px;
  }

  .hero-proof,
  .kpi-grid,
  .capability-grid,
  .task-grid,
  .roadmap-grid,
  .detail-grid,
  .sla-form,
  .workspace-tools {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-head.split,
  .preview-head,
  .detail-top,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .preview-row {
    grid-template-columns: 1fr;
    padding: 12px 14px;
  }

  .dashboard-preview aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cta {
    margin-bottom: 44px;
    padding: 24px;
  }
}
