:root {
  --bg: #f6f7f3;
  --paper: #ffffff;
  --paper-warm: #fffaf0;
  --ink: #171a18;
  --muted: #66716b;
  --line: #dfe4dd;
  --green: #0f766e;
  --green-soft: #e5f4f1;
  --blue: #2457c5;
  --blue-soft: #e9efff;
  --amber: #b7791f;
  --rose: #9f3a58;
  --shadow: 0 22px 50px rgba(30, 42, 36, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  background-image:
    linear-gradient(rgba(23, 26, 24, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 24, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(246, 247, 243, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 58px;
  height: 34px;
  object-fit: contain;
  background: var(--paper);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--green);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: 42px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 54px;
}

.hero-copy {
  position: relative;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero-kicker span {
  padding: 7px 10px;
  color: #31443f;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

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

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

.lead {
  max-width: 650px;
  color: #3f4b45;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 16px;
  font-weight: 850;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.14);
}

.button.primary {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.button.secondary {
  color: var(--green);
  background: var(--green-soft);
  border-color: #c5ddd8;
}

.product-shot {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.product-shot > * {
  transform: rotate(1deg);
}

.shot-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfa;
}

.shot-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfd7d1;
}

.shot-bar strong {
  margin-left: 8px;
  color: #3f4b45;
  font-size: 13px;
}

.workspace-row {
  display: grid;
  grid-template-columns: 145px 1fr;
  border-bottom: 1px solid var(--line);
}

.workspace-menu {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: #f7faf8;
  border-right: 1px solid var(--line);
}

.workspace-menu strong {
  margin-bottom: 6px;
  font-size: 13px;
}

.workspace-menu a {
  padding: 8px 10px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 750;
}

.workspace-menu a.active {
  color: var(--green);
  background: var(--green-soft);
}

.workspace-main {
  padding: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfa 100%);
}

.workspace-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.status-pill {
  display: inline-flex;
  padding: 6px 10px;
  color: #0f6842;
  background: #e8f8f1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

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

.pipeline div {
  min-height: 82px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pipeline span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.pipeline strong {
  display: block;
  margin-top: 16px;
  font-size: 14px;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
}

.metric {
  min-height: 132px;
  padding: 14px;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric:nth-child(2) {
  background: var(--blue-soft);
  border-color: #ccd7ff;
}

.metric small,
.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric strong {
  display: block;
  margin: 16px 0 6px;
  font-size: 22px;
}

.metric.accent {
  border-color: #d8c99d;
  background: #fff9e9;
}

.preview-table,
.report-panel table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--muted);
  background: #fbfcfa;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.industry-band {
  max-width: 1180px;
  margin: -8px auto 34px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 20px;
  align-items: center;
}

.industry-copy {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
}

.industry-copy h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.industry-list span {
  min-height: 74px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(30, 42, 36, 0.05);
}

.industry-list span:nth-child(2),
.industry-list span:nth-child(5) {
  background: var(--paper-warm);
}

.industry-list span:nth-child(3),
.industry-list span:nth-child(6) {
  background: var(--blue-soft);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 42px;
  gap: 12px;
}

.strip div,
.workflow-list article,
.feature-grid article,
.report-panel,
.contact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.strip div {
  padding: 18px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.strip div:hover,
.feature-grid article:hover,
.workflow-list article:hover {
  transform: translateY(-3px);
  border-color: #b9cbc5;
}

.strip strong,
.strip span {
  display: block;
}

.strip strong {
  font-size: 24px;
}

.strip span {
  color: var(--muted);
  margin-top: 4px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 24px;
}

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

.workflow-list,
.feature-grid {
  display: grid;
  gap: 14px;
}

.workflow-list {
  grid-template-columns: repeat(3, 1fr);
}

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

.workflow-list article,
.feature-grid article {
  padding: 20px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.workflow-list span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.workflow-list p,
.feature-grid p,
.split p,
.contact p {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: 30px;
  align-items: center;
}

.report-panel {
  overflow-x: auto;
  padding: 10px;
  border-top: 4px solid var(--blue);
}

.report-panel td:last-child {
  color: var(--green);
  font-weight: 900;
}

.feature-mark {
  display: inline-flex;
  min-width: 42px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.feature-grid article:nth-child(2) .feature-mark {
  color: var(--blue);
  background: var(--blue-soft);
}

.feature-grid article:nth-child(3) .feature-mark {
  color: var(--amber);
  background: #fff3d6;
}

.feature-grid article:nth-child(4) .feature-mark {
  color: var(--rose);
  background: #fff0f4;
}

.contact {
  max-width: 1132px;
  margin: 44px auto 64px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 4px solid var(--green);
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.08), transparent 42%),
    var(--paper);
}

.contact h2 {
  max-width: 800px;
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 44px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 24px max(24px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-brand {
  display: grid;
  gap: 5px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--green);
}

@media (max-width: 980px) {
  .site-header,
  .contact,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .product-shot {
    min-width: 0;
    transform: none;
  }

  .product-shot > * {
    transform: none;
  }

  .strip,
  .workflow-list,
  .feature-grid,
  .industry-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-band {
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 44px;
    background-size: 180px auto;
  }

  .shot-grid,
  .workspace-row,
  .pipeline,
  .strip,
  .workflow-list,
  .feature-grid,
  .industry-band,
  .industry-list {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 44px;
  }
}
