:root {
  --ink: #19211f;
  --muted: #5c6763;
  --soft: #eef3ef;
  --paper: #f7f8f5;
  --white: #ffffff;
  --green: #267944;
  --green-deep: #0d3f2a;
  --amber: #e3a127;
  --aqua: #2a7c88;
  --line: #dbe2dc;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(14, 31, 23, 0.14);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--amber);
  color: var(--ink);
  border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 32px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(25,33,31,0.09);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--green-deep);
  border-radius: var(--radius);
  overflow: hidden;
}
.brand-mark span {
  position: absolute;
  width: 58px;
  height: 3px;
  background: var(--amber);
  transform: rotate(-28deg);
}
.brand-mark strong {
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0;
}
.brand-text strong,
.brand-text small { display: block; }
.brand-text strong { font-size: 1rem; line-height: 1.1; }
.brand-text small { color: var(--muted); font-size: 0.76rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  padding: 10px 11px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-deep);
  background: var(--soft);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100svh - 48px));
  color: var(--white);
  overflow: hidden;
}
.page-hero.compact { min-height: 520px; }
.hero-img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-img {
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 31, 23, 0.92) 0%, rgba(11, 31, 23, 0.76) 46%, rgba(11, 31, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 31, 23, 0.22), rgba(11, 31, 23, 0.22));
}
.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}
.compact h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}
.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--amber);
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.button.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,0.58);
}
.button.secondary.dark {
  color: var(--green-deep);
  border-color: var(--line);
}
.signal-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 48px));
  margin: -42px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.signal-strip div {
  min-height: 92px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}
