:root {
  --ink: #20242b;
  --muted: #68707d;
  --line: #d8dde3;
  --soft-line: #edf0f3;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --panel-2: #f4f0e8;
  --coal: #15191f;
  --green: #187a5c;
  --blue: #2765b3;
  --amber: #a96800;
  --red: #b3343a;
  --gold: #f7c948;
  --radius: 8px;
  --max: 1200px;
  font-family: "Segoe UI", "Aptos", "Noto Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
}

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

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  justify-self: start;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--coal);
  background: var(--gold);
  font-weight: 800;
  font-size: 20px;
  box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.12);
}

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

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

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

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

.header-cta,
.primary-link,
.secondary-link,
.request-form button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
}

.header-cta {
  justify-self: end;
  padding: 0 16px;
  color: #fff;
  background: var(--coal);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.24;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: rgba(251, 250, 247, 0.82);
}

.hero-inner,
.section,
.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 52px;
}

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

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

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  color: var(--coal);
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--coal);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

.hero-copy {
  max-width: 720px;
  color: #3a414d;
  font-size: 21px;
  line-height: 1.45;
}

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

.primary-link {
  padding: 0 20px;
  color: #fff;
  background: var(--coal);
}

.secondary-link {
  padding: 0 20px;
  color: var(--coal);
  background: #fff;
  border: 1px solid var(--line);
}

.trust-strip {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.trust-strip div {
  min-height: 86px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-strip dt {
  margin-bottom: 5px;
  color: var(--coal);
  font-size: 18px;
  font-weight: 900;
}

.trust-strip dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.section {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
}

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

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

.role-card,
.capability-grid article,
.compliance-grid article,
.docs-grid article,
.ops-grid article,
.fact-list article,
.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.role-card {
  min-height: 230px;
  padding: 24px;
}

.role-card span,
.docs-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.role-card p,
.problem-copy p,
.product-proof p,
.industries-section p,
.request-section p,
.compliance-grid p,
.docs-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.62;
}

.problem-section,
.product-proof,
.industries-section,
.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: center;
  gap: 42px;
}

.problem-copy {
  max-width: 650px;
}

.fact-list {
  display: grid;
  gap: 12px;
}

.fact-list article {
  padding: 18px;
}

.fact-list strong,
.fact-list span,
.ops-grid strong,
.ops-grid span {
  display: block;
}

.fact-list strong {
  margin-bottom: 5px;
}

.fact-list span,
.ops-grid span {
  color: var(--muted);
  line-height: 1.45;
}

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

.stepper li {
  min-height: 220px;
  padding: 18px;
  background: var(--panel-2);
  border: 1px solid #e2d9cb;
  border-radius: var(--radius);
}

.stepper span {
  display: block;
  margin-bottom: 22px;
  color: var(--amber);
  font-weight: 900;
}

.stepper strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.stepper p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.capability-grid article,
.compliance-grid article {
  padding: 24px;
}

.capability-grid ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-proof figure {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-proof img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.product-proof figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

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

.ops-grid article {
  min-height: 140px;
  padding: 20px;
}

.ops-grid strong {
  margin-bottom: 9px;
  color: var(--coal);
  font-size: 19px;
}

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

.docs-grid article {
  min-height: 210px;
  padding: 22px;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--coal);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--coal);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.request-section {
  align-items: start;
}

.request-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--coal);
  border-radius: var(--radius);
  color: #fff;
}

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

.request-form label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.request-form input,
.request-form select {
  min-height: 44px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.request-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.request-form select option {
  color: var(--ink);
}

.request-form .consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.request-form .consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.request-form button {
  border: 0;
  color: var(--coal);
  background: var(--gold);
  cursor: pointer;
}

.site-footer {
  min-height: 86px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.site-footer span:first-child {
  margin-right: auto;
  color: var(--coal);
  font-weight: 900;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

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

  .role-grid,
  .capability-grid,
  .ops-grid,
  .compliance-grid,
  .docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    grid-template-columns: 1fr;
    padding: 10px 16px;
  }

  .brand {
    justify-self: stretch;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .hero-inner {
    padding: 52px 0 36px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  h2 {
    font-size: 30px;
  }

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

  .hero-actions,
  .trust-strip,
  .role-grid,
  .stepper,
  .capability-grid,
  .ops-grid,
  .compliance-grid,
  .docs-grid,
  .problem-section,
  .product-proof,
  .industries-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .role-card,
  .stepper li,
  .docs-grid article {
    min-height: 0;
  }

  .site-footer {
    padding: 18px 0 24px;
  }
}