:root {
  --ink: #0b1f17;
  --ink-2: #17352a;
  --green: #19966b;
  --green-dark: #0e5e43;
  --orange: #ff7a2f;
  --blue: #1f7ab7;
  --yellow: #f1bf46;
  --cream: #f6f1e8;
  --white: #ffffff;
  --paper: #fffdf8;
  --line: #ded6c7;
  --muted: #647066;
  --shadow: 0 22px 60px rgba(18, 31, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

h1,
h2,
h3,
p,
dl,
dd,
ul,
figure {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 12px;
  color: var(--white);
  border-radius: 6px;
  background: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 34px;
  border-bottom: 1px solid rgba(11, 31, 23, 0.1);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 155px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.header-action,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 950;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.header-action {
  justify-self: end;
  padding: 0 16px;
  color: var(--white);
  background: var(--ink);
}

.header-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-photo,
.hero-photo img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 23, 18, 0.88) 0%, rgba(9, 23, 18, 0.66) 43%, rgba(9, 23, 18, 0.18) 100%),
    linear-gradient(180deg, rgba(9, 23, 18, 0.16), rgba(9, 23, 18, 0.62));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 64px));
  padding: 118px 0 168px;
  margin-left: max(32px, calc((100vw - 1180px) / 2));
}

.eyebrow,
.label {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section .eyebrow,
.dark-section .eyebrow,
.cta-band .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3 {
  font-weight: 950;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 76px;
  line-height: 0.95;
}

h2 {
  font-size: 46px;
  line-height: 1.03;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
}

.hero-copy > p:not(.eyebrow),
.section-copy p,
.intro-copy p,
.page-hero p,
.cta-band p,
.about-panel > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.83);
}

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