.signal-strip div:last-child { border-right: 0; }
.signal-strip strong {
  display: block;
  color: var(--green-deep);
  font-size: 1.35rem;
  line-height: 1.1;
}
.signal-strip span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}
.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-heading.wide { max-width: 930px; }
h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}
h3 {
  margin: 0 0 9px;
  font-size: 1.25rem;
  line-height: 1.16;
  letter-spacing: 0;
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}
.lede-stack {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.07rem;
}
.lede-stack p { margin: 0; }
.lede-stack.light { color: rgba(255,255,255,0.84); }
.intro { padding-top: 104px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.audience-card {
  display: grid;
  align-content: space-between;
  min-height: 360px;
  padding: 30px;
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.audience-card.government {
  background: linear-gradient(135deg, rgba(13,63,42,0.96), rgba(42,124,136,0.86)), url("/assets/img/surveyor-field.jpg") center/cover;
}
.audience-card.business {
  background: linear-gradient(135deg, rgba(25,33,31,0.93), rgba(38,121,68,0.78)), url("/assets/img/drone-survey.jpg") center/cover;
}
.audience-card p { color: rgba(255,255,255,0.86); }
.audience-card h3 { font-size: clamp(1.6rem, 3vw, 2.35rem); max-width: 580px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  color: var(--green-deep);
  font-weight: 900;
  text-decoration: none;
}
.audience-card .text-link,
.proof-band .text-link { color: var(--white); }
.process-section {
  color: var(--white);
  background: var(--green-deep);
}
.process-inner { width: min(var(--max), calc(100% - 48px)); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-card {
  min-height: 250px;
  padding: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
}
.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  color: var(--ink);
  background: var(--amber);
  border-radius: var(--radius);
  font-weight: 900;
}
.process-card p { margin: 0; color: rgba(255,255,255,0.82); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.info-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.info-card p,
.product-card p,
.case-card p,
.policy p,
.contact-details p,
.footer-main p { margin: 0; color: var(--muted); }
.icon-shell {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--green-deep);
  background: var(--soft);
  border-radius: var(--radius);
}
.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 520px;
  background: var(--ink);
  color: var(--white);
}
.proof-copy {
  align-self: center;
  width: min(620px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  padding: 80px 0;
}
.proof-copy p:last-child { color: rgba(255,255,255,0.84); font-size: 1.08rem; }
.proof-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.product-list-section { padding-top: 10px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.product-card,
.case-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.74fr) minmax(0, 1.26fr);
  min-height: 330px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-media {
  display: grid;
  place-items: center;
  background: var(--paper);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-body,
.case-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}
.tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  color: var(--green-deep);
  background: var(--soft);
  border-radius: var(--radius);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.tick-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.tick-list.columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}
.tick-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}
.split-copy .tick-list li,
.case-card .tick-list li { color: var(--muted); }
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  transform: translateY(-50%);
}
.quote-panel,
.site-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 88px;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-deep), var(--aqua));
  border-radius: var(--radius);
}
.quote-panel p,
.site-cta p { margin: 8px 0 0; color: rgba(255,255,255,0.84); }
.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.split-copy {
  align-self: center;
  padding: 46px;
}
.split-copy p { color: var(--muted); }
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.case-card {
  grid-template-columns: 1fr;
}
.case-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 56px;
  align-items: start;
}
.portrait-panel {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.portrait-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.portrait-panel div { padding: 22px; }
.portrait-panel p { margin: 0; color: var(--muted); }
.about-main p {
  color: var(--muted);
  font-size: 1.06rem;
}
.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.credential-grid div {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.credential-grid strong,
.credential-grid span { display: block; }
.credential-grid span { margin-top: 6px; color: var(--muted); font-size: 0.94rem; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: start;
}
.detail-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}
.detail-list a {
  display: block;
  padding: 16px;
  color: var(--green-deep);
  background: var(--soft);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}
.contact-note {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-note p { margin-top: 6px; }
.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}
label span { font-size: 0.9rem; }
input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cdd8d0;
  border-radius: var(--radius);
  font: inherit;
}
textarea { resize: vertical; min-height: 150px; }
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(227,161,39,0.35);
  border-color: var(--green);
}
.hp-field { display: none; }
.form-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.form-button { width: fit-content; }
.policy {
  max-width: 860px;
}
.policy h2 {
  margin-top: 34px;
  font-size: 1.7rem;
}
.policy h2:first-child { margin-top: 0; }
.policy a { color: var(--green-deep); font-weight: 900; }
.not-found {
  display: grid;
  place-items: center;
  min-height: 72svh;
  padding: 48px 24px;
  background: var(--paper);
}
.not-found div { max-width: 760px; }
.not-found h1 {
  color: var(--green-deep);
  font-size: clamp(3rem, 8vw, 6rem);
}
.not-found p { color: var(--muted); font-size: 1.1rem; }
.site-cta {
  margin-top: 0;
  margin-bottom: 0;
  transform: translateY(46px);
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(160px, 0.55fr) minmax(190px, 0.65fr);
  gap: 32px;
  padding: 104px max(24px, calc((100% - var(--max)) / 2)) 30px;
  color: rgba(255,255,255,0.78);
  background: var(--ink);
}
.footer-brand .brand-text strong,
.footer-brand .brand-text small { color: var(--white); }
.footer-main p { margin-top: 18px; color: rgba(255,255,255,0.72); max-width: 520px; }
.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  grid-column: 1 / -1;
  padding-top: 24px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.88rem;
}
@media (max-width: 1060px) {
  .feature-grid,
  .feature-grid.four,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .site-header { min-height: 68px; padding: 0 18px; }
  .brand-text small { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 10px; }
  .page-hero { min-height: 72svh; }
  .page-hero.compact { min-height: 430px; }
  .hero-shade { background: linear-gradient(90deg, rgba(11,31,23,0.92), rgba(11,31,23,0.68)); }
  .hero-inner,
  .section,
  .signal-strip,
  .quote-panel,
  .site-cta,
  .split-band { width: min(100% - 32px, var(--max)); }
  .signal-strip {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
  .signal-strip div { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .signal-strip div:last-child { border-bottom: 0; }
  .intro { padding-top: 64px; }
  .section { padding: 64px 0; }
  .two-col,
  .audience-grid,
  .proof-band,
  .split-band,
  .about-layout,
  .contact-layout,
  .quote-panel,
  .site-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .proof-copy {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
    padding: 64px 0;
  }
  .proof-image img { min-height: 320px; }
  .split-copy { padding: 28px; }
  .split-media img { min-height: 320px; }
  .portrait-panel { position: static; }
  .site-cta { transform: translateY(32px); }
  .site-footer { padding-top: 88px; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 620px) {
  h1 { font-size: clamp(2.5rem, 13vw, 4.2rem); }
  .compact h1 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
  .feature-grid,
  .feature-grid.four,
  .process-grid,
  .case-grid,
  .credential-grid,
  .form-grid,
  .tick-list.columns,
  .product-card { grid-template-columns: 1fr; }
  .product-media img { aspect-ratio: 16 / 10; }
  .audience-card { min-height: 300px; padding: 24px; }
  .quote-panel,
  .site-cta,
  .contact-form { padding: 24px; }
}
