:root {
  color-scheme: light;
  --ink: #18212f;
  --muted: #526070;
  --line: #d9e0e8;
  --paper: #f7f8fb;
  --panel: #ffffff;
  --accent: #007a7a;
  --accent-dark: #005d61;
  --warn: #c76a19;
  --code: #101722;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px clamp(18px, 4vw, 44px);
  background: rgba(247, 248, 251, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav-cta {
  color: var(--accent-dark) !important;
  font-weight: 700;
}

.hero {
  min-height: 68vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 66px) 36px;
  background: linear-gradient(120deg, #f7f8fb 0%, #eef5f2 52%, #f4f1ea 100%);
}

.hero-copy,
.section,
.cta {
  max-width: 1120px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

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

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

.hero-panel {
  min-width: 0;
}

.workstation-visual {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(24, 33, 47, 0.18);
}

.program-strip {
  max-width: 1120px;
  margin: -18px auto 0;
  padding: 24px clamp(18px, 4vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: start;
  border: 1px solid #cbdad8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(24, 33, 47, 0.09);
}

.program-strip h2 {
  font-size: clamp(23px, 2.8vw, 32px);
}

.program-strip p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}

.program-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-facts li {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfa;
}

.program-facts strong,
.program-facts span {
  display: block;
}

.program-facts strong {
  color: var(--accent-dark);
  font-size: 16px;
}

.program-facts span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.terminal {
  border-radius: 8px;
  overflow: hidden;
  color: #dce8ee;
  background: var(--code);
  box-shadow: 0 18px 52px rgba(24, 33, 47, 0.2);
}

.terminal-bar {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  background: #1b2533;
}

.terminal-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #6d7b8a;
}

pre {
  margin: 0;
  padding: 18px 20px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.55;
}

.section {
  margin: 0 auto;
  padding: 58px clamp(18px, 4vw, 30px);
}

.section-intro {
  max-width: 760px;
  margin: -8px 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  margin-bottom: 24px;
}

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

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

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

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

article,
.evidence,
details {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

article p,
.evidence p,
details p {
  margin: 0;
  color: var(--muted);
}

.band {
  padding: 42px clamp(18px, 5vw, 66px);
  color: #fff;
  background: #1c3342;
}

.split {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.split .eyebrow {
  color: #7fd2c9;
}

.split p:last-child {
  margin: 0;
  color: #d6e2e7;
  font-size: 17px;
}

.band-copy {
  display: grid;
  gap: 10px;
}

.band-copy p {
  margin: 0;
  color: #d6e2e7;
  font-size: 17px;
}

.mid-cta {
  max-width: 1120px;
  margin: 40px auto 0;
  padding: 24px clamp(20px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid #cbdad8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(24, 33, 47, 0.08);
}

.mid-cta h2 {
  font-size: clamp(23px, 2.6vw, 30px);
}

.mid-cta p:not(.eyebrow) {
  max-width: 780px;
  margin: 9px 0 0;
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: var(--panel);
}

.capability-cards li {
  display: grid;
  gap: 6px;
}

.capability-cards strong {
  color: var(--ink);
  font-size: 16px;
}

.capability-cards span {
  color: var(--muted);
}

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

.pipeline article {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 172px;
}

.pipeline span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

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

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

.role-grid article {
  border-top: 4px solid var(--accent);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow-steps li {
  counter-increment: workflow;
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 700;
}

.workflow-steps li::before {
  content: counter(workflow, decimal-leading-zero);
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

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

.use-case-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.use-case-card h4 {
  margin: 0 0 6px;
  color: var(--accent-dark);
  font-size: 14px;
  line-height: 1.35;
}

.use-case-card p + p {
  margin-top: 8px;
}

.use-case-safety {
  padding: 12px;
  border: 1px solid #cbdad8;
  border-radius: 6px;
  background: #f2f8f6;
}

.use-case-note {
  margin-top: 14px;
  padding: 16px 18px;
  border-left: 4px solid var(--warn);
  border-radius: 8px;
  background: var(--panel);
}

.use-case-note p {
  margin: 0;
  color: var(--muted);
}

.use-case-note .fine-note {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
}

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

.price-grid article h3 {
  font-size: clamp(30px, 4vw, 42px);
  color: var(--accent-dark);
}

.price-grid article p + p {
  margin-top: 8px;
}

.company-structure {
  padding-top: 26px;
}

.company-grid article p + p {
  margin-top: 8px;
}

.company-grid a {
  color: var(--accent-dark);
  font-weight: 700;
}

.target {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 8px;
  border-radius: 6px;
  color: var(--accent-dark);
  background: #e6f3f1;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.evidence-list {
  display: grid;
  gap: 10px;
  border-left: 4px solid var(--warn);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #edf3f2;
}

.faq {
  display: grid;
  gap: 10px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin-top: 9px;
}

.cta {
  margin: 0 auto 58px;
  padding: clamp(30px, 4.8vw, 50px);
  border-radius: 8px;
  color: #fff;
  background: #0f5960;
}

.cta .eyebrow {
  color: #a9e6df;
}

.cta p {
  max-width: 760px;
  color: #e4f0f1;
}

.cta-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 900px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cta-checklist li {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: #eef7f7;
  background: rgba(255, 255, 255, 0.08);
}

.cta .button.primary {
  color: var(--accent-dark);
  border-color: #fff;
  background: #fff;
}

.cta .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 860px) {
  .site-header,
  .nav {
    align-items: flex-start;
  }

  .site-header,
  .hero,
  .program-strip,
  .mid-cta,
  .section-head,
  .split,
  .grid.three,
  .use-grid,
  .grid.two,
  .feature-list,
  .pipeline,
  .package-grid,
  .program-facts,
  .role-grid,
  .workflow-steps,
  .use-case-grid,
  .price-grid,
  .cta-checklist {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .mid-cta {
    margin: 32px 18px 0;
  }

  .program-strip {
    margin: 0 18px;
  }

  .program-facts li,
  .workflow-steps li {
    min-height: 0;
  }

  .pipeline article {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }
}