.button {
  padding: 0 20px;
  border: 1px solid var(--ink);
}

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

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.hero-command {
  position: absolute;
  right: max(32px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  z-index: 2;
  width: min(520px, calc(100% - 64px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.hero-command h2 {
  font-size: 30px;
}

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

.hero-command div {
  min-height: 92px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.hero-command dt,
.proof-table span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-command dd {
  color: var(--ink);
  font-size: 30px;
  font-weight: 950;
}

.hero-command p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.intro-band,
.section,
.cta-band,
.page-shell {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.05fr;
  align-items: center;
  gap: 44px;
  padding: 86px 0;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.section-photo,
.field-photo {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.section-photo {
  height: min(34vw, 430px);
}

.field-photo {
  height: min(38vw, 470px);
}

.section-photo img,
.field-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.split-section,
.dark-section,
.evidence-section,
.foundation-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.section-copy {
  max-width: 560px;
}

.section-copy p {
  margin-top: 20px;
}

.workflow-grid,
.service-strip,
.use-case-grid,
.principle-grid,
.pilot-grid {
  display: grid;
  gap: 14px;
}

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

.workflow-grid article,
.service-strip article,
.use-case-grid article,
.principle-grid article,
.pilot-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 31, 24, 0.06);
}

.workflow-grid article:nth-child(1),
.service-strip article:nth-child(1) {
  border-top: 5px solid var(--green);
}

.workflow-grid article:nth-child(2),
.service-strip article:nth-child(2) {
  border-top: 5px solid var(--orange);
}

.workflow-grid article:nth-child(3),
.service-strip article:nth-child(3) {
  border-top: 5px solid var(--blue);
}

.workflow-grid article:nth-child(4),
.service-strip article:nth-child(4) {
  border-top: 5px solid var(--yellow);
}

.workflow-grid span,
.service-strip span,
.principle-grid span,
.pilot-grid span {
  display: inline-flex;
  min-width: 36px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 5px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.workflow-grid h3,
.service-strip h2,
.use-case-grid h2,
.principle-grid h2 {
  font-size: 26px;
}

.workflow-grid p,
.service-strip p,
.use-case-grid p,
.principle-grid p,
.pilot-grid p,
.timeline span,
.foundation-list span,
.evidence-list span,
.pilot-checklist li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.workflow-grid p,
.service-strip p,
.use-case-grid p,
.principle-grid p,
.pilot-grid p {
  margin-top: 14px;
}

.dark-section {
  width: 100%;
  max-width: none;
  padding: 105px max(32px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--ink);
}

.dark-section .section-copy p {
  color: #bccac2;
}

.field-photo {
  border: 10px solid rgba(255, 255, 255, 0.08);
}

.evidence-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.evidence-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.evidence-list strong {
  color: var(--yellow);
  font-size: 14px;
}

.proof-table {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-table div {
  flex: 1;
  min-height: 138px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.proof-table div:last-child {
  border-right: 0;
}

.proof-table strong {
  color: var(--green-dark);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.proof-table em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

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

.foundation-list,
.timeline {
  display: grid;
  gap: 10px;
}

.foundation-list div,
.timeline div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 22px;
  border-radius: 8px;
  background: var(--cream);
}

.foundation-list div:nth-child(1),
.timeline div:nth-child(1) {
  border-left: 5px solid var(--orange);
}

.foundation-list div:nth-child(2),
.timeline div:nth-child(2) {
  border-left: 5px solid var(--green);
}

.foundation-list div:nth-child(3),
.timeline div:nth-child(3) {
  border-left: 5px solid var(--blue);
}

.foundation-list div:nth-child(4),
.timeline div:nth-child(4) {
  border-left: 5px solid var(--yellow);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 86px;
  padding: 44px;
  color: var(--white);
  border-radius: 10px;
  background: var(--ink);
}

.cta-band div {
  max-width: 760px;
}

.cta-band p {
  max-width: 720px;
  margin-top: 14px;
  color: #bccac2;
}

.cta-band .button {
  flex: 0 0 auto;
}

.site-footer {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 34px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.page-shell {
  padding-bottom: 88px;
}

.page-hero {
  min-height: 560px;
  display: grid;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 920px;
  color: var(--ink);
  font-size: 66px;
  line-height: 0.98;
}

.page-hero p {
  max-width: 760px;
  margin-top: 22px;
}

.pilot-hero .hero-actions {
  margin-top: 32px;
}

.page-hero .button.secondary {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.page-hero .button.secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.service-strip,
.use-case-grid,
.principle-grid,
.pilot-grid {
  padding: 72px 0;
}

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

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

.use-case-grid article {
  min-height: 310px;
}

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

.about-panel,
.pilot-checklist {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 60px;
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.about-panel > div,
.pilot-checklist > div {
  max-width: 520px;
}

.about-panel > p {
  width: min(560px, 100%);
}

.flush {
  border-top: 0;
  padding-top: 30px;
}

.compact {
  margin-top: 20px;
}

.pilot-checklist ul {
  width: min(520px, 100%);
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.pilot-checklist li {
  position: relative;
  min-height: 54px;
  padding: 16px 16px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.pilot-checklist li::before {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

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

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
    min-height: 42px;
    overflow-x: auto;
  }

  .hero-copy {
    width: min(700px, calc(100% - 48px));
    padding-top: 96px;
    margin-left: 24px;
  }

  h1,
  .page-hero h1 {
    font-size: 58px;
  }

  .hero-command {
    right: 24px;
    left: 24px;
    width: auto;
  }

  .intro-band,
  .split-section,
  .dark-section,
  .evidence-section,
  .foundation-section {
    grid-template-columns: 1fr;
  }

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

  .proof-table {
    flex-wrap: wrap;
  }

  .proof-table div {
    flex: 1 1 50%;
  }

  .about-panel,
  .pilot-checklist {
    display: grid;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 0 18px;
  }

  .brand img {
    width: 132px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

  .nav-links {
    gap: 16px;
    font-size: 12px;
  }

  .hero-section {
    min-height: 940px;
  }

  .hero-copy {
    width: calc(100% - 36px);
    padding: 78px 0 330px;
    margin-left: 18px;
  }

  h1,
  .page-hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy > p:not(.eyebrow),
  .section-copy p,
  .intro-copy p,
  .page-hero p,
  .cta-band p,
  .about-panel > p {
    font-size: 16px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(9, 23, 18, 0.9) 0%, rgba(9, 23, 18, 0.72) 54%, rgba(9, 23, 18, 0.42) 100%);
  }

  .hero-command {
    bottom: 22px;
    right: 18px;
    left: 18px;
    padding: 18px;
  }

  .hero-command dl {
    grid-template-columns: 1fr;
  }

  .hero-command div {
    min-height: 72px;
  }

  .section-photo,
  .field-photo {
    height: 270px;
  }

  .intro-band,
  .section,
  .cta-band,
  .page-shell {
    width: min(100% - 36px, 1180px);
  }

  .intro-band,
  .section,
  .service-strip,
  .use-case-grid,
  .principle-grid,
  .pilot-grid,
  .about-panel,
  .pilot-checklist {
    padding: 58px 0;
  }

  .workflow-grid,
  .service-strip,
  .use-case-grid,
  .principle-grid,
  .pilot-grid,
  .foundation-list div,
  .timeline div,
  .evidence-list div {
    grid-template-columns: 1fr;
  }

  .workflow-grid article,
  .service-strip article,
  .use-case-grid article,
  .principle-grid article,
  .pilot-grid article {
    min-height: 0;
  }

  .dark-section {
    padding: 64px 18px;
  }

  .proof-table {
    display: grid;
  }

  .proof-table div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-table div:last-child {
    border-bottom: 0;
  }

  .cta-band {
    display: grid;
    padding: 28px;
  }

  .site-footer {
    min-height: 120px;
    display: grid;
    align-content: center;
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
