:root {
  --ink: #15261d;
  --ink-soft: #526159;
  --forest: #123c2d;
  --forest-deep: #08271c;
  --forest-mid: #286148;
  --sage: #9eb9a6;
  --lime: #74d14c;
  --cream: #f0ebdd;
  --cream-deep: #e6dfcc;
  --paper: #fbfaf5;
  --brand-navy: #163863;
  --brand-leaf: #7dae35;
  --brand-leaf-text: #4f791f;
  --brand-cyan: #069cc4;
  --surface-green: #187a3e;
  --sky: #67aee8;
  --line: rgba(21, 38, 29, .18);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 12px 12px 0 rgba(8, 39, 28, .08);
  --radius-lg: 10px;
  --radius-md: 4px;
  --wrap: 1220px;
  --body-size: 21px;
  --body-leading: 1.67;
}

/* FAQ */
.faq-hero { min-height: 720px; background: linear-gradient(135deg, var(--paper) 0 62%, rgba(230,223,204,.58) 100%); }
.faq-hero .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr); gap: 72px; }
.faq-hero h1 { max-width: 780px; font-size: clamp(60px, 7.2vw, 98px); }
.faq-hero h1 em { color: var(--brand-navy); }
.faq-hero-media { margin: 0; background: var(--cream); border: 1px solid var(--line); border-radius: 3px 34px 3px 3px; box-shadow: var(--shadow); overflow: hidden; }
.faq-hero-media { aspect-ratio: 1 / 1; align-self: center; }
.faq-hero-media img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; }
.faq-help { border-block: 1px solid var(--line); }
.faq-help-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.faq-help-card { min-height: 410px; display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1fr); color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 3px 28px 3px 3px; text-decoration: none; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease; }
.faq-help-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.faq-help-card > img { width: 100%; height: 100%; min-height: 410px; object-fit: cover; }
.faq-help-card > div { padding: 34px 31px; display: flex; flex-direction: column; }
.faq-help-card small, .faq-group header small { color: var(--brand-navy); font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.faq-help-card h3 { margin: 13px 0 16px; font-size: clamp(35px, 3.2vw, 48px); line-height: .98; }
.faq-help-card p { color: var(--ink-soft); font-size: 17px; line-height: 1.5; }
.faq-help-card strong { margin-top: auto; padding-top: 24px; color: var(--forest-mid); font-size: 14px; letter-spacing: .03em; }
.faq-library { background: var(--paper); }
.faq-library-head { max-width: 820px; margin-bottom: 52px; }
.faq-library-head h2 { margin: 14px 0 16px; font-size: clamp(54px, 7vw, 92px); line-height: .94; }
.faq-library-head p { color: var(--ink-soft); }
.faq-groups { display: grid; gap: 18px; }
.faq-group { display: grid; grid-template-columns: minmax(250px, .58fr) minmax(0, 1.42fr); border: 1px solid var(--line); border-radius: 3px 30px 3px 3px; overflow: hidden; }
.faq-group > header { padding: 38px 34px; }
.faq-group > header h3 { margin: 94px 0 0; font-size: clamp(38px, 4vw, 58px); line-height: .96; }
.faq-group-forest > header { color: white; background: var(--forest); }
.faq-group-forest > header small { color: var(--lime); }
.faq-group-blue > header { background: #dfeafa; }
.faq-group-green > header { background: #e4f1df; }
.faq-group-paper > header { background: var(--cream); }
.faq-list { background: white; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { min-height: 102px; padding: 27px 72px 27px 31px; position: relative; display: flex; align-items: center; cursor: pointer; list-style: none; color: var(--ink); font-size: clamp(20px, 2vw, 26px); font-weight: 760; line-height: 1.25; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; width: 34px; height: 34px; position: absolute; top: 50%; right: 28px; display: grid; place-items: center; color: var(--forest); background: var(--cream); border-radius: 50%; font-size: 24px; font-weight: 500; line-height: 1; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; color: white; background: var(--forest); }
.faq-list details[open] summary { padding-bottom: 17px; }
.faq-list details p { max-width: 800px; margin: 0; padding: 0 70px 31px 31px; color: var(--ink-soft); font-size: 18px; line-height: 1.55; }
.faq-list details a { color: var(--forest-mid); font-weight: 700; }
.faq-close .eyebrow { color: var(--lime); }
.faq-close .button-row { margin-top: 34px; }

@media (max-width: 1080px) {
  .faq-hero .hero-grid { grid-template-columns: 1fr; }
  .faq-hero-media { width: min(100%, 680px); }
  .faq-help-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .faq-hero { min-height: auto; padding-top: 68px; }
  .faq-hero h1 { font-size: clamp(50px, 14vw, 70px); }
  .faq-help-card { min-height: 0; grid-template-columns: 1fr; }
  .faq-help-card > img { min-height: 0; aspect-ratio: 1 / .8; }
  .faq-help-card > div { min-height: 300px; padding: 27px 24px; }
  .faq-group { grid-template-columns: 1fr; }
  .faq-group > header { padding: 28px 24px; }
  .faq-group > header h3 { margin-top: 40px; font-size: 42px; }
  .faq-list summary { min-height: 92px; padding: 24px 58px 24px 23px; font-size: 21px; }
  .faq-list summary::after { right: 20px; }
  .faq-list details p { padding: 0 24px 28px; font-size: 17px; }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Verdana, Arial, sans-serif;
  font-size: var(--body-size);
  line-height: var(--body-leading);
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
.wrap { width: min(calc(100% - 48px), var(--wrap)); margin-inline: auto; }
main[id], main [id] { scroll-margin-top: 142px; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 10px 15px; color: white; background: var(--forest-deep); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:where(a, button, input, textarea, select):focus-visible { outline: 3px solid var(--brand-cyan); outline-offset: 4px; box-shadow: 0 0 0 2px var(--paper); }

.site-head {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  color: var(--forest);
  background: rgba(251, 250, 245, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
}
.site-head .head-row { min-height: 78px; position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; overflow: visible; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { width: 42px; height: 42px; }
.site-footer .brand img {
  width: 52px;
  height: 52px;
  padding: 7px;
  box-sizing: border-box;
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 8px 24px rgba(0,0,0,.16);
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 16px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 6px; color: var(--forest-mid); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.primary-nav { position: relative; z-index: 1; justify-self: center; display: flex; align-items: center; gap: 2px; overflow: visible; }
.primary-nav { scrollbar-width: none; }
.primary-nav::-webkit-scrollbar { display: none; }
.primary-nav a { padding: 9px 10px; border-radius: 2px 9px 2px 2px; color: var(--ink-soft); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.primary-nav > a { min-height: 34px; display: inline-flex; align-items: center; line-height: 1; }
.primary-nav a:hover { color: var(--forest-deep); background: rgba(116, 209, 76, .22); }
.primary-nav a[aria-current="page"] { color: var(--forest-deep); background: var(--lime); }
.nav-dropdown { position: relative; z-index: 2; display: flex; align-items: center; line-height: 0; }
.nav-dropdown[open] { z-index: 1001; }
.nav-dropdown summary {
  min-height: 34px;
  padding: 9px 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-soft);
  border-radius: 2px 9px 2px 2px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1;
  list-style: none;
  text-transform: uppercase;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary span { font-size: 14px; transition: transform .16s ease; }
.nav-dropdown summary:hover, .nav-dropdown[open] summary { color: var(--forest-deep); background: rgba(116, 209, 76, .22); }
.nav-dropdown.is-current summary { color: var(--forest-deep); background: var(--lime); }
.nav-dropdown[open] summary span { transform: rotate(180deg); }
.nav-dropdown-menu {
  width: 230px;
  padding: 8px;
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  z-index: 1002;
  display: grid;
  gap: 2px;
  background: rgba(251, 250, 245, .99);
  border: 1px solid var(--line);
  border-radius: 2px 15px 2px 2px;
  box-shadow: 0 18px 45px rgba(4, 44, 32, .16);
}
.nav-dropdown-menu a { width: 100%; padding: 12px 13px; }
.head-actions { display: flex; align-items: center; gap: 8px; }
.head-cta { min-height: 50px; padding: 0 19px; display: inline-flex; align-items: center; color: white; background: var(--forest); border-radius: 2px 14px 2px 2px; font-size: 13px; font-weight: 850; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.head-cta:hover { background: var(--forest-deep); }
.head-cta-short { display: none; }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--forest-mid); font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 13px; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 6px; background: linear-gradient(to bottom, currentColor 0 2px, transparent 2px 4px, currentColor 4px 6px); opacity: .8; }
.display { font-family: "Aptos Display", "Trebuchet MS", Arial, sans-serif; font-weight: 680; letter-spacing: -.045em; }
.hero { min-height: 78vh; padding: 112px 0 88px; display: flex; align-items: center; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .78fr); gap: 75px; align-items: center; }
.hero h1 { max-width: 870px; margin: 22px 0 29px; font-size: clamp(62px, 8.4vw, 118px); line-height: .94; }
.hero h1 em { color: var(--brand-navy); font-style: normal; }
.hero .lead { max-width: 720px; margin-bottom: 0; color: var(--ink-soft); font-size: 1.08em; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 31px; }
.button { min-height: 66px; padding: 0 29px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid var(--line); border-radius: 2px 16px 2px 2px; font-size: 15px; font-weight: 850; letter-spacing: .025em; text-decoration: none; transition: background-color .18s ease, color .18s ease, border-color .18s ease; }
.button.primary { color: white; background: var(--forest); border-color: var(--forest); }
.button.primary:hover { background: var(--forest-deep); }
.button.secondary { background: rgba(255,255,255,.64); }
.button.secondary:hover { background: white; }
.button.light { color: var(--forest-deep); background: var(--lime); border-color: var(--lime); }
.button.ghost-light { color: white; border-color: var(--line-light); }

.hero-model { position: relative; min-height: 540px; padding: 22px; color: white; background: var(--forest); border-radius: 4px 32px 4px 4px; box-shadow: var(--shadow); overflow: hidden; }
.hero-model::before { content: ""; position: absolute; width: 440px; height: 440px; top: -210px; right: -170px; border: 1px solid rgba(201,223,109,.35); border-radius: 50%; box-shadow: 0 0 0 75px rgba(201,223,109,.05), 0 0 0 150px rgba(201,223,109,.025); }
.model-label { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; color: var(--sage); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.model-map { position: relative; z-index: 1; height: 390px; margin-top: 24px; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(4, 1fr); gap: 7px; }
.model-map i { position: relative; border: 1px solid var(--line-light); border-radius: 2px 8px 2px 2px; background: rgba(255,255,255,.055); }
.model-map i:nth-child(2), .model-map i:nth-child(7), .model-map i:nth-child(14) { background: rgba(201,223,109,.18); }
.model-map i:nth-child(4), .model-map i:nth-child(11) { background: rgba(22,56,99,.24); }
.model-map i::after { content: ""; position: absolute; inset: 22%; border: 1px solid rgba(158,185,166,.3); border-radius: 43% 57% 46% 54%; transform: rotate(12deg); }
.model-note { position: absolute; z-index: 2; padding: 9px 11px; color: var(--forest-deep); background: var(--lime); border-radius: 1px 7px 1px 1px; font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; font-weight: 850; }
.model-note.one { top: 34%; left: 18%; }
.model-note.two { top: 61%; right: 9%; background: var(--paper); }
.model-note.three { bottom: 8%; left: 36%; color: white; background: var(--brand-navy); }

.section { padding: 94px 0; }
.section.cream { background: var(--cream); }
.section.dark { color: white; background: var(--forest-deep); }
.section-head { display: grid; grid-template-columns: 1.15fr .6fr; gap: 38px; align-items: stretch; margin-bottom: 47px; }
.section-head h2 { max-width: 850px; margin: 12px 0 0; font-size: clamp(44px, 5.3vw, 76px); line-height: .96; }
.section-head > p { min-height: 100%; margin: 0; padding: 23px 0 0; display: flex; align-items: flex-start; color: var(--ink-soft); background: transparent; border: 0; border-top: 3px solid var(--brand-cyan); border-radius: 0; font-size: 18px; line-height: 1.5; }
.dark .section-head > p { color: #d7e8de; background: transparent; border-color: var(--lime); }
.dark .eyebrow { color: var(--lime); }

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.offer-card { min-height: 520px; padding: 28px; display: flex; flex-direction: column; color: white; background: var(--forest); border-radius: 4px 30px 4px 4px; text-decoration: none; overflow: hidden; transition: filter .18s ease; }
.offer-card:hover { filter: brightness(1.045); }
.offer-card.feed { background: #315c42; }
.offer-card.drone { background: var(--forest-deep); }
.offer-card.record { color: var(--ink); background: var(--sky); }
.offer-card.future { color: var(--ink); background: var(--lime); }
.offer-top { display: flex; justify-content: space-between; gap: 20px; color: #d7e8de; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.record .offer-top, .future .offer-top { color: var(--forest-deep); }
.offer-card h3 { min-height: 2em; margin: 6px 0 24px; font-size: clamp(40px, 3.35vw, 56px); line-height: .96; }
.offer-card p { max-width: 370px; color: rgba(255,255,255,.72); font-size: .78em; }
.record p, .future p { color: rgba(21,38,29,.75); }
.offer-visual { min-height: 160px; margin-top: auto; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 2px 14px 2px 2px; background: rgba(255,255,255,.06); overflow: hidden; }
.record .offer-visual, .future .offer-visual { border-color: var(--line); background: rgba(255,255,255,.2); }
.offer-visual .flow { width: 80%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; align-items: center; }
.offer-visual .flow i { position: relative; height: 58px; border: 1px solid currentColor; border-radius: 9px; opacity: .68; }
.offer-visual .flow i:not(:last-child)::after { content: "→"; position: absolute; right: -13px; top: 14px; z-index: 2; font-size: 16px; }
.offer-arrow { min-height: 51px; margin-top: 17px; padding: 0 2px; display: flex; align-items: center; justify-content: space-between; border: 0; border-top: 1px solid var(--line-light); border-radius: 0; background: transparent; font-size: 14px; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
.record .offer-arrow, .future .offer-arrow { border-color: var(--line); }
.offer-arrow span { font-size: 20px; }

.platform-loop { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.loop-step { min-height: 280px; padding: 26px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.loop-step small { color: var(--lime); font-size: 14px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.loop-step h3 { margin: 95px 0 12px; font-size: 27px; line-height: 1.03; }
.loop-step p { margin: 0; color: var(--sage); font-size: 18px; line-height: 1.48; }

.offer-hero { padding: 105px 0 78px; overflow: hidden; }
.offer-hero.dark { color: white; background: var(--forest-deep); }
.offer-hero.cream { background: var(--cream); }
.offer-hero .hero-grid { min-height: 650px; }
.offer-hero h1 { margin: 20px 0 26px; font-size: clamp(58px, 7.8vw, 106px); line-height: .96; }
.offer-hero h1 em { color: var(--brand-navy); font-style: normal; }
.offer-hero.dark h1 em { color: var(--lime); }
.offer-hero .lead { max-width: 690px; color: var(--ink-soft); font-size: 1.02em; }
.offer-hero.dark .lead { color: var(--sage); }
.visual-panel { min-height: 570px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 4px 34px 4px 4px; background: var(--forest); box-shadow: var(--shadow); overflow: hidden; }
.dark .visual-panel { background: rgba(255,255,255,.07); border: 1px solid var(--line-light); }
.visual-panel.photo-drone { position: relative; background: var(--forest) url('assets/drone-pasture-flight-poster-v3.jpg?v=3') center/cover; }
.visual-panel.photo-drone::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(8,39,28,.05), rgba(8,39,28,.92)); }
.visual-panel.photo-drone video { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }
.visual-panel.photo-drone > strong, .visual-panel.photo-drone > small { position: relative; z-index: 2; }
.visual-panel strong { color: white; font-size: 34px; line-height: 1.04; }
.visual-panel small { margin-top: 11px; color: #d7e8de; font-size: 14px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.drone-gallery { padding: 78px 0 86px; background: var(--paper); overflow: hidden; }
.drone-gallery-top { margin-bottom: 31px; display: flex; justify-content: space-between; gap: 42px; align-items: end; }
.drone-gallery-top h2 { max-width: 790px; margin: 18px 0 0; font-size: clamp(48px, 5.8vw, 78px); line-height: .94; }
.drone-gallery-controls { min-width: max-content; display: grid; grid-template-columns: 52px auto 52px; gap: 8px; align-items: center; }
.drone-gallery-controls button { width: 52px; height: 52px; display: grid; place-items: center; color: white; background: var(--forest); border: 0; border-radius: 2px 14px 2px 2px; cursor: pointer; font-size: 24px; }
.drone-gallery-controls button:hover { background: var(--forest-deep); }
.drone-gallery-controls button:disabled { opacity: .32; cursor: default; }
.drone-gallery-controls output { min-width: 63px; color: var(--forest); font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 12px; font-weight: 900; letter-spacing: .06em; text-align: center; }
.drone-gallery-track { display: grid; grid-auto-flow: column; grid-auto-columns: min(72vw, 620px); gap: 12px; padding: 0 0 15px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-padding-inline: 1px; scroll-snap-type: inline mandatory; scrollbar-width: thin; scrollbar-color: var(--forest-mid) var(--cream); }
.drone-gallery-track:focus-visible { outline: 3px solid var(--brand-cyan); outline-offset: 6px; }
.drone-gallery-slide { margin: 0; scroll-snap-align: start; color: white; background: var(--forest-deep); border-radius: 3px 24px 3px 3px; overflow: hidden; }
.drone-gallery-slide img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.drone-gallery-slide figcaption { min-height: 90px; padding: 19px 21px 21px; display: flex; justify-content: space-between; gap: 24px; align-items: start; }
.drone-gallery-slide figcaption strong { color: var(--lime); font-size: 13px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.drone-gallery-slide figcaption span { max-width: 320px; color: #d7e8de; font-size: 16px; line-height: 1.35; text-align: right; }
.signal-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 20px; }
.signal-row span { padding: 14px 10px; color: white; background: rgba(255,255,255,.08); border: 1px solid var(--line-light); border-radius: 9px; font-size: 14px; font-weight: 850; text-align: center; text-transform: uppercase; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.step-card { min-height: 310px; padding: 27px; display: flex; flex-direction: column; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; background: var(--paper); }
.step-card small { color: var(--brand-navy); font-size: 14px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.step-card h3 { margin: auto 0 14px; font-size: 31px; line-height: 1.02; }
.step-card p { margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.48; }
.drone-use-icon { width: 72px; height: 72px; margin: 30px 0 22px; display: grid; place-items: center; color: var(--forest); background: #e5f1df; border-radius: 2px 20px 2px 2px; }
.drone-use-icon svg { width: 46px; height: 46px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.drone-use-icon img { width: 56px; height: 56px; object-fit: contain; }
.drone-use-icon.water-icon { color: #1e6f91; background: #dceff5; }
.drone-use-icon.route-icon { color: var(--brand-navy); background: #e0eaff; }
.graphic-frame { width: min(100%, 830px); margin: 64px auto 0; padding: 8px; border: 1px solid var(--line); border-radius: 3px 24px 3px 3px; background: white; box-shadow: var(--shadow); }
.graphic-frame img { width: 100%; height: auto; border-radius: 1px 17px 1px 1px; }
.graphic-frame-direct { margin-top: 0; }
.infographic-frame { width: min(100%, 1120px); padding: 0; overflow: hidden; }
.infographic-frame img { display: block; border-radius: 1px 18px 1px 1px; }
.pasture-analysis-visual { background: var(--cream-deep); }
.future-layers-visual { margin-top: 54px; }

.future-ladder { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.future-step { min-height: 310px; padding: 24px; position: relative; display: flex; flex-direction: column; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; background: white; }
.future-step span { padding-right: 92px; color: var(--brand-navy); font-size: 14px; font-weight: 850; }
.future-step-media { width: 78px; aspect-ratio: 1; margin: 0; position: absolute; top: 19px; right: 19px; overflow: hidden; border: 1px solid rgba(21,38,29,.18); border-radius: 2px 16px 2px 2px; background: var(--cream); box-shadow: 5px 5px 0 rgba(8,39,28,.055); }
.future-step-media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 46%; filter: saturate(.88) contrast(1.02); }
.future-step:nth-child(2) .future-step-media img { object-position: center 42%; }
.future-step:nth-child(3) .future-step-media img { object-position: center 49%; }
.future-step:nth-child(4) .future-step-media img { object-position: center 50%; }
.future-step h3 { margin: auto 0 13px; font-size: 28px; line-height: 1.02; }
.future-step p { margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.48; }
.future-framework { margin-top: 44px; }
.future-framework .future-step:first-child { color: white; background: var(--forest); border-color: var(--forest); }
.future-framework .future-step:first-child span { color: var(--lime); }
.future-framework .future-step:first-child p { color: #d7e8de; }
.future-framework .future-step:nth-child(3) { background: #e8f3e3; }
.future-framework .future-step:nth-child(4) { background: #e8f0fb; }
.future-reporting-callout { margin-top: 12px; padding: 36px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 44px; align-items: end; color: white; background: var(--brand-navy); border-radius: 3px 26px 3px 3px; }
.future-reporting-callout span { color: #d8e7ff; font-size: 14px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.future-reporting-callout h3 { margin: 32px 0 0; font-size: clamp(42px, 4.5vw, 64px); line-height: .96; }
.future-reporting-callout p { max-width: 660px; margin: 0; color: #eef4ff; font-size: 20px; line-height: 1.5; }
.future-layers-visual figcaption { padding: 22px 24px 24px; color: var(--ink-soft); background: white; font-size: 18px; line-height: 1.45; }

.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.story-card { min-height: 380px; padding: 28px 5px; display: flex; flex-direction: column; border: 0; border-top: 3px solid var(--forest); border-radius: 0; background: transparent; text-decoration: none; overflow: hidden; transition: background-color .18s ease; }
.story-media { width: 100%; aspect-ratio: 1; margin: 0 0 28px; position: relative; isolation: isolate; overflow: hidden; background: #f7f1e5; border: 1px solid var(--line); border-radius: 2px 28px 2px 2px; transition: transform .2s ease; }
.story-media img { width: 100%; height: 100%; display: block; object-fit: cover; transform: scale(1.012); }
.stories-library .story-media::after { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(112deg, transparent 34%, rgba(255,255,255,.14) 48%, transparent 60%); transform: translateX(-115%); }
.story-icon { width: 86px; height: 86px; margin-bottom: 34px; display: grid; place-items: center; color: var(--forest); background: #e6f4e5; border-radius: 2px 24px 2px 2px; }
.story-icon svg { width: 54px; height: 54px; fill: none; stroke: currentColor; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.story-card small { color: var(--brand-navy); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.story-card h3 { margin: 17px 0 13px; font-size: clamp(32px, 3vw, 44px); line-height: .98; }
.story-card p { max-width: 360px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.48; }
.story-card::after { content: "Read story  ↗"; margin-top: auto; padding-top: 25px; color: var(--forest-mid); font-size: 13px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.story-card:hover { background: rgba(255,255,255,.48); }
.story-card:hover .story-media { transform: translateY(-3px); }
.story-card:hover .story-icon { transform: rotate(-3deg); }
.story-card-green { border-top-color: #347b22; }
.story-card-green .story-icon { color: #155d38; background: #d9f1ce; }
.story-card-blue { border-top-color: var(--brand-navy); }
.story-card-blue .story-icon { color: var(--brand-navy); background: #dbe9ff; }
.story-card-lime { border-top-color: var(--brand-leaf-text); }
.story-card-lime .story-icon { color: #347b22; background: #dff4c7; }
.story-card-sky { border-top-color: var(--brand-cyan); }
.story-card-sky .story-icon { color: #247a9a; background: #d3f0fa; }
.story-card-earth { border-top-color: #765d24; }
.story-card-earth .story-icon { color: #765d24; background: #eee1b9; }
.story-grid-featured .story-card { display: grid; grid-template-columns: 86px minmax(0, 1fr); grid-template-rows: auto auto auto 1fr auto; column-gap: 22px; align-items: start; }
.story-grid-featured .story-icon { grid-column: 1; grid-row: 1; margin: 0; box-shadow: inset 0 0 0 1px rgba(21,38,29,.06); }
.story-grid-featured .story-card small { grid-column: 2; grid-row: 1; align-self: center; }
.story-grid-featured .story-card h3 { grid-column: 1 / -1; grid-row: 2; margin: 34px 0 13px; }
.story-grid-featured .story-card p { grid-column: 1 / -1; grid-row: 3; }
.story-grid-featured .story-card::after { grid-column: 1 / -1; grid-row: 5; }
.story-grid-featured-media .story-card { min-height: 610px; padding: 22px; display: flex; border: 1px solid var(--line); border-top-width: 3px; border-radius: 3px 26px 3px 3px; background: rgba(255,255,255,.54); box-shadow: 0 16px 42px rgba(8,49,39,.055); }
.story-grid-featured-media .story-card:hover { background: white; transform: translateY(-2px); }
.story-grid-featured-media .story-media { margin-bottom: 26px; }
.story-grid-featured-media .story-card small,
.story-grid-featured-media .story-card h3,
.story-grid-featured-media .story-card p,
.story-grid-featured-media .story-card::after { grid-column: auto; grid-row: auto; }

.about-hero .hero-grid { grid-template-columns: minmax(0, 1.04fr) minmax(360px, .76fr); gap: 72px; }
.about-hero h1 { max-width: 760px; }
.about-hero .lead { max-width: 700px; }
.about-hero-art { width: min(100%, 590px); aspect-ratio: 1; margin: 0; justify-self: end; overflow: hidden; border: 1px solid var(--line); border-radius: 3px 34px 3px 3px; background: var(--cream); box-shadow: 14px 14px 0 rgba(8,49,39,.075); }
.about-hero-art img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-principles article { min-width: 0; min-height: 330px; padding: 31px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.36); }
.about-principles small { color: var(--brand-navy); font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.about-principles article > div { margin-top: auto; padding-top: 72px; }
.about-principles h3 { margin: 0 0 13px; font-size: clamp(31px, 3vw, 43px); line-height: .98; }
.about-principles p { max-width: 500px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.5; }
.about-story-head { margin-bottom: 50px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.about-story-head h2 { max-width: 930px; margin: 14px 0 0; font-size: clamp(52px, 6.8vw, 94px); line-height: .94; }
.story-all-link { min-height: 62px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 2px 16px 2px 2px; background: rgba(255,255,255,.6); font-size: 15px; font-weight: 850; text-decoration: none; }
.story-all-link:hover { background: white; }
.about-belief { padding-block: 118px; }
.about-belief-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(430px, .9fr); gap: 90px; align-items: center; }
.about-belief h2 { max-width: 760px; margin: 20px 0 0; font-size: clamp(55px, 6.5vw, 88px); line-height: .95; }
.about-belief h2 em { color: var(--lime); font-style: normal; }
.about-belief-grid > div:first-child > p { max-width: 660px; margin: 30px 0 0; color: var(--sage); font-size: 20px; line-height: 1.55; }
.about-context-art { width: min(100%, 520px); aspect-ratio: 1; display: block; justify-self: end; overflow: hidden; border: 1px solid var(--line-light); border-radius: 2px 44px 2px 2px; background: var(--cream); box-shadow: 18px 18px 0 rgba(255,255,255,.05); }
.about-context-art img { width: 100%; height: 100%; display: block; object-fit: cover; }

@keyframes story-sprite-idle {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.012); }
  25% { transform: translate3d(0, -3px, 0) scale(1.018); }
  50% { transform: translate3d(2px, -3px, 0) scale(1.018); }
  75% { transform: translate3d(2px, 0, 0) scale(1.014); }
}
@keyframes story-sprite-glint {
  0%, 64% { transform: translateX(-115%); }
  82%, 100% { transform: translateX(115%); }
}
@media (prefers-reduced-motion: no-preference) {
  .stories-library .story-media img { animation: story-sprite-idle 7.2s ease-in-out infinite; }
  .stories-library .story-card:nth-child(2n) .story-media img { animation-delay: -1.8s; }
  .stories-library .story-card:nth-child(3n) .story-media img { animation-delay: -3.6s; }
  .stories-library .story-media::after { animation: story-sprite-glint 9.5s ease-in-out infinite; }
  .story-grid-featured-media .story-media img { animation: story-sprite-idle 7.2s ease-in-out infinite; }
  .story-grid-featured-media .story-card:nth-child(2) .story-media img { animation-delay: -1.8s; }
  .story-grid-featured-media .story-card:nth-child(3) .story-media img { animation-delay: -3.6s; }
}
.signal-source-system { width: min(100%, 560px); aspect-ratio: 14 / 13; position: relative; justify-self: end; border: 1px solid var(--line-light); border-radius: 3px 34px 3px 3px; background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.012) 55%), radial-gradient(circle at 72% 50%, rgba(116,209,76,.1), transparent 38%); box-shadow: inset 0 0 80px rgba(6,28,22,.2); overflow: hidden; }
.signal-source-system::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 52px 52px; -webkit-mask-image: linear-gradient(90deg, transparent, black 25%, black); mask-image: linear-gradient(90deg, transparent, black 25%, black); }
.signal-source-heading { position: absolute; z-index: 3; top: 7%; right: 6%; left: 6%; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.signal-source-heading span { color: var(--sage); }
.signal-source-heading strong { color: white; }
.signal-source-heading i { height: 1px; display: block; background: linear-gradient(90deg, rgba(158,194,177,.24), rgba(116,209,76,.7)); }
.signal-source-flow { width: 100%; height: 100%; position: absolute; inset: 0; }
.signal-source-flow path { fill: none; stroke: rgba(116,209,76,.35); stroke-width: 1.6; stroke-dasharray: 4 8; animation: signal-route-stream 9s linear infinite; }
.signal-source-flow path:nth-child(even) { stroke: rgba(91,166,232,.34); }
.signal-packet { filter: drop-shadow(0 0 8px currentColor); }
.signal-packet-lime { color: var(--lime); fill: var(--lime); }
.signal-packet-sky { color: var(--sky); fill: var(--sky); }
.signal-packet-cream { color: var(--cream); fill: var(--cream); }
.signal-inputs { position: absolute; inset: 0; z-index: 2; }
.signal-inputs span { min-width: 118px; min-height: 42px; position: absolute; top: var(--slot-y); left: 4.5%; padding: 0 13px; display: flex; align-items: center; gap: 10px; color: white; background: rgba(4,34,26,.84); border: 1px solid rgba(255,255,255,.17); border-radius: 2px 12px 2px 2px; font-size: 11px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; transform: translateY(-50%); }
.signal-inputs i { width: 8px; height: 8px; flex: 0 0 8px; display: block; background: var(--signal); border-radius: 50%; box-shadow: 0 0 0 4px rgba(116,209,76,.12); }
.signal-source-card { width: 32%; min-height: 224px; position: absolute; z-index: 3; top: 50%; right: 3.2%; padding: 23px 20px; display: flex; flex-direction: column; justify-content: center; color: var(--forest-deep); background: var(--lime); border-radius: 2px 28px 2px 2px; box-shadow: 0 0 0 10px rgba(116,209,76,.07), 0 20px 44px rgba(3,22,17,.3); transform: translateY(-50%); }
.signal-source-card::before { content: ""; position: absolute; inset: -1px; border: 1px solid rgba(204,235,103,.7); border-radius: inherit; animation: signal-source-receive 2.8s ease-out infinite; }
.signal-source-card small { margin-bottom: 17px; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.signal-source-card strong { font-size: clamp(27px, 3.5vw, 43px); line-height: .86; letter-spacing: -.055em; }
.signal-source-card span { margin-top: 23px; padding-top: 13px; border-top: 1px solid rgba(4,34,26,.25); font-size: 10px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
@keyframes signal-route-stream { to { stroke-dashoffset: -96; } }
@keyframes signal-source-receive { 0%, 45% { opacity: 0; transform: scale(.96); } 70% { opacity: .65; } 100% { opacity: 0; transform: scale(1.09); } }
.vision-hero-shot img { object-position: 28% center; }
.vision-signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.vision-signal-card { min-height: 360px; padding: 28px; display: grid; grid-template-columns: minmax(0, 1fr) 96px; grid-template-rows: auto 1fr auto; column-gap: 20px; border: 1px solid var(--line); border-radius: 2px 22px 2px 2px; background: white; }
.vision-signal-card span { color: var(--brand-navy); font-size: 14px; font-weight: 900; letter-spacing: .08em; }
.vision-signal-card > span:first-child { grid-column: 1; grid-row: 1; align-self: start; padding-top: 4px; }
.vision-signal-card h3 { grid-column: 1 / -1; grid-row: 2; align-self: end; margin: 34px 0 15px; font-size: clamp(36px, 3.5vw, 52px); line-height: .98; }
.vision-signal-card p { grid-column: 1 / -1; grid-row: 3; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.5; }
.vision-symbol { width: 84px; height: 84px; position: relative; flex: 0 0 84px; display: block; color: var(--forest); background: #e8f3e3; border-radius: 2px 22px 2px 2px; box-shadow: inset 0 0 0 1px rgba(21,38,29,.06); overflow: hidden; }
.vision-symbol i, .vision-symbol::before, .vision-symbol::after { content: ""; position: absolute; display: block; }
.vision-symbol-art { display: grid; place-items: center; }
.vision-symbol-art::before, .vision-symbol-art::after { display: none; }
.vision-symbol-art img { width: 66px; height: 66px; object-fit: contain; }
.vision-symbol-scene { width: 96px; height: 96px; flex-basis: 96px; background: #f8f2e4; border-radius: 2px 24px 2px 2px; box-shadow: inset 0 0 0 1px rgba(21,38,29,.08), 0 7px 16px rgba(17,48,37,.08); }
.vision-symbol-scene img { width: 100%; height: 100%; object-fit: cover; }
.vision-signal-card .vision-symbol { grid-column: 2; grid-row: 1; justify-self: end; margin: 0; color: var(--forest); font-size: 0; letter-spacing: 0; }
.vision-signal-card:nth-child(2) .vision-symbol { color: var(--brand-navy); background: #e4edfb; }
.vision-signal-card:nth-child(3) .vision-symbol { color: #68521f; background: #f3e9c9; }
.vision-symbol-field i { width: 44px; height: 27px; top: 28px; left: 20px; border: 2px solid currentColor; border-radius: 44% 56% 40% 60%; transform: rotate(-8deg); }
.vision-symbol-field::before { width: 31px; height: 20px; top: 18px; left: 30px; border: 2px solid currentColor; border-radius: 52% 48% 62% 38%; opacity: .55; transform: rotate(13deg); }
.vision-symbol-field::after { width: 28px; height: 2px; right: 13px; bottom: 20px; background: currentColor; border-radius: 999px; opacity: .45; transform: rotate(-12deg); }
.vision-symbol-context i { width: 14px; height: 14px; top: 35px; left: 35px; background: currentColor; border-radius: 50%; box-shadow: 0 0 0 9px rgba(29,104,216,.16), 0 0 0 18px rgba(29,104,216,.08); }
.vision-symbol-context::before, .vision-symbol-context::after { background: currentColor; border-radius: 999px; opacity: .55; }
.vision-symbol-context::before { width: 2px; height: 54px; top: 15px; left: 41px; }
.vision-symbol-context::after { width: 54px; height: 2px; top: 41px; left: 15px; }
.vision-symbol-trail i { width: 10px; height: 10px; top: 48px; left: 17px; background: currentColor; border-radius: 50%; box-shadow: 24px -25px 0 currentColor, 48px -8px 0 currentColor; }
.vision-symbol-trail::before { width: 31px; height: 2px; top: 43px; left: 22px; background: currentColor; opacity: .55; transform: rotate(-43deg); transform-origin: left center; }
.vision-symbol-trail::after { width: 30px; height: 2px; top: 31px; left: 45px; background: currentColor; opacity: .55; transform: rotate(35deg); transform-origin: left center; }
.vision-loop-section { padding-block: 118px; }
.vision-loop-graphic { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding: 28px 24px 18px; border: 1px solid var(--line-light); border-radius: 3px 24px 3px 3px; background: rgba(255,255,255,.035); overflow: hidden; }
.vision-loop-graphic::before { content: ""; height: 2px; position: absolute; top: 77px; right: 10%; left: 10%; background: rgba(116,209,76,.45); }
.vision-loop-graphic::after { content: "↻"; width: 42px; height: 42px; position: absolute; top: 56px; right: 3.5%; display: grid; place-items: center; color: var(--forest-deep); background: var(--lime); border-radius: 50%; font-size: 24px; font-weight: 900; }
.vision-loop-node { position: relative; z-index: 1; min-width: 0; padding: 0 10px 22px; text-align: center; }
.vision-loop-node b { display: block; margin-bottom: 16px; color: var(--sage); font-size: 12px; letter-spacing: .1em; }
.vision-loop-node i { width: 22px; height: 22px; margin: 0 auto 26px; display: block; background: var(--forest-deep); border: 3px solid var(--lime); border-radius: 50%; box-shadow: 0 0 0 7px var(--forest-deep); }
.vision-loop-node span { color: white; font-family: "Aptos Display", "Trebuchet MS", Arial, sans-serif; font-size: clamp(22px, 2.2vw, 32px); font-weight: 680; letter-spacing: -.035em; }
.vision-layers { margin-top: 54px; }
.vision-time-art, .vision-many-hands-art { overflow: hidden; background: #f8f2e4; }
.vision-time-art img, .vision-many-hands-art img { width: 100%; height: 100%; display: block; object-fit: cover; }
.vision-time-art img { object-position: center; }
.vision-many-hands-art { margin: 46px 0 18px; border: 1px solid var(--line); border-radius: 2px 28px 2px 2px; box-shadow: 16px 16px 0 rgba(12, 68, 49, .07); }
.vision-many-hands-art img { aspect-ratio: 3 / 2; }
.vision-path-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }
.vision-path-grid article { min-height: 260px; padding: 27px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 2px 16px 2px 2px; background: white; }
.vision-path-grid .vision-symbol { width: 72px; height: 72px; flex-basis: 72px; border-radius: 22px; }
.vision-path-grid .vision-symbol-art img { width: 56px; height: 56px; }
.vision-path-grid .vision-symbol-scene { width: 88px; height: 88px; flex-basis: 88px; background: #f8f2e4; border-radius: 2px 22px 2px 2px; }
.vision-path-grid .vision-symbol-scene img { width: 100%; height: 100%; object-fit: cover; }
.vision-path-grid article:nth-child(2) .vision-symbol { color: var(--brand-navy); background: #e4edfb; }
.vision-path-grid article:nth-child(3) .vision-symbol { color: #247a9a; background: #dff3f8; }
.vision-path-grid article:nth-child(4) .vision-symbol { color: #68521f; background: #f3e9c9; }
.vision-symbol-farmer i { width: 47px; height: 24px; left: 13px; bottom: 15px; border: 2px solid currentColor; border-color: currentColor transparent transparent; border-radius: 50%; transform: rotate(-6deg); }
.vision-symbol-farmer::before { width: 38px; height: 18px; left: 19px; bottom: 23px; border: 2px solid currentColor; border-color: currentColor transparent transparent; border-radius: 50%; opacity: .55; transform: rotate(7deg); }
.vision-symbol-farmer::after { width: 9px; height: 18px; top: 18px; left: 32px; background: currentColor; border-radius: 70% 0 70% 0; transform: rotate(40deg); }
.vision-symbol-advisor i { width: 27px; height: 27px; top: 18px; left: 18px; border: 3px solid currentColor; border-radius: 50%; }
.vision-symbol-advisor::before { width: 10px; height: 10px; top: 28px; left: 28px; background: currentColor; border-radius: 50%; }
.vision-symbol-advisor::after { width: 25px; height: 3px; top: 47px; left: 43px; background: currentColor; border-radius: 999px; transform: rotate(44deg); transform-origin: left center; }
.vision-symbol-drone i { width: 20px; height: 14px; top: 29px; left: 26px; border: 2px solid currentColor; border-radius: 5px; }
.vision-symbol-drone::before { width: 48px; height: 2px; top: 25px; left: 12px; background: currentColor; border-radius: 999px; box-shadow: 0 20px 0 currentColor; }
.vision-symbol-drone::after { width: 13px; height: 13px; top: 18px; left: 8px; border: 2px solid currentColor; border-radius: 50%; box-shadow: 43px 0 0 -2px #dff3f8, 43px 0 0 0 currentColor, 0 20px 0 -2px #dff3f8, 0 20px 0 0 currentColor, 43px 20px 0 -2px #dff3f8, 43px 20px 0 0 currentColor; }
.vision-symbol-partners i { width: 12px; height: 12px; top: 30px; left: 30px; background: currentColor; border-radius: 50%; box-shadow: -17px -17px 0 -2px currentColor, 17px -17px 0 -2px currentColor, -17px 17px 0 -2px currentColor, 17px 17px 0 -2px currentColor; }
.vision-symbol-partners::before, .vision-symbol-partners::after { width: 48px; height: 2px; top: 35px; left: 12px; background: currentColor; border-radius: 999px; opacity: .48; }
.vision-symbol-partners::after { transform: rotate(90deg); }
.vision-path-grid strong { margin-top: auto; font-size: clamp(22px, 1.85vw, 28px); line-height: 1; }
.vision-path-grid p { margin: 16px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.48; }
.vision-manifesto { padding: 125px 0; color: white; background: var(--forest-deep); }
.vision-manifesto .eyebrow { color: var(--lime); }
.vision-manifesto h2 { max-width: 1100px; margin: 20px 0 30px; font-size: clamp(62px, 8vw, 112px); line-height: .92; }
.vision-manifesto h2 em { color: var(--sky); font-style: normal; }
.vision-manifesto p { max-width: 760px; margin: 0; color: var(--sage); }
.stories-hero { min-height: 0; padding: 108px 0 96px; }
.stories-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr); gap: 90px; align-items: end; }
.stories-hero h1 { max-width: 780px; margin: 24px 0 0; font-size: clamp(82px, 10vw, 146px); }
.stories-hero-lead { max-width: 590px; margin: 0; padding: 30px 0 5px; border-top: 3px solid var(--brand-cyan); font-size: clamp(24px, 2.35vw, 34px); line-height: 1.35; }
.stories-library { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.stories-library .story-card { grid-column: span 6; min-height: 610px; padding: 22px; border: 1px solid var(--line); border-top-width: 3px; border-radius: 3px 26px 3px 3px; background: rgba(255,255,255,.54); box-shadow: 0 16px 42px rgba(8,49,39,.055); }
.stories-library .story-card:nth-child(2) { grid-column: span 6; }
.stories-library .story-card-featured { grid-column: span 6; min-height: 610px; display: flex; flex-direction: column; }
.stories-library .story-card-featured .story-media { width: 100%; height: auto; aspect-ratio: 1; margin: 0 0 28px; }
.stories-library .story-card-featured small,
.stories-library .story-card-featured h3,
.stories-library .story-card-featured p,
.stories-library .story-card-featured::after { grid-column: auto; grid-row: auto; }
.stories-library .story-card:nth-child(n+3) .story-media { aspect-ratio: 16 / 10; }
.stories-library .story-card:hover { background: white; transform: translateY(-2px); }

/* Stories */
.story-article-hero { padding: 58px 0 78px; color: white; background: var(--forest-deep); overflow: hidden; }
.story-article-back { display: inline-flex; align-items: center; margin-bottom: 42px; color: var(--sage); font-size: 14px; font-weight: 850; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.story-article-back:hover { color: var(--lime); }
.story-article-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .75fr); gap: 70px; align-items: center; }
.story-article-heading { min-width: 0; }
.story-article-heading .eyebrow { color: var(--lime); }
.story-article-heading h1 { max-width: 760px; margin: 20px 0 30px; font-size: clamp(58px, 7vw, 100px); line-height: .92; }
.story-article-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; color: #d7e8de; font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.story-article-meta span:not(:last-child)::after { content: "·"; margin-left: 20px; color: var(--lime); }
.story-article-image { min-width: 0; margin: 0; aspect-ratio: 4 / 5; border-radius: 3px 30px 3px 3px; background: var(--forest); box-shadow: 16px 16px 0 rgba(116,209,76,.12); overflow: hidden; }
.story-article-image img { width: 100%; height: 100%; object-fit: cover; }
.story-article-body { padding: 96px 0 112px; background: var(--paper); overflow: hidden; }
.story-article-prose { width: min(100%, 790px); margin-inline: auto; }
.story-article-prose p, .story-article-prose li { color: var(--ink-soft); font-size: 20px; line-height: 1.7; }
.story-article-prose p { margin-bottom: 28px; }
.story-article-prose .article-lead { margin-bottom: 40px; color: var(--ink); font-size: clamp(24px, 2.5vw, 31px); font-weight: 650; line-height: 1.42; letter-spacing: -.02em; }
.story-article-prose h2 { margin: 72px 0 22px; color: var(--forest-deep); font-size: clamp(37px, 4vw, 54px); line-height: 1; letter-spacing: -.04em; }
.story-article-prose h3 { margin: 44px 0 15px; color: var(--brand-navy); font-size: 27px; line-height: 1.08; letter-spacing: -.025em; }
.story-article-prose a { color: var(--brand-navy); font-weight: 750; text-underline-offset: 3px; }
.story-article-prose .article-list { margin: 8px 0 34px; padding-left: 25px; }
.story-article-prose .article-list li { margin-bottom: 11px; padding-left: 6px; }
.story-article-prose .article-pullquote { margin: 52px 0; padding: 34px 38px; color: white; background: var(--forest); border: 0; border-left: 6px solid var(--lime); border-radius: 2px 22px 2px 2px; font-family: "Aptos Display", "Trebuchet MS", Arial, sans-serif; font-size: clamp(27px, 3vw, 38px); font-weight: 650; line-height: 1.22; letter-spacing: -.025em; }
.story-article-close { max-width: 980px; margin: 90px auto 0; padding: 40px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 55px; align-items: end; color: white; background: var(--brand-navy); border-radius: 3px 26px 3px 3px; }
.story-article-close .eyebrow { color: #d8e7ff; }
.story-article-close h2 { max-width: 650px; margin: 24px 0 0; font-size: clamp(38px, 4.5vw, 62px); line-height: .98; }
.story-article-next { max-width: 980px; margin: 14px auto 0; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); background: white; }
.story-article-next a { min-width: 0; min-height: 150px; padding: 24px 26px; display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto 1fr; gap: 12px 20px; color: var(--ink); text-decoration: none; }
.story-article-next a + a { border-left: 1px solid var(--line); }
.story-article-next a:hover { background: var(--cream); }
.story-article-next small { grid-column: 1 / -1; color: var(--brand-navy); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.story-article-next strong { align-self: end; font-size: 23px; line-height: 1.12; }
.story-article-next span { align-self: end; color: var(--forest-mid); font-size: 24px; font-weight: 900; }

.contact-layout { display: grid; grid-template-columns: .7fr 1.1fr; gap: 70px; align-items: start; }
.contact-copy h1 { margin: 20px 0 24px; font-size: clamp(58px, 7vw, 98px); line-height: .9; }
.contact-copy p { color: var(--ink-soft); }
.direct-contact { margin-top: 35px; padding-top: 25px; border-top: 1px solid var(--line); }
.direct-contact a { display: block; margin-top: 8px; color: var(--forest-mid); font-weight: 750; }
.lead-form { padding: 31px; border: 1px solid var(--line); border-radius: 3px 24px 3px 3px; background: white; box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 7px; color: var(--forest); font-size: 14px; font-weight: 850; letter-spacing: .03em; }
.field-optional { margin-left: 5px; color: var(--ink-soft); font-size: 11px; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid rgba(21,38,29,.3); border-radius: 2px 9px 2px 2px; color: var(--ink); background: var(--paper); }
.field textarea { min-height: 110px; resize: vertical; }
.field select { cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgba(116,209,76,.42); border-color: var(--forest-mid); }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; }
.form-status { margin-bottom: 18px; padding: 15px 17px; border-radius: 10px; font-size: 17px; }
.form-status.success { color: #174f31; background: #e4f4e8; border: 1px solid #afd6bb; }
.form-status.error { color: #7d2d25; background: #fff0ed; border: 1px solid #e5b9b2; }
.form-note { margin: 13px 0 0; color: var(--ink-soft); font-size: .67em; }
.form-note a { color: var(--forest-mid); }
.form-reassurance { margin: 14px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.form-reassurance a { color: var(--forest-mid); font-weight: 750; }

.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.brand-concept { min-height: 470px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 3px 24px 3px 3px; background: white; }
.brand-concept.recommended { color: white; background: var(--forest-deep); }
.brand-canvas { min-height: 220px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 2px 14px 2px 2px; background: var(--paper); }
.recommended .brand-canvas { border-color: var(--line-light); background: var(--paper); }
.brand-canvas svg { width: 160px; height: 160px; }
.brand-canvas-emblem img { width: 190px; height: 190px; }
.brand-size-row { display: flex; align-items: center; gap: 24px; }
.brand-size-row img { flex: 0 0 auto; }
.brand-colour-canvas { padding: 24px; align-content: center; gap: 26px; }
.brand-wordmark { color: var(--brand-navy); font-size: clamp(39px, 4vw, 58px); font-weight: 900; letter-spacing: -.055em; line-height: 1; }
.brand-wordmark span { color: var(--brand-leaf-text); }
.brand-swatches { display: flex; gap: 10px; }
.brand-swatches i { width: 42px; height: 42px; border-radius: 10px; background: var(--brand-leaf); }
.brand-swatches i:nth-child(2) { background: var(--brand-navy); }
.brand-swatches i:nth-child(3) { background: var(--brand-cyan); }
.brand-concept h3 { margin: 28px 0 10px; font-size: 31px; }
.brand-concept p { margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.48; }
.brand-concept.recommended p { color: #d7e8de; }
.recommended p { color: var(--sage); }
.concept-label { margin-top: auto; padding-top: 18px; color: var(--brand-navy); font-size: 14px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.recommended .concept-label { color: var(--lime); }

.close-section { padding: 108px 0; color: white; background: var(--forest-deep); text-align: center; }
.close-section h2 { max-width: 950px; margin: 12px auto 22px; font-size: clamp(48px, 6.3vw, 86px); line-height: .94; }
.close-section p { max-width: 650px; margin-inline: auto; color: var(--sage); }
.close-section .button-row { justify-content: center; }
.site-offer-path { padding-bottom: 132px; }
.site-footer { padding: 42px 0; color: var(--sage); background: #061c15; }
.site-footer .brand-copy small { color: var(--sage); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
.footer-links a { font-size: 11px; text-decoration: none; }
.footer-links a:hover { color: var(--lime); }
.footer-note { margin-top: 10px; font-size: 11px; }

/* Onboarding */
.onboarding-hero { min-height: 74vh; }
.onboarding-hero h1 { font-size: clamp(60px, 7.8vw, 108px); }
.onboarding-start-card { min-height: 520px; padding: 30px; color: white; background: var(--forest-deep); border-radius: 4px 32px 4px 4px; box-shadow: var(--shadow); }
.onboarding-card-label { color: var(--lime); font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.onboarding-start-card ol { margin: 34px 0 0; padding: 0; list-style: none; }
.onboarding-start-card li { min-height: 124px; padding: 24px 0; display: grid; grid-template-columns: 58px 1fr; gap: 18px; border-top: 1px solid var(--line-light); }
.onboarding-start-card li b { color: var(--lime); font-family: "SFMono-Regular", Consolas, monospace; font-size: 14px; }
.onboarding-start-card li div { display: grid; align-content: start; }
.onboarding-start-card li strong { font-size: 23px; line-height: 1.08; }
.onboarding-start-card li span { margin-top: 8px; color: var(--sage); font-size: 16px; line-height: 1.4; }
.onboarding-step-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.onboarding-step-grid article { min-height: 390px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.55); }
.onboarding-step-grid article > span, .onboarding-video-copy > span, .onboarding-resource-grid > a > span { color: var(--forest-mid); font-family: "SFMono-Regular", Consolas, monospace; font-size: 12px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.onboarding-step-grid h3 { margin: 54px 0 18px; font-size: clamp(38px, 3.4vw, 54px); line-height: .98; }
.onboarding-step-grid p { color: var(--ink-soft); font-size: 17px; line-height: 1.5; }
.onboarding-step-grid a { margin-top: auto; padding-top: 22px; color: var(--brand-navy); border-top: 1px solid var(--line); font-size: 14px; font-weight: 850; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.onboarding-step-grid a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.onboarding-video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.onboarding-video-card { display: grid; grid-template-rows: auto auto; border: 1px solid var(--line-light); border-radius: 3px 24px 3px 3px; background: rgba(255,255,255,.045); overflow: hidden; }
.onboarding-video-card.featured { grid-column: 1 / -1; grid-template-columns: minmax(280px, .6fr) minmax(0, 1.4fr); grid-template-rows: none; }
.onboarding-video-copy { padding: 28px; }
.onboarding-video-copy > span { color: var(--lime); }
.onboarding-video-copy h3 { margin: 32px 0 14px; font-size: clamp(38px, 3.5vw, 54px); line-height: .98; }
.onboarding-video-copy p { margin: 0; color: var(--sage); font-size: 17px; line-height: 1.5; }
.onboarding-video-card video { width: 100%; aspect-ratio: 16 / 9; align-self: end; display: block; background: #020b08; }
.onboarding-media-note { margin: 24px 0 0; color: var(--sage); font-size: 13px; line-height: 1.45; }
.onboarding-resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.onboarding-resource-grid > a { min-height: 380px; padding: 28px; display: flex; flex-direction: column; color: white; background: var(--forest); border-radius: 3px 24px 3px 3px; text-decoration: none; }
.onboarding-resource-grid > a:nth-child(2) { background: var(--brand-navy); }
.onboarding-resource-grid > a:nth-child(3) { color: var(--forest-deep); background: var(--lime); }
.onboarding-resource-grid > a > span { color: #d7e8de; }
.onboarding-resource-grid > a:nth-child(3) > span { color: rgba(21,38,29,.72); }
.onboarding-resource-grid h3 { margin: 42px 0 18px; font-size: clamp(42px, 4vw, 60px); line-height: .95; }
.onboarding-resource-grid p { color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.5; }
.onboarding-resource-grid > a:nth-child(3) p { color: rgba(21,38,29,.72); }
.onboarding-resource-grid strong { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line-light); font-size: 14px; letter-spacing: .055em; text-transform: uppercase; }
.onboarding-resource-grid > a:nth-child(3) strong { border-color: var(--line); }

/* Product imagery */

.product-shot { position: relative; min-height: 570px; border-radius: 4px 34px 4px 4px; background: var(--forest-deep); box-shadow: var(--shadow); overflow: hidden; }
.product-shot img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }
.product-shot .hero-loop-video { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }
.product-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(6,28,21,.86)); }
.record-timeline-shot::after { display: none; }
.record-map-shot { min-height: 0; aspect-ratio: 1; background: #faf4e8; }
.product-shot figcaption { position: absolute; z-index: 2; right: 22px; bottom: 19px; left: 22px; display: flex; justify-content: space-between; gap: 18px; align-items: end; color: white; }
.product-shot figcaption strong { max-width: 500px; font-size: 26px; line-height: 1.05; }
.product-shot figcaption span { color: #d7e8de; font-size: 14px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.product-shot.compact { min-height: 300px; margin: 0; }
.future-product-shot { min-height: 0; aspect-ratio: 900 / 1286; background: #f7f8f5; }
.future-product-shot img { object-position: center; }

.offer-card .offer-visual.product-thumb { min-height: 190px; display: block; position: relative; }
.product-thumb img { width: 100%; height: 190px; object-fit: cover; object-position: center; transition: transform .35s ease; }
.offer-card.drone .product-thumb img { object-position: center 43%; }
.offer-card.future .product-thumb img { object-position: center 57%; }
.offer-card:hover .product-thumb img { transform: scale(1.025); }
.product-thumb::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); border-radius: 2px 14px 2px 2px; }

.visual-story { display: grid; grid-template-columns: 1.2fr .8fr; gap: 13px; margin-top: 50px; }
.visual-loop { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-areas: "see understand" "act picture"; gap: 16px; }
.story-panel { min-height: 420px; padding: 28px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 3px 26px 3px 3px; overflow: hidden; background: var(--forest); color: white; }
.story-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(6,28,21,.9)); }
.story-panel > *:not(img) { position: relative; z-index: 1; }
.story-panel h3 { margin: 0 0 8px; font-size: 38px; line-height: 1; }
.story-panel p { max-width: 540px; margin: 0; color: #d7e8de; font-size: 18px; line-height: 1.48; }
.story-panel.blue { background: var(--brand-navy); }
.story-panel.green { background: var(--surface-green); }
.story-panel.blue::after, .story-panel.green::after { display: none; }
.story-panel.has-image img { object-position: center 16%; filter: saturate(.9) contrast(.96); }
.story-panel.blue.has-image::after,
.story-panel.green.has-image::after { display: block; background: linear-gradient(180deg, rgba(8,39,28,.02) 0%, rgba(8,39,28,.08) 46%, rgba(8,39,28,.9) 100%); }
.story-panel.result-card img { object-position: center 8%; }
.story-panel.loop-word h3 { margin: 0; font-size: clamp(58px, 5.8vw, 88px); letter-spacing: -.045em; }
.story-panel.story-see { grid-area: see; }
.story-panel.story-understand { grid-area: understand; }
.story-panel.story-understand img { object-position: center; filter: saturate(.88) contrast(1.05); }
.story-panel.story-act { grid-area: act; }
.story-panel.story-picture { grid-area: picture; padding: 0; background: #f4f0e6; }
.story-panel.story-picture::after { display: none; }
.story-panel.story-picture img { object-fit: contain; }

.drone-loop { display: grid; grid-template-columns: repeat(4,1fr); gap: 11px; }
.drone-step { min-height: 250px; padding: 24px; position: relative; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 2px 16px 2px 2px; background: white; }
.drone-step b { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--brand-navy); font-size: 13px; }
.drone-step h3 { margin: auto 0 9px; font-size: 29px; line-height: 1; }
.drone-step p { margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.48; }
.drone-hardware-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.drone-hardware-card { min-height: 410px; padding: 32px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 3px 26px 3px 3px; background: white; }
.drone-hardware-card > span { color: var(--brand-navy); font-size: 14px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.drone-hardware-card h3 { margin: auto 0 18px; font-size: clamp(42px, 4.5vw, 64px); line-height: .96; }
.drone-hardware-card p { max-width: 580px; margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.5; }
.drone-hardware-card small { margin-top: 28px; padding-top: 18px; color: var(--ink-soft); border-top: 1px solid var(--line); font-size: 14px; font-weight: 800; line-height: 1.45; }
.drone-hardware-card.enterprise { color: white; background: var(--forest); border-color: var(--forest); }
.drone-hardware-card.enterprise > span { color: var(--lime); }
.drone-hardware-card.enterprise p, .drone-hardware-card.enterprise small { color: #d7e8de; }
.drone-hardware-card.enterprise small { border-top-color: var(--line-light); }
.drone-development { margin-top: 13px; padding: 34px; display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 48px; align-items: end; color: rgba(21,38,29,.72); border: 1px dashed rgba(21,38,29,.24); border-radius: 2px 22px 2px 2px; background: linear-gradient(135deg, rgba(232,240,251,.72), rgba(244,250,239,.72)); }
.drone-development span { color: var(--brand-navy); font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.drone-development h3 { margin: 26px 0 0; font-size: clamp(38px, 4vw, 58px); line-height: .98; }
.drone-development p { max-width: 620px; margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.5; }
.drone-decision-loop { display: grid; grid-template-columns: minmax(0, .78fr) minmax(430px, 1.22fr); gap: 78px; align-items: center; }
.drone-decision-copy h2 { max-width: 650px; margin: 18px 0 24px; font-size: clamp(52px, 6.5vw, 88px); line-height: .94; }
.drone-decision-copy p { max-width: 580px; margin: 0; color: var(--ink-soft); font-size: 20px; line-height: 1.52; }
.drone-decision-loop figure { margin: 0; padding: 8px; border: 1px solid var(--line); border-radius: 3px 24px 3px 3px; background: white; box-shadow: var(--shadow); }
.drone-decision-loop figure img { width: 100%; height: auto; display: block; border-radius: calc(var(--radius-lg) - 10px); }

.next-up { padding: 74px 0; background: var(--cream); }
.next-up h2 { margin: 0 0 26px; font-size: clamp(42px,5vw,66px); }
.next-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.next-card { min-height: 280px; padding: 26px; position: relative; display: flex; flex-direction: column; border-radius: 3px 26px 3px 3px; color: white; background: var(--forest); text-decoration: none; overflow: hidden; transition: filter .18s ease; }
.next-card:nth-child(2) { background: var(--brand-navy); }
.next-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,28,21,.14) 0%, rgba(6,28,21,.36) 46%, rgba(6,28,21,.94) 100%); }
.next-card.record-next::after { background: linear-gradient(180deg, rgba(6,28,21,.58) 0%, rgba(6,28,21,.34) 42%, rgba(6,28,21,.94) 100%); }
.next-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .35s ease; }
.next-card.drone-next img { object-position: center 56%; }
.next-card.record-next img { object-position: center 22%; }
.next-card.pasture-map-next img { object-position: center 52%; }
.next-card.timeline-next img { object-position: center 12%; }
.next-card.history-slider-next img { object-position: center 64%; }
.next-card.dashboard-next img { object-position: center 32%; }
.next-card.future-next img { object-position: center 84%; }
.next-card.farm-memory-next img { object-position: center 58%; }
.next-card.drone-insight-next img { object-position: 43% center; }
.next-card.light-image-next::after { background: linear-gradient(180deg, rgba(6,28,21,.5) 0%, rgba(6,28,21,.28) 42%, rgba(6,28,21,.95) 100%); }
.next-card > *:not(img) { position: relative; z-index: 1; }
.next-card small { font-size: 14px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.next-card h3 { margin: auto 0 10px; font-size: 38px; line-height: 1; }
.next-card p { margin: 0; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.48; }
.next-card:hover { filter: brightness(1.045); }
.next-card:hover img { transform: scale(1.025); }


.hero-home-shot { margin: 0; }
.home-hero { min-height: auto; padding: 56px 0 72px; }
.home-hero h1 { max-width: 760px; margin-top: 0; font-size: clamp(52px, 5.4vw, 78px); }
.home-hero h1 em { color: var(--brand-navy); font-style: normal; }
.home-hero .eyebrow { margin-bottom: 24px; }
.home-hero .lead { max-width: 790px; font-size: clamp(20px, 1.8vw, 25px); line-height: 1.5; }
.home-hero .hero-grid { align-items: start; }
.home-hero .button-row { flex-wrap: nowrap; }
.home-hero .button { padding-inline: 22px; font-size: 14px; }
.hero-home-shot { min-height: 0; align-self: start; background: var(--forest-deep); }
.hero-home-shot img { height: auto; position: relative; object-fit: contain; }
.hero-home-shot::after { display: none; }
.hero-home-shot figcaption { min-height: 84px; padding: 17px 20px 19px; position: static; background: var(--forest-deep); }
.home-campaign-hero {
  min-height: calc(100vh - 78px);
  padding: clamp(62px, 6.5vw, 96px) 0;
  position: relative;
  color: white;
  background:
    radial-gradient(circle at 11% 12%, rgba(116,209,76,.15), transparent 31%),
    radial-gradient(circle at 90% 86%, rgba(103,174,232,.13), transparent 34%),
    linear-gradient(125deg, var(--forest-deep) 0%, #0b3325 64%, #103e31 100%);
}
.home-campaign-hero::before {
  content: "";
  position: absolute;
  width: min(62vw, 850px);
  aspect-ratio: 1 / 1;
  top: -46%;
  left: -18%;
  border: 1px solid rgba(201,223,109,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 95px rgba(201,223,109,.025), 0 0 0 190px rgba(201,223,109,.015);
  pointer-events: none;
}
.home-campaign-hero .hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  gap: clamp(48px, 7vw, 105px);
  align-items: center;
}
.home-campaign-hero h1 {
  max-width: 790px;
  margin: 22px 0 30px;
  font-size: clamp(66px, 7.6vw, 108px);
  line-height: .9;
}
.home-campaign-hero h1 em { color: var(--lime); }
.home-campaign-hero .eyebrow { margin-bottom: 0; color: var(--lime); }
.home-campaign-hero .lead { max-width: 730px; color: #d3e3d8; font-size: clamp(21px, 1.85vw, 26px); line-height: 1.46; }
.home-campaign-hero .button.primary { color: var(--forest-deep); background: var(--lime); border-color: var(--lime); }
.home-campaign-hero .button.primary:hover { background: #8ade61; }
.home-campaign-hero .button.secondary { color: white; background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.32); }
.home-campaign-hero .button.secondary:hover { background: rgba(255,255,255,.12); }
.home-campaign-hero .home-offer-note,
.home-intro-film .home-offer-note { color: white; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); }
.home-campaign-hero .home-offer-note span,
.home-intro-film .home-offer-note span { color: var(--sage); }
.home-campaign-hero .home-offer-note b,
.home-intro-film .home-offer-note b { color: var(--lime); }
.home-campaign-hero .home-offer-note:hover,
.home-intro-film .home-offer-note:hover { background: rgba(255,255,255,.11); }
.home-hero-video-card {
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  margin: 0;
  position: relative;
  justify-self: end;
  background: var(--forest-deep) url('assets/agrhythm-pasture-website-hero-poster-v1.webp') center / cover no-repeat;
  border: 1px solid rgba(201,223,109,.42);
  border-radius: 4px 38px 4px 4px;
  box-shadow: 0 34px 90px rgba(0,0,0,.34), 14px 14px 0 rgba(116,209,76,.09);
  overflow: hidden;
}
.home-hero-film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home-intro-film {
  padding: clamp(72px, 8vw, 118px) 0;
  color: white;
  background: var(--forest-deep);
}
.home-intro-film .eyebrow { margin: 0 0 30px; color: var(--lime); }
.home-intro-video-frame {
  margin: 0;
  padding: 10px;
  overflow: hidden;
  background: #061c15;
  border: 1px solid rgba(201,223,109,.4);
  border-radius: 3px 30px 3px 3px;
  box-shadow: 16px 16px 0 rgba(116,209,76,.08), 0 28px 70px rgba(0,0,0,.28);
}
.home-intro-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #061c15;
  border-radius: 2px 22px 2px 2px;
}
.home-intro-film .home-offer-note { width: 100%; margin-top: 26px; }
.home-explore { background: var(--paper); border-top: 1px solid var(--line); }
.home-explore-head h2 { margin-top: 0; }
.home-entrance-grid .offer-card,
.home-entrance-grid .offer-card.feed,
.home-entrance-grid .offer-card.drone,
.home-entrance-grid .offer-card.future { color: white; background: #214937; }
.home-entrance-grid .offer-top { color: #d7e8de; }
.home-entrance-grid .offer-visual.product-thumb { min-height: 0; aspect-ratio: 1; border-color: rgba(255,255,255,.2); background: #faf4e8; }
.home-entrance-grid .product-thumb img { height: 100%; object-position: center; filter: saturate(.94) brightness(.98) contrast(1.02); }
.home-entrance-grid .offer-arrow { border-color: rgba(255,255,255,.24); }

.home-offer-note { width: fit-content; max-width: 100%; margin-top: 20px; padding: 16px 18px; display: grid; grid-template-columns: auto auto auto; gap: 14px; align-items: center; color: var(--forest-deep); border: 1px solid rgba(21,38,29,.18); border-radius: 2px 12px 2px 2px; background: rgba(116,209,76,.16); text-decoration: none; }
.home-offer-note strong { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 13px; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; }
.home-offer-note span { color: var(--ink-soft); font-size: 17px; line-height: 1.35; }
.home-offer-note b { color: var(--forest-mid); font-size: 20px; }
.home-offer-note:hover { background: rgba(116,209,76,.28); }

.home-trust { background: var(--cream); }
.home-trust-head h2 { max-width: 850px; }
.home-trust-head h2 em { color: var(--brand-navy); font-style: normal; }
.home-trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.home-trust-grid article { min-height: 520px; padding: 27px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.46); }
.home-trust-grid article:nth-child(2) { background: #e8f0fb; }
.home-trust-grid article:nth-child(3) { background: #e8f3e3; }
.home-trust-grid article:nth-child(4) { background: rgba(255,255,255,.72); }
.home-trust-grid article > span { color: var(--brand-navy); font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.home-trust-media { aspect-ratio: 1; margin: 20px 0 26px; position: relative; isolation: isolate; overflow: hidden; border: 1px solid rgba(21,38,29,.18); border-radius: 2px 20px 2px 2px; background: #faf4e8; }
.home-trust-media::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(255,250,238,.01), rgba(8,39,28,.035)); mix-blend-mode: multiply; }
.home-trust-media img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.94) brightness(.98) contrast(1.02); transition: transform .45s ease; }
.home-trust-grid article:hover .home-trust-media img { transform: scale(1.025); }
.home-trust-grid article:nth-child(1) .home-trust-media img { object-position: 50% 48%; }
.home-trust-grid article:nth-child(2) .home-trust-media img { object-position: 50% 49%; }
.home-trust-grid article:nth-child(3) .home-trust-media img { object-position: 50% 48%; }
.home-trust-grid article:nth-child(4) .home-trust-media img { object-position: 50% 50%; }
.home-trust-grid h3 { margin: 0 0 15px; font-size: clamp(31px, 3vw, 43px); line-height: .98; }
.home-trust-grid p { margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.48; }

.home-definition { background: var(--paper); }
.home-definition .section-head { grid-template-columns: 1fr; gap: 24px; }
.home-definition .section-head > p { min-height: 0; max-width: 820px; padding: 0; border: 0; border-radius: 0; background: transparent; font-size: 20px; }
.home-definition-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.home-definition-card { min-height: 320px; padding: 28px; display: flex; flex-direction: column; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; background: white; }
.home-definition-card:first-child { color: white; background: var(--forest); border-color: var(--forest); }
.home-definition-card:nth-child(2) { background: #e8f0fb; }
.home-definition-card:nth-child(3) { background: #e8f3e3; }
.home-definition-card small { color: var(--brand-navy); font-size: 14px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.home-definition-card:first-child small { color: var(--lime); }
.home-definition-card h3 { margin: auto 0 14px; font-size: clamp(36px, 3.3vw, 49px); line-height: .98; }
.home-definition-card p { margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.48; }
.home-definition-card:first-child p { color: #d7e8de; }

.home-record-statement { padding: 108px 0; color: white; background: var(--forest-deep); }
.home-record-statement-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 72px; align-items: end; }
.home-record-statement .eyebrow { color: var(--lime); }
.home-record-statement h2 { max-width: 960px; margin: 18px 0 0; font-size: clamp(54px, 6.5vw, 94px); line-height: .94; }
.home-record-statement h2 em { color: var(--sky); font-style: normal; }
.home-record-statement p { max-width: 430px; margin: 0; padding-top: 24px; border-top: 3px solid var(--lime); color: #c4d8cb; font-size: 20px; line-height: 1.48; }

.home-future-strip { min-height: 390px; margin-top: 18px; display: grid; grid-template-columns: 1.08fr .92fr; color: var(--ink); background: var(--lime); border-radius: 3px 26px 3px 3px; text-decoration: none; overflow: hidden; transition: filter .18s ease; }
.home-future-strip:hover { filter: brightness(1.025); }
.home-future-copy { padding: 42px; display: flex; flex-direction: column; align-items: flex-start; }
.home-future-copy .eyebrow { color: var(--forest-deep); }
.home-future-copy h3 { max-width: 650px; margin: 26px 0 18px; font-size: clamp(48px, 5.6vw, 78px); line-height: .94; }
.home-future-copy p { max-width: 620px; margin: 0; color: rgba(21,38,29,.76); font-size: 20px; line-height: 1.48; }
.home-future-link { min-height: 54px; margin-top: auto; padding: 0 18px; display: inline-flex; align-items: center; border: 1px solid rgba(21,38,29,.25); border-radius: 2px 14px 2px 2px; background: rgba(255,255,255,.24); font-size: 14px; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
.home-future-strip figure { min-height: 390px; margin: 0; position: relative; overflow: hidden; }
.home-future-strip figure::after { content: ""; position: absolute; inset: 0; box-shadow: inset 18px 0 34px rgba(21,38,29,.12); }
.home-future-strip img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }

.section-head-solo { grid-template-columns: 1fr; }
.section-head-solo h2 { max-width: 1040px; }

.home-loop-head { margin-bottom: 58px; }
.home-loop-head h2 { margin: 0; font-size: clamp(64px, 8.4vw, 116px); line-height: .92; }
.home-loop-head h2 em { color: var(--lime); font-style: normal; }
.home-loop-head .eyebrow { margin-bottom: 28px; color: var(--lime); }
.home-loop-head p { max-width: 830px; margin: 28px 0 0; color: #d7e8de; font-size: clamp(22px, 2.5vw, 32px); line-height: 1.3; }
.story-panel.story-remember { grid-area: picture; }
.story-panel.story-remember img { object-position: center 52%; }
.home-conversion { color: white; background: var(--brand-navy); }
.home-conversion .eyebrow { margin-bottom: 23px; color: var(--lime); }
.home-offer-close { padding: 18px 0; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.home-offer-close h2 { max-width: 930px; margin: 0; font-size: clamp(54px, 6vw, 84px); line-height: .96; }
.home-offer-close p { max-width: 760px; margin: 25px 0 0; color: #d8e7ff; font-size: 20px; line-height: 1.5; }
.home-offer-close .button { min-width: 230px; min-height: 82px; font-size: 18px; }

/* Farm record */
.record-map-shot img, .hero-home-shot img { object-position: center; }
.pasture-map-shot { margin: 0; }
.record-hero h1 { max-width: 760px; font-size: clamp(52px, 5.8vw, 84px); }
.record-statement { padding: 105px 0; color: white; background: linear-gradient(120deg, var(--forest-deep), var(--brand-navy)); }
.record-statement .eyebrow { color: var(--lime); }
.record-statement h2 { max-width: 1000px; margin: 18px 0 24px; font-size: clamp(54px, 7vw, 96px); line-height: .96; }
.record-statement p { max-width: 720px; margin: 0; color: #d7e8de; }
.compact-head { align-items: start; }
.record-focus { min-height: 620px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); border-radius: 3px 28px 3px 3px; background: var(--forest-deep); box-shadow: var(--shadow); overflow: hidden; }
.record-focus-copy { padding: clamp(38px, 4.2vw, 58px); display: flex; flex-direction: column; justify-content: center; color: white; }
.record-focus-copy .eyebrow { color: var(--lime); }
.record-focus-copy h3 { margin: 22px 0 0; font-size: clamp(50px, 4.6vw, 66px); line-height: .97; }
.record-focus-copy h3 em { color: #8fd7ff; font-style: normal; }
.record-focus-visual { min-height: 620px; margin: 0; background: #dbe8dd; overflow: hidden; }
.record-focus-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.farm-memory-ledger { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); color: white; background: var(--forest-deep); border-radius: 3px 28px 3px 3px; box-shadow: var(--shadow); overflow: hidden; }
.farm-memory-ledger-head { padding: clamp(34px, 4.2vw, 56px); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line-light); }
.farm-memory-ledger-head .eyebrow { color: var(--lime); }
.farm-memory-ledger-head h2 { margin: 22px 0 24px; font-size: clamp(48px, 5.4vw, 76px); line-height: .94; }
.farm-memory-ledger-head p { max-width: 520px; margin: 0; color: var(--sage); font-size: 18px; line-height: 1.5; }
.farm-memory-ledger ol { margin: 0; padding: 0; list-style: none; }
.farm-memory-ledger li { min-height: 138px; padding: 24px 30px; display: grid; grid-template-columns: 72px 1fr; gap: 24px; align-items: center; border-bottom: 1px solid var(--line-light); }
.farm-memory-ledger li:last-child { border-bottom: 0; }
.farm-memory-ledger time { color: var(--lime); font-family: "SFMono-Regular", Consolas, monospace; font-size: 14px; font-weight: 850; }
.farm-memory-ledger strong, .farm-memory-ledger span { display: block; }
.farm-memory-ledger strong { font-size: 25px; line-height: 1.15; }
.farm-memory-ledger span { margin-top: 6px; color: var(--sage); font-size: 16px; line-height: 1.4; }
.record-output-head { max-width: 900px; margin: 82px 0 36px; }
.record-output-head h2 { margin: 17px 0 0; font-size: clamp(50px, 6vw, 82px); line-height: .96; }
.record-output-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: 0; background: white; overflow: hidden; }
.record-output-grid article { min-height: 320px; padding: 25px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.record-output-grid article:last-child { border-right: 0; }
.record-output-grid small { color: var(--brand-navy); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.record-output-icon { width: 68px; height: 68px; margin: 30px 0 22px; display: grid; flex: 0 0 68px; place-items: center; color: var(--forest); background: #e5f1df; border-radius: 2px 19px 2px 2px; box-shadow: inset 0 0 0 1px rgba(21,38,29,.06); }
.record-output-icon img { width: 54px; height: 54px; object-fit: contain; }
.record-output-icon svg { width: 43px; height: 43px; }
.record-output-icon.reading-icon { color: #1e6f91; background: #dceff5; }
.record-output-icon.repair-icon { background: #f3e9c9; }
.record-output-icon.report-icon { background: #e0eaff; }
.record-output-media { width: 100%; aspect-ratio: 3 / 2; margin: 24px 0 0; position: relative; overflow: hidden; background: var(--cream); border-radius: 2px 18px 2px 2px; box-shadow: inset 0 0 0 1px rgba(21,38,29,.08); }
.record-output-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(7,45,33,.02), rgba(7,45,33,.12)); mix-blend-mode: multiply; }
.record-output-media img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.9) contrast(1.03); }
.record-output-grid h3 { margin: auto 0 10px; font-size: 29px; line-height: 1; }
.record-output-grid p { margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.45; }
.record-reveal { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.record-reveal h2 { margin: 14px 0 0; font-size: clamp(54px, 7vw, 92px); line-height: .95; }
.record-reveal h2 em { color: var(--brand-navy); font-style: normal; }
.record-reveal .lead { color: var(--ink-soft); }

/* Offer */
.offer-image-hero { min-height: 720px; padding: 110px 0 80px; position: relative; display: flex; align-items: flex-end; color: white; background: var(--forest-deep); overflow: hidden; }
.offer-image-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.offer-image-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,28,21,.2) 0%, rgba(6,28,21,.28) 35%, rgba(6,28,21,.86) 100%), linear-gradient(180deg, rgba(6,28,21,.05) 32%, rgba(6,28,21,.72) 100%); }
.offer-image-copy { position: relative; z-index: 1; max-width: 790px; margin-right: 0; margin-left: auto; }
.offer-image-copy .eyebrow, .offer-conversation .eyebrow { color: var(--lime); }
.offer-image-copy h1 { margin: 20px 0 34px; font-size: clamp(62px, 7.4vw, 108px); line-height: .92; }
.offer-founding { padding: 108px 0; color: white; background: var(--forest-deep); }
.offer-founding-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 90px; align-items: start; }
.offer-founding .eyebrow { color: var(--lime); }
.offer-founding-intro h2 { max-width: 780px; margin: 20px 0 28px; font-size: clamp(58px, 6.4vw, 92px); line-height: .94; }
.offer-founding-intro > p { max-width: 720px; margin: 0; color: #cfdae5; font-size: 20px; line-height: 1.55; }
.offer-founding-price { max-width: 720px; margin-top: 34px; padding: 26px 0; display: flex; align-items: center; gap: 28px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.offer-founding-price > strong { color: var(--lime); font-size: clamp(58px, 6vw, 84px); line-height: .8; letter-spacing: -.055em; }
.offer-founding-price span { display: flex; flex-direction: column; gap: 8px; }
.offer-founding-price b { color: white; font-size: 19px; line-height: 1.2; }
.offer-founding-price small { color: var(--sage); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.offer-founding-inclusions { max-width: 720px; margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.offer-founding-inclusions li { padding: 16px 0 16px 34px; position: relative; color: white; font-size: 17px; font-weight: 800; line-height: 1.35; border-bottom: 1px solid var(--line-light); }
.offer-founding-inclusions li::before { content: "↗"; position: absolute; left: 2px; color: var(--lime); }
.offer-founding-fine-print { max-width: 660px; margin-top: 22px; display: block; color: var(--sage); font-size: 13px; line-height: 1.5; }
.offer-founding-deal { padding: 38px; display: flex; flex-direction: column; align-items: flex-start; color: var(--forest-deep); background: var(--lime); border-radius: 3px 26px 3px 3px; }
.offer-founding-deal > span { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.offer-founding-deal h3 { max-width: 460px; margin: 25px 0 34px; font-size: clamp(38px, 3.6vw, 54px); line-height: .96; }
.offer-founding-deal > strong { font-size: clamp(72px, 7vw, 100px); line-height: .8; letter-spacing: -.065em; }
.offer-founding-deal > small { margin-top: 19px; font-size: 17px; font-weight: 850; }
.offer-founding-deal .button { width: 100%; margin-top: 30px; }
.offer-founding-plan-link { margin-top: 19px; align-self: center; font-size: 14px; font-weight: 850; text-underline-offset: 5px; }
.offer-founding-form-panel { padding: 38px; color: var(--ink); background: var(--paper); border-radius: 3px 26px 3px 3px; box-shadow: var(--shadow); }
.offer-founding-form-panel .eyebrow { color: var(--forest-mid); }
.offer-founding-form-panel h3 { margin: 22px 0 30px; font-size: clamp(42px, 4vw, 60px); line-height: .94; }
.offer-founding-form-panel .offer-lead-form { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.offer-founding-form-panel .button { width: 100%; margin-top: 5px; }
.offer-founding-form-panel .form-reassurance { font-size: 13px; }
.offer-pricing .section-head { margin-bottom: 42px; }
.offer-price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.offer-price-card { min-height: 390px; padding: 30px; display: flex; flex-direction: column; border-radius: 0; color: white; background: var(--forest); border-right: 1px solid rgba(255,255,255,.22); }
.offer-price-card:first-child { border-radius: 3px 0 0 3px; }
.offer-price-card:nth-child(2) { background: var(--brand-navy); }
.offer-price-card:nth-child(3) { color: var(--forest-deep); background: var(--lime); }
.offer-price-card:nth-child(4) { color: var(--forest-deep); background: var(--paper); border: 1px solid var(--line); border-left: 0; border-radius: 0 24px 3px 0; }
.offer-price-card > span { color: #d7e8de; font-size: 15px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.offer-price-card:nth-child(n+3) > span { color: rgba(21,38,29,.72); }
.offer-price-card h3 { margin: 20px 0 12px; font-size: clamp(32px, 2.6vw, 42px); line-height: .98; }
.offer-price-card p { max-width: 350px; margin: 0; color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.45; }
.offer-price-card:nth-child(n+3) p { color: rgba(21,38,29,.72); }
.offer-price-card strong { max-width: 100%; margin-top: auto; font-size: clamp(42px, 3.8vw, 56px); line-height: .86; letter-spacing: -.05em; white-space: nowrap; }
.offer-price-card small { margin-top: 18px; color: rgba(255,255,255,.78); font-size: 17px; font-weight: 800; }
.offer-price-card:nth-child(n+3) small { color: rgba(21,38,29,.72); }
.offer-plan-cta { width: 100%; min-height: 50px; margin-top: 24px; padding: 12px 16px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.5); border-radius: 2px 14px 2px 2px; color: white; font-size: 13px; font-weight: 900; letter-spacing: .05em; text-align: center; text-decoration: none; text-transform: uppercase; }
.offer-price-card:nth-child(3) .offer-plan-cta { color: var(--forest-deep); border-color: rgba(21,38,29,.38); }
.offer-plan-cta:hover, .offer-plan-cta:focus-visible { color: var(--forest-deep); background: white; border-color: white; }
.offer-enterprise-cta { max-width: 100%; margin-top: auto; display: inline-block; align-self: flex-start; color: var(--brand-navy); font-size: clamp(30px, 2.4vw, 36px); font-weight: 900; line-height: 1; letter-spacing: -.025em; text-decoration: none; white-space: nowrap; }
.offer-enterprise-cta:hover, .offer-enterprise-cta:focus-visible { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 6px; }
.offer-capabilities { padding-top: 86px; }
.capability-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; }
.capability-grid li { min-height: 190px; padding: 22px; display: flex; flex-direction: column; align-items: flex-start; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; background: rgba(255,255,255,.58); line-height: 1.2; }
.capability-grid .capability-icon { min-width: 54px; height: 38px; margin: 0 0 auto; padding-inline: 10px; display: grid; place-items: center; border-radius: 1px 10px 1px 1px; color: white; background: var(--forest); }
.capability-grid .capability-icon svg { width: 24px; height: 24px; display: block; }
.capability-grid li:nth-child(3n+2) .capability-icon { background: var(--brand-navy); }
.capability-grid li:nth-child(3n) .capability-icon { color: var(--forest-deep); background: var(--lime); }
.capability-grid strong { margin-top: 24px; font-size: 23px; line-height: 1.05; }
.capability-grid span { margin-top: 9px; color: var(--ink-soft); font-size: 15px; line-height: 1.4; }
.capability-image-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); border: 0; gap: 22px; }
.capability-image-grid li { min-height: 0; padding: 0 0 24px; border: 1px solid var(--line); border-radius: 3px 22px 3px 3px; background: rgba(255,255,255,.68); overflow: hidden; }
.capability-image-grid .capability-media { width: 100%; aspect-ratio: 397 / 460; margin: 0 0 23px; background: #f4efe3; overflow: hidden; }
.capability-image-grid .capability-media img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; }
.capability-image-grid strong, .capability-image-grid > li > span { margin-right: 23px; margin-left: 23px; }
.capability-image-grid strong { margin-top: 0; font-size: 27px; }
.capability-image-grid > li > span { font-size: 16px; }
@media (min-width: 1081px) {
  .drone-use-grid .drone-use-icon { margin-inline: auto; }
  .record-output-grid .record-output-icon { margin-inline: auto; margin-bottom: 0; }
  .record-output-grid h3 { min-height: 58px; margin-top: 30px; }
  .capability-grid .capability-icon { min-width: 68px; height: 50px; margin-bottom: 36px; padding-inline: 12px; }
  .capability-grid .capability-icon svg { width: 32px; height: 32px; }
  .capability-grid strong { margin-top: 0; }
  .home-definition-card p { min-height: 80px; }
  .future-framework .future-step h3 { min-height: 58px; }
  .future-framework .future-step p { min-height: 107px; }
}
.offer-conversation { padding: 110px 0; color: white; background: var(--forest-deep); }
.offer-conversation-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 60px; align-items: end; }
.offer-conversation h2 { max-width: 900px; margin: 18px 0 20px; font-size: clamp(58px, 7.2vw, 102px); line-height: .92; }
.offer-conversation p { max-width: 680px; margin: 0; color: var(--sage); }
.offer-conversation .button { margin-bottom: 9px; }

.pasture-proof-row { margin-top: 8px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 0; overflow: hidden; }
.pasture-proof-row div { min-height: 140px; padding: 24px; display: flex; flex-direction: column; justify-content: flex-start; border-right: 1px solid var(--line); background: white; }
.pasture-proof-row div:last-child { border-right: 0; }
.pasture-proof-row strong { font-size: 21px; line-height: 1.15; }
.pasture-proof-row span { margin-top: 7px; color: var(--ink-soft); font-size: 16px; line-height: 1.42; }
.calibration-photo-grid { margin-top: 46px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 14px; align-items: stretch; }
.calibration-photo { margin: 0; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 3px 24px 3px 3px; background: white; box-shadow: var(--shadow); overflow: hidden; }
.calibration-photo img { width: 100%; height: 520px; display: block; object-fit: cover; }
.calibration-photo-ground img { object-position: center 68%; }
.calibration-photo-aerial img { object-position: center; }
.calibration-photo figcaption { min-height: 130px; padding: 24px 25px 26px; display: flex; flex-direction: column; justify-content: flex-end; }
.calibration-photo figcaption strong { font-size: 23px; line-height: 1.1; }
.calibration-photo figcaption span { margin-top: 8px; color: var(--ink-soft); font-size: 16px; line-height: 1.42; }

/* Founding farms */
.founding-head .head-row { grid-template-columns: auto 1fr auto; }
.founding-head-note { justify-self: center; margin: 0; color: var(--forest-mid); font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.founding-hero { padding: 78px 0 94px; color: white; background: var(--forest-deep); overflow: hidden; }
.founding-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .78fr); gap: clamp(48px, 6vw, 88px); align-items: start; }
.founding-hero-copy { padding-top: 35px; }
.founding-hero .eyebrow { color: var(--lime); }
.founding-hero h1 { max-width: 750px; margin: 22px 0 27px; font-size: clamp(62px, 7vw, 100px); line-height: .91; }
.founding-lead { max-width: 690px; margin: 0; color: #d7e8de; font-size: 21px; line-height: 1.55; }
.founding-offer-line { margin-top: 40px; padding: 26px 0 24px; display: flex; gap: 24px; align-items: center; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.founding-offer-line strong { color: var(--lime); font-family: "Aptos Display", "Trebuchet MS", Arial, sans-serif; font-size: clamp(66px, 7vw, 92px); font-weight: 750; line-height: .78; letter-spacing: -.065em; }
.founding-offer-line span { color: white; font-size: 16px; font-weight: 850; line-height: 1.2; text-transform: uppercase; }
.founding-inclusions { margin: 25px 0 20px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.founding-inclusions li { padding: 8px 11px; color: #d7e8de; border: 1px solid var(--line-light); border-radius: 2px 9px 2px 2px; font-size: 13px; font-weight: 750; line-height: 1.2; }
.founding-plan-link { color: var(--lime); font-size: 14px; font-weight: 800; text-underline-offset: 5px; }
.founding-enquiry { padding: 32px; color: var(--ink); background: var(--cream); border-radius: 3px 28px 3px 3px; box-shadow: 14px 14px 0 rgba(116,209,76,.12); }
.founding-enquiry-label { color: var(--brand-navy); font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.founding-enquiry > h2 { margin: 18px 0 13px; font-size: clamp(37px, 3.5vw, 51px); line-height: .96; }
.founding-enquiry > p { margin: 0 0 25px; color: var(--ink-soft); font-size: 16px; line-height: 1.48; }
.founding-enquiry .lead-form { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.founding-enquiry .field { margin-bottom: 13px; }
.founding-enquiry .field input, .founding-enquiry .field textarea { background: white; }
.founding-enquiry .field-wide { grid-column: 1 / -1; }
.founding-enquiry .button { width: 100%; min-height: 62px; }
.founding-form-details { margin: 2px 0 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founding-form-details summary { padding: 13px 2px; cursor: pointer; color: var(--forest); font-size: 14px; font-weight: 850; list-style-position: inside; }
.founding-form-details summary span { margin-left: 5px; color: var(--ink-soft); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.founding-form-details-body { padding: 7px 0 2px; }
.founding-job-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.founding-job-card { min-height: 440px; padding: 29px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.founding-job-card > span { color: var(--brand-navy); font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 12px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.founding-job-card h3 { margin: auto 0 19px; font-size: clamp(35px, 3.4vw, 49px); line-height: .96; }
.founding-job-card p { min-height: 108px; margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.45; }
.founding-job-card a { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--forest); font-size: 13px; font-weight: 900; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.founding-job-card a:hover { color: var(--brand-navy); }
.founding-job-pasture { background: #e6f1df; }
.founding-job-drone { color: white; background: var(--brand-navy); }
.founding-job-drone > span, .founding-job-drone a { color: var(--lime); }
.founding-job-drone p { color: #d8e7ff; }
.founding-job-drone a { border-color: rgba(255,255,255,.25); }
.founding-job-record { background: #dfeef8; }
.founding-proof { padding-block: 112px; }
.founding-proof-grid { display: grid; grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr); gap: clamp(55px, 8vw, 105px); align-items: center; }
.founding-proof-visual { margin: 0; padding: 8px; background: white; border: 1px solid var(--line); border-radius: 3px 28px 3px 3px; box-shadow: var(--shadow); overflow: hidden; }
.founding-proof-visual img { width: 100%; height: auto; border-radius: 1px 20px 1px 1px; }
.founding-proof-copy h2 { max-width: 680px; margin: 19px 0 26px; font-size: clamp(52px, 6vw, 82px); line-height: .94; }
.founding-proof-copy > p { max-width: 680px; margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.58; }
.founding-proof-copy ul { margin: 36px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.founding-proof-copy li { padding: 18px 0; display: grid; grid-template-columns: 130px 1fr; gap: 22px; border-bottom: 1px solid var(--line); }
.founding-proof-copy li strong { color: var(--brand-navy); }
.founding-proof-copy li span { color: var(--ink-soft); font-size: 17px; }
.founding-path { padding-block: 112px; }
.founding-path-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.founding-path-grid article { min-height: 360px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.founding-path-grid span { color: var(--lime); font-family: "SFMono-Regular", Consolas, monospace; font-size: 14px; font-weight: 900; }
.founding-path-grid h3 { margin: auto 0 15px; font-size: clamp(32px, 3.2vw, 46px); line-height: .98; }
.founding-path-grid p { margin: 0; color: var(--sage); font-size: 17px; line-height: 1.5; }
.founding-close { padding: 105px 0; color: white; background: var(--brand-navy); }
.founding-close-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 60px; align-items: end; }
.founding-close .eyebrow { color: var(--lime); }
.founding-close h2 { max-width: 850px; margin: 18px 0 19px; font-size: clamp(52px, 6.5vw, 90px); line-height: .92; }
.founding-close p { max-width: 690px; margin: 0; color: #d8e7ff; }
.founding-close .button { margin-bottom: 8px; }

/* Contact */
.contact-section { min-height: calc(100vh - 230px); display: flex; align-items: center; }
.contact-simple { display: grid; grid-template-columns: .62fr 1fr; gap: 90px; align-items: start; }
.contact-heading h1 { margin: 18px 0 20px; font-size: clamp(64px, 7vw, 100px); line-height: .94; }
.contact-heading p { max-width: 520px; margin-bottom: 18px; color: var(--ink-soft); font-size: 18px; line-height: 1.55; }
.contact-heading > a { color: var(--brand-navy); font-weight: 750; text-decoration: none; }
.contact-art { width: min(100%, 520px); margin: 36px 0 0; padding: 9px; border: 1px solid var(--line); border-radius: 3px 26px 3px 3px; background: white; box-shadow: var(--shadow); overflow: hidden; }
.contact-art img { width: 100%; height: auto; display: block; border-radius: 2px 19px 2px 2px; }

/* Future-proof */
.future-illustration { margin: 0; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow); overflow: hidden; }
.future-illustration img { width: 100%; border-radius: calc(var(--radius-lg) - 10px); }
.future-illustration.future-photo { padding: 0; border: 0; background: var(--forest); }
.future-illustration.future-photo img { aspect-ratio: 1 / 1; object-fit: cover; border-radius: inherit; }
.wide-farm-visual { position: relative; min-height: 650px; margin: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.wide-farm-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wide-farm-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(6,28,21,.88)); }
.wide-farm-visual figcaption { position: absolute; z-index: 1; right: 30px; bottom: 26px; left: 30px; display: flex; justify-content: space-between; gap: 20px; align-items: end; color: white; }
.wide-farm-visual figcaption strong { font-size: clamp(34px, 5vw, 64px); line-height: 1; }
.wide-farm-visual figcaption span { font-size: 14px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.future-manifesto { padding: 125px 0; color: white; background: var(--forest-deep); }
.future-manifesto .eyebrow { color: var(--lime); }
.future-manifesto h2 { margin: 18px 0 28px; font-size: clamp(64px, 10vw, 136px); line-height: .9; }
.future-manifesto h2 em { color: var(--sky); font-style: normal; }
.future-manifesto p { max-width: 720px; margin: 0; color: var(--sage); }

[data-offer-card][hidden] { display: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .visual-panel.photo-drone video, .hero-loop-video, .home-hero-film { display: none; }
  .signal-source-flow path, .signal-source-card::before { animation: none; }
  .signal-packet { display: none; }
}

@media (max-width: 1280px) {
  .site-head .head-row { grid-template-columns: auto 1fr; }
  .founding-head .head-row { grid-template-columns: auto 1fr auto; }
  .primary-nav { grid-column: 1 / -1; justify-self: stretch; order: 3; padding: 8px 0 11px; overflow: visible; }
  .head-actions { justify-self: end; }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .home-campaign-hero .hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .home-campaign-hero .home-hero-copy { max-width: 850px; }
  .home-hero-video-card { width: min(100%, 620px); justify-self: center; }
  .hero-model { min-height: 460px; }
  .offer-grid { grid-template-columns: 1fr; }
  .onboarding-step-grid, .onboarding-resource-grid { grid-template-columns: 1fr; }
  .onboarding-step-grid article { min-height: 300px; }
  .onboarding-video-card.featured { grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .offer-card { min-height: 430px; }
  .platform-loop, .future-ladder { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-concept { min-height: 390px; }
  .visual-story, .next-grid { grid-template-columns: 1fr; }
  .visual-loop { grid-template-areas: "see" "understand" "act" "picture"; }
  .drone-loop, .price-grid { grid-template-columns: repeat(2,1fr); }
  .record-reveal, .contact-simple { grid-template-columns: 1fr; gap: 48px; }
  .home-offer-close { grid-template-columns: 1fr; }
  .offer-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-price-card { border-bottom: 1px solid rgba(255,255,255,.22); }
  .offer-price-card:first-child { border-radius: 3px 0 0 0; }
  .offer-price-card:nth-child(2) { border-right: 0; border-radius: 0 22px 0 0; }
  .offer-price-card:nth-child(3) { border-bottom: 0; border-radius: 0 0 0 3px; }
  .offer-price-card:nth-child(4) { border-bottom: 1px solid var(--line); border-radius: 0 0 3px 0; }
  .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stories-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .stories-hero-lead { max-width: 760px; }
  .stories-library { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stories-library .story-card, .stories-library .story-card:nth-child(2) { grid-column: span 1; }
  .stories-library .story-card-featured { grid-column: span 1; }
  .about-principles { grid-template-columns: 1fr; }
  .about-principles article { min-height: 250px; }
  .about-belief-grid { grid-template-columns: 1fr; gap: 65px; }
  .about-context-art { justify-self: center; }
  .signal-source-system { justify-self: center; }
  .vision-signal-grid { grid-template-columns: 1fr; }
  .vision-path-grid { grid-template-columns: repeat(2, 1fr); }
  .home-definition-grid { grid-template-columns: 1fr; }
  .home-definition-card { min-height: 260px; }
  .home-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-trust-grid article { min-height: 300px; }
  .record-output-grid { grid-template-columns: repeat(2, 1fr); }
  .record-output-grid article:nth-child(2) { border-right: 0; }
  .record-output-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .record-output-grid article:nth-child(-n+2) { border-bottom-color: var(--line); }
  .home-record-statement-grid { grid-template-columns: 1fr; gap: 42px; align-items: start; }
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability-grid li:nth-child(n) .capability-icon { color: white; background: var(--forest); }
  .offer-founding-grid { grid-template-columns: 1fr; gap: 58px; }
  .offer-founding-deal { width: min(100%, 760px); }
  .offer-founding-form-panel { width: min(100%, 760px); }
  .offer-conversation-grid { grid-template-columns: 1fr; align-items: start; }
  .founding-hero-grid { grid-template-columns: 1fr; }
  .founding-hero-copy { max-width: 820px; padding-top: 0; }
  .founding-enquiry { width: min(100%, 760px); }
  .founding-job-grid { grid-template-columns: 1fr; }
  .founding-job-card { min-height: 350px; }
  .founding-job-card p { min-height: 0; }
  .founding-proof-grid { grid-template-columns: 1fr; }
  .founding-proof-visual { width: min(100%, 720px); }
  .founding-path-grid { grid-template-columns: 1fr; }
  .founding-path-grid article { min-height: 280px; }
  .founding-close-grid { grid-template-columns: 1fr; align-items: start; }
  .home-future-strip { grid-template-columns: 1fr; }
  .home-future-strip figure { min-height: 360px; }
  .future-reporting-callout { grid-template-columns: 1fr; }
  .story-article-hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .story-article-image { width: min(100%, 720px); aspect-ratio: 1; }
  .story-article-close { grid-template-columns: 1fr; gap: 34px; align-items: start; }
}

@media (max-width: 720px) {
  :root { --body-size: 20px; }
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .site-head .head-row { min-height: 68px; gap: 12px; padding-top: 8px; align-items: start; }
  .brand img { width: 36px; height: 36px; }
  .brand-copy small { display: none; }
  .brand, .head-actions { align-self: start; }
  .head-cta { min-height: 46px; padding: 0 14px; font-size: 11px; }
  .head-cta-long { display: none; }
  .head-cta-short { display: inline; }
  .founding-head .head-row { min-height: 68px; grid-template-columns: 1fr auto; align-items: center; }
  .founding-head-note { display: none; }
  .founding-head .brand, .founding-head .head-actions { align-self: center; }
  .primary-nav { gap: 0; justify-content: space-between; align-self: end; overflow-x: visible; }
  .primary-nav > a { min-height: 44px; flex: 0 0 auto; display: inline-flex; align-items: center; padding-inline: 3px; font-size: 8.5px; letter-spacing: .04em; }
  .nav-dropdown summary { min-height: 44px; padding-inline: 3px; font-size: 8.5px; letter-spacing: .04em; }
  .nav-dropdown summary span { font-size: 11px; }
  .nav-dropdown-menu { width: min(230px, calc(100vw - 28px)); top: calc(100% + 2px); }
  .nav-dropdown:nth-of-type(2) .nav-dropdown-menu { left: auto; right: 0; }
  .nav-dropdown-menu a { min-height: 42px; padding-inline: 11px; font-size: 10px; }
  .vision-many-hands-art { margin-top: 32px; box-shadow: 9px 9px 0 rgba(12, 68, 49, .07); }
  .hero, .offer-hero { min-height: auto; padding: 76px 0 66px; }
  .home-hero { padding: 55px 0 64px; }
  .home-campaign-hero { padding: 58px 0 72px; }
  .hero h1, .offer-hero h1 { font-size: clamp(52px, 15vw, 74px); }
  .home-hero h1, .record-hero h1 { font-size: clamp(48px, 13vw, 64px); }
  .home-hero .eyebrow { margin-bottom: 20px; }
  .home-campaign-hero .eyebrow { margin-bottom: 0; }
  .home-campaign-hero .hero-grid { gap: 46px; }
  .home-campaign-hero .lead { font-size: 20px; }
  .home-intro-film { padding: 64px 0; }
  .home-intro-film .eyebrow { margin-bottom: 22px; }
  .home-intro-video-frame { padding: 5px; border-radius: 2px 19px 2px 2px; box-shadow: 8px 8px 0 rgba(116,209,76,.08); }
  .home-intro-video { border-radius: 1px 13px 1px 1px; }
  .hero-grid { gap: 45px; }
  .onboarding-start-card { min-height: 0; }
  .onboarding-video-grid { grid-template-columns: 1fr; }
  .onboarding-video-card.featured { grid-column: auto; }
  .onboarding-step-grid article, .onboarding-resource-grid > a { min-height: 320px; }
  .hero-model, .visual-panel { min-height: 440px; }
  .drone-gallery { padding: 65px 0 70px; }
  .drone-gallery-top { display: block; }
  .drone-gallery-top h2 { font-size: clamp(43px, 12vw, 60px); }
  .drone-gallery-controls { width: max-content; margin-top: 26px; }
  .drone-gallery-track { grid-auto-columns: 88%; }
  .drone-gallery-slide figcaption { min-height: 112px; display: block; }
  .drone-gallery-slide figcaption span { margin-top: 8px; display: block; text-align: left; }
  .section { padding: 72px 0; }
  .site-offer-path { padding-bottom: 110px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head h2 { font-size: clamp(42px, 12vw, 62px); }
  .offer-card { min-height: 460px; }
  .offer-card h3 { min-height: auto; margin-top: 6px; }
  .platform-loop, .step-grid, .future-ladder, .story-grid, .field-grid { grid-template-columns: 1fr; }
  .drone-loop, .promise-grid, .price-grid, .next-grid { grid-template-columns: 1fr; }
  .drone-hardware-grid, .drone-development { grid-template-columns: 1fr; }
  .drone-decision-loop { grid-template-columns: 1fr; gap: 40px; }
  .drone-hardware-card { min-height: 370px; padding: 27px; }
  .drone-development { padding: 27px; gap: 26px; }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .home-hero .button-row { display: grid; }
  .button-row .button { width: 100%; min-height: 64px; padding-inline: 20px; }
  .product-shot { min-height: 430px; }
  .hero-home-shot { min-height: 0; }
  .product-shot figcaption { display: block; }
  .product-shot figcaption span { margin-top: 7px; display: block; }
  .loop-step { min-height: 220px; }
  .loop-step h3 { margin-top: 58px; }
  .step-card, .future-step { min-height: 260px; }
  .graphic-frame { margin-top: 42px; padding: 6px; border-radius: 3px 19px 3px 3px; }
  .graphic-frame img { border-radius: 1px 13px 1px 1px; }
  .lead-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .record-focus { min-height: 0; grid-template-columns: 1fr; }
  .record-focus-copy { padding: 42px 28px 46px; }
  .record-focus-copy h3 { font-size: clamp(44px, 12vw, 52px); }
  .record-focus-visual { min-height: 0; aspect-ratio: 1 / 1; }
  .farm-memory-ledger { grid-template-columns: 1fr; }
  .farm-memory-ledger-head { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .farm-memory-ledger li { min-height: 120px; padding: 22px 24px; grid-template-columns: 58px 1fr; gap: 16px; }
  .farm-memory-ledger strong { font-size: 22px; }
  .record-statement { padding: 78px 0; }
  .offer-image-hero { min-height: 650px; padding: 82px 0 56px; }
  .offer-image-hero > img { object-position: 34% center; }
  .offer-image-hero::after { background: linear-gradient(180deg, rgba(6,28,21,.08) 18%, rgba(6,28,21,.9) 100%); }
  .offer-image-copy { max-width: none; margin: 0; }
  .offer-image-copy h1 { font-size: clamp(52px, 14vw, 68px); }
  .offer-founding { padding: 82px 0; }
  .offer-founding-intro h2 { font-size: clamp(48px, 13vw, 64px); }
  .offer-founding-intro > p { font-size: 18px; }
  .offer-founding-price { align-items: flex-start; gap: 20px; }
  .offer-founding-price > strong { font-size: 58px; }
  .offer-founding-price b { font-size: 17px; }
  .offer-founding-form-panel { padding: 27px 22px; }
  .offer-founding-form-panel h3 { font-size: clamp(40px, 12vw, 50px); }
  .offer-founding-deal { padding: 27px; }
  .offer-founding-deal h3 { font-size: clamp(38px, 11vw, 48px); }
  .founding-hero { padding: 58px 0 72px; }
  .founding-hero-grid { gap: 48px; }
  .founding-hero h1 { font-size: clamp(50px, 14vw, 66px); }
  .founding-lead { font-size: 18px; }
  .founding-offer-line { display: block; }
  .founding-offer-line strong, .founding-offer-line span { display: block; }
  .founding-offer-line span { margin-top: 18px; }
  .founding-inclusions { display: grid; }
  .founding-enquiry { padding: 25px 21px; }
  .founding-enquiry > h2 { font-size: clamp(37px, 11vw, 49px); }
  .founding-enquiry .field-wide { grid-column: auto; }
  .founding-job-card { min-height: 330px; padding: 25px; }
  .founding-proof { padding-block: 78px; }
  .founding-proof-copy h2 { font-size: clamp(45px, 13vw, 62px); }
  .founding-proof-copy li { grid-template-columns: 1fr; gap: 5px; }
  .founding-path { padding-block: 80px; }
  .founding-path-grid article { min-height: 265px; padding: 25px; }
  .founding-close { padding: 82px 0; }
  .founding-close h2 { font-size: clamp(47px, 13vw, 64px); }
  .founding-close .button { width: 100%; }
  .offer-price-grid { grid-template-columns: 1fr; }
  .offer-price-card { min-height: 330px; padding: 25px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); border-radius: 0; }
  .offer-price-card:first-child { border-radius: 3px 22px 0 3px; }
  .offer-price-card:nth-child(2), .offer-price-card:nth-child(3) { border-radius: 0; }
  .offer-price-card:nth-child(3) { border-bottom: 1px solid rgba(21,38,29,.18); }
  .offer-price-card:nth-child(4) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); border-radius: 0 0 3px 3px; }
  .capability-grid { grid-template-columns: 1fr; gap: 0; }
  .capability-grid li { min-height: 168px; padding: 20px; border-radius: 0; }
  .capability-image-grid { gap: 16px; }
  .capability-image-grid li { min-height: 0; padding: 0 0 22px; border-radius: 3px 18px 3px 3px; }
  .capability-image-grid .capability-media { aspect-ratio: 397 / 430; }
  .capability-image-grid strong, .capability-image-grid > li > span { margin-right: 20px; margin-left: 20px; }
  .capability-grid .capability-icon { min-width: 49px; height: 38px; border-radius: 1px 10px 1px 1px; }
  .capability-grid strong { margin-top: 20px; font-size: 22px; }
  .offer-conversation { padding: 84px 0; }
  .offer-conversation .button { width: 100%; min-height: 64px; }
  .record-output-grid, .pasture-proof-row { grid-template-columns: 1fr; }
  .record-output-grid article, .pasture-proof-row div { border-right: 0; border-bottom: 1px solid var(--line); }
  .record-output-grid article:last-child, .pasture-proof-row div:last-child { border-bottom: 0; }
  .home-record-statement { padding: 84px 0; }
  .home-record-statement h2 { font-size: clamp(48px, 14vw, 68px); }
  .calibration-photo-grid { margin-top: 38px; grid-template-columns: 1fr; }
  .calibration-photo img { height: auto; object-fit: contain; }
  .calibration-photo figcaption { min-height: 0; }
  .record-output-head { margin-top: 60px; }
  .wide-farm-visual { min-height: 500px; }
  .wide-farm-visual figcaption { display: block; }
  .wide-farm-visual figcaption span { display: block; margin-top: 12px; }
  .future-manifesto { padding: 90px 0; }
  .home-loop-head { margin-bottom: 40px; }
  .home-loop-head h2 { font-size: clamp(56px, 16vw, 78px); }
  .home-loop-head .eyebrow { margin-bottom: 22px; }
  .home-loop-head p { margin-top: 22px; font-size: 22px; line-height: 1.38; }
  .home-definition-card { min-height: 250px; padding: 25px; }
  .home-offer-note { width: 100%; grid-template-columns: 1fr auto; gap: 3px 12px; }
  .home-offer-note strong { grid-column: 1; }
  .home-offer-note span { grid-column: 1; }
  .home-offer-note b { grid-column: 2; grid-row: 1 / span 2; }
  .home-trust-grid { grid-template-columns: 1fr; }
  .home-trust-grid article { min-height: 265px; padding: 25px; }
  .home-future-copy { padding: 30px 25px; }
  .home-future-copy h3 { margin-top: 22px; font-size: clamp(48px, 13vw, 62px); }
  .home-future-copy p { font-size: 19px; }
  .home-future-link { width: 100%; min-height: 62px; margin-top: 36px; justify-content: center; text-align: center; }
  .home-future-strip figure { min-height: 300px; }
  .future-reporting-callout { padding: 28px 25px; gap: 28px; }
  .future-reporting-callout h3 { margin-top: 24px; }
  .future-reporting-callout p { font-size: 18px; }
  .story-panel.loop-word h3 { font-size: 54px; }
  .home-offer-close { gap: 32px; }
  .home-offer-close .button { width: 100%; min-height: 72px; }
  .about-story-head { margin-bottom: 38px; grid-template-columns: 1fr; gap: 25px; align-items: start; }
  .about-principles article { min-height: 245px; padding: 25px; }
  .about-principles article > div { padding-top: 48px; }
  .about-story-head h2 { font-size: clamp(48px, 14vw, 66px); }
  .story-all-link { justify-self: start; }
  .story-card, .stories-library .story-card { min-height: 350px; padding: 25px; }
  .stories-library .story-card { min-height: auto; }
  .stories-hero { padding: 76px 0 70px; }
  .stories-hero h1 { font-size: clamp(68px, 24vw, 104px); }
  .stories-hero-lead { padding-top: 23px; font-size: 23px; }
  .stories-library { grid-template-columns: 1fr; gap: 14px; }
  .stories-library .story-card,
  .stories-library .story-card:nth-child(2),
  .stories-library .story-card-featured { grid-column: 1 / -1; min-height: auto; padding: 18px; display: flex; flex-direction: column; }
  .stories-library .story-card-featured .story-media { width: 100%; height: auto; aspect-ratio: 1; margin: 0 0 24px; }
  .stories-library .story-card-featured small,
  .stories-library .story-card-featured h3,
  .stories-library .story-card-featured p,
  .stories-library .story-card-featured::after { grid-column: auto; grid-row: auto; }
  .stories-library .story-card:nth-child(n+3) .story-media { aspect-ratio: 1; }
  .story-media { margin-bottom: 24px; border-radius: 2px 22px 2px 2px; }
  .story-grid-featured .story-card { min-height: 320px; grid-template-columns: 76px minmax(0, 1fr); column-gap: 18px; }
  .story-grid-featured-media { grid-template-columns: 1fr; }
  .story-grid-featured-media .story-card { min-height: auto; display: flex; }
  .story-icon { width: 76px; height: 76px; margin-bottom: 27px; border-radius: 2px 20px 2px 2px; }
  .story-grid-featured .story-icon { margin-bottom: 0; }
  .story-icon svg { width: 48px; height: 48px; }
  .story-grid-featured .story-card h3 { margin-top: 28px; }
  .story-article-hero { padding: 38px 0 60px; }
  .story-article-back { margin-bottom: 31px; }
  .story-article-heading h1 { font-size: clamp(48px, 13vw, 65px); }
  .story-article-meta { display: grid; gap: 5px; font-size: 12px; }
  .story-article-meta span::after { display: none; }
  .story-article-image { aspect-ratio: 4 / 3; border-radius: 2px 20px 2px 2px; box-shadow: 9px 9px 0 rgba(116,209,76,.12); }
  .story-article-body { padding: 70px 0 82px; }
  .story-article-prose p, .story-article-prose li { font-size: 18px; line-height: 1.65; }
  .story-article-prose .article-lead { font-size: 23px; }
  .story-article-prose h2 { margin-top: 58px; font-size: clamp(34px, 10vw, 46px); }
  .story-article-prose h3 { margin-top: 38px; font-size: 25px; }
  .story-article-prose .article-pullquote { margin: 42px 0; padding: 28px 24px; font-size: 27px; }
  .story-article-close { margin-top: 70px; padding: 28px 24px; }
  .story-article-close .button { width: 100%; }
  .story-article-next { grid-template-columns: 1fr; }
  .story-article-next a { min-height: 128px; padding: 22px; }
  .story-article-next a + a { border-top: 1px solid var(--line); border-left: 0; }
  .about-belief { padding-block: 82px; }
  .about-belief h2 { font-size: clamp(48px, 14vw, 66px); }
  .about-context-art { width: min(100%, 390px); }
  .signal-source-system { width: min(100%, 430px); }
  .signal-source-heading { gap: 9px; font-size: 9px; }
  .signal-inputs span { min-width: 96px; min-height: 36px; padding-inline: 10px; gap: 7px; font-size: 9px; }
  .signal-source-card { min-height: 184px; padding: 19px 14px; border-radius: 2px 22px 2px 2px; }
  .signal-source-card small { margin-bottom: 13px; font-size: 8px; }
  .signal-source-card strong { font-size: clamp(24px, 8vw, 34px); }
  .signal-source-card span { margin-top: 18px; padding-top: 10px; font-size: 8px; }
  .vision-signal-card { min-height: 310px; padding: 25px; }
  .vision-path-grid { grid-template-columns: 1fr; }
  .vision-loop-graphic { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 24px 20px 72px 24px; }
  .vision-loop-graphic::before { width: 2px; height: auto; top: 41px; right: auto; bottom: 41px; left: 43px; }
  .vision-loop-graphic::after { top: auto; right: auto; bottom: 18px; left: 22px; }
  .vision-loop-node { min-height: 56px; padding: 0; display: grid; grid-template-columns: 38px 1fr; grid-template-rows: auto auto; column-gap: 18px; align-items: center; text-align: left; }
  .vision-loop-node b { grid-column: 2; margin: 0 0 2px; }
  .vision-loop-node i { grid-column: 1; grid-row: 1 / 3; margin: 0; justify-self: center; }
  .vision-loop-node span { grid-column: 2; }
  .vision-manifesto { padding: 88px 0; }
  .vision-manifesto h2 { font-size: clamp(50px, 14vw, 70px); }
}

/* Keep FAQ heading scale after the shared hero and responsive rules. */
.faq-hero h1 { max-width: 780px; font-size: clamp(60px, 7.2vw, 98px); }
@media (max-width: 720px) {
  .faq-hero h1 { font-size: clamp(50px, 14vw, 70px); }
}

@media (max-width: 980px) {
  .about-hero .hero-grid { grid-template-columns: 1fr; }
  .about-hero-art { width: min(100%, 680px); justify-self: start; }
}
