:root {
  --ink: #13211d;
  --text: #33413c;
  --muted: #65746f;
  --line: #dfe7e2;
  --paper: #ffffff;
  --soft: #f3f7f5;
  --brand: #176b49;
  --brand-dark: #0f4b35;
  --accent: #1f6fb2;
  --warning: #b2532b;
  --shadow: 0 20px 50px rgba(19, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--brand);
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  height: 36px;
  justify-content: center;
  letter-spacing: 0.04em;
  width: 36px;
}

.main-nav {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex: 1;
  font-size: 14px;
  gap: 22px;
  justify-content: center;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--brand);
}

.header-action,
.btn,
.demo-form button {
  align-items: center;
  border-radius: 7px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
}

.header-action,
.btn-primary,
.demo-form button {
  background: var(--brand);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero {
  display: grid;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  position: relative;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(9, 19, 16, 0.9) 0%, rgba(9, 19, 16, 0.76) 40%, rgba(9, 19, 16, 0.2) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-content {
  align-self: center;
  color: #fff;
  max-width: 760px;
  padding: 84px 5vw 112px;
  position: relative;
  z-index: 1;
}

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

.hero .eyebrow {
  color: #8ee7b5;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  color: #fff;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  margin: 0;
  max-width: 980px;
}

h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  margin: 0;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  max-width: 680px;
}

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

.proof-strip {
  background: var(--brand-dark);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip div {
  background: rgba(255, 255, 255, 0.05);
  padding: 28px 5vw;
}

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

.proof-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section,
.split-section,
.cta-band {
  padding: 92px 5vw;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 820px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  max-width: 680px;
}

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

.module-card,
.outcome-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 230px;
  padding: 26px;
}

.module-card p,
.outcome-grid p,
.split-copy p {
  color: var(--muted);
}

.module-icon {
  color: var(--accent);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 46px;
}

.split-section {
  align-items: center;
  background: var(--soft);
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.check-list li {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  padding: 0 0 12px 28px;
  position: relative;
}

.check-list li::before {
  background: var(--brand);
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 10px;
}

.image-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.muted {
  background: #f8faf9;
}

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

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

.page-map a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font-weight: 800;
  min-height: 60px;
  padding: 16px;
}

.page-map a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.cta-band {
  align-items: start;
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
}

.cta-band h2 {
  color: #fff;
}

.demo-form {
  background: #fff;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.demo-form label {
  display: grid;
  gap: 7px;
}

.demo-form span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.demo-form input {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 0 12px;
  width: 100%;
}

.demo-form input:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(23, 107, 73, 0.14);
}

.demo-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
  margin-top: 4px;
}

.site-footer {
  align-items: center;
  background: #f7f9f8;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 30px 5vw;
}

.site-footer strong,
.site-footer span {
  display: block;
}

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

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.policy-hero {
  background: var(--ink);
  color: #fff;
  padding: 86px 5vw 72px;
}

.policy-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  margin: 0;
}

.policy-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  margin: 20px 0 14px;
  max-width: 820px;
}

.policy-hero span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.policy-layout {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  padding: 54px 5vw 92px;
}

.policy-summary,
.policy-content section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-summary {
  padding: 24px;
  position: sticky;
  top: 96px;
}

.policy-summary h2,
.policy-content h2 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.policy-summary p,
.policy-summary li,
.policy-content p,
.policy-content li {
  color: var(--text);
}

.policy-summary ul,
.policy-content ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.policy-summary li,
.policy-content li {
  margin: 8px 0;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-content section {
  padding: 28px;
}

.policy-content p:last-child,
.policy-content ul:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 16px;
    padding-top: 16px;
    position: static;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .proof-strip,
  .module-grid,
  .outcome-grid,
  .page-map,
  .policy-layout,
  .split-section,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .section,
  .policy-layout,
  .split-section,
  .cta-band {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .policy-summary {
    position: static;
  }
}

@media (max-width: 620px) {
  .main-nav {
    display: none;
  }

  .hero-content {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .btn {
    width: 100%;
  }

  .module-card,
  .outcome-grid article {
    min-height: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Homepage refresh */
.logo-brand {
  gap: 10px;
}

.logo-brand img {
  height: 48px;
  width: 48px;
}

.logo-brand span {
  color: var(--ink);
  font-weight: 900;
}

.feature-grid,
.inventory-layout,
.ops-grid,
.download-grid,
.support-layout,
.faq-grid,
.answer-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.feature-card,
.ops-grid article,
.download-card,
.support-layout div,
.faq-grid article,
.answer-grid article,
.inventory-list article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.feature-card.large {
  background: var(--ink);
  color: #fff;
}

.feature-card.large h3 {
  color: #fff;
}

.feature-card p,
.feature-card li,
.ops-grid p,
.download-card p,
.support-layout p,
.faq-grid p,
.answer-grid p,
.inventory-list p {
  color: var(--muted);
}

.feature-card.large p,
.feature-card.large li {
  color: rgba(255, 255, 255, 0.78);
}

.feature-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
}

.feature-number {
  color: var(--accent);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 44px;
}

.feature-card.large .feature-number {
  color: #8ee7b5;
}

.inventory-layout {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.inventory-layout .image-panel img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 420px;
}

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

.operations-band {
  background: var(--ink);
}

.operations-band h2,
.operations-band h3 {
  color: #fff;
}

.operations-band .eyebrow {
  color: #8ee7b5;
}

.operations-band article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.operations-band p,
.cta-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.ops-grid,
.download-grid,
.support-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.answer-grid article {
  min-height: 260px;
}

.answer-grid span {
  color: var(--accent);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 46px;
  text-transform: uppercase;
}

.answer-grid h3 {
  font-size: 22px;
}

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

.download-card {
  min-height: 240px;
}

.download-card span {
  color: var(--accent);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 54px;
  text-transform: uppercase;
}

.private-grid .download-card {
  box-shadow: none;
  transform: none;
}

.demo-form textarea {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
  min-height: 104px;
  padding: 10px 12px;
  resize: vertical;
  width: 100%;
}

.demo-form textarea:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(23, 107, 73, 0.14);
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.form-note a {
  color: var(--brand);
  font-weight: 800;
}

.form-alert {
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
}

.form-alert p {
  margin: 0;
}

.form-alert p + p {
  margin-top: 6px;
}

.form-alert.success {
  background: #e9f8f0;
  color: #176b49;
}

.form-alert.error {
  background: #fff0ec;
  color: #9b351c;
}

.hp-field {
  display: none !important;
}

@media (max-width: 1080px) {
  .feature-grid,
  .inventory-layout,
  .ops-grid,
  .download-grid,
  .support-layout,
  .faq-grid,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .inventory-layout .image-panel img {
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    position: sticky;
  }

  .main-nav {
    justify-content: center;
  }

  .header-action {
    display: inline-flex;
  }
}

@media (max-width: 620px) {
  .logo-brand img {
    height: 44px;
    width: 44px;
  }

  .site-header {
    min-height: 68px;
  }
}
