:root {
  color-scheme: dark;
  --ink: #080d0b;
  --ink-deep: #050806;
  --chrome: #0b110e;
  --panel: #101713;
  --panel-raised: #151e19;
  --panel-muted: #1b2420;
  --stroke: #344039;
  --text: #e6e7dc;
  --muted: #a8b1a9;
  --sage: #a7c49a;
  --sage-deep: #61715f;
  --amber: #d4973f;
  --amber-soft: #3b2b16;
  --danger: #b9553f;
  --cream: #f2ead8;
  --max-width: 1180px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 28px 90px rgb(0 0 0 / 34%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  line-height: 1.5;
  background: var(--ink);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 2%, rgb(23 49 38 / 48%), transparent 30rem),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: url("assets/night-watch-texture.webp") repeat;
  background-size: 700px;
  opacity: 0.42;
  mix-blend-mode: screen;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--cream);
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 22px 0;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 54px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 720;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgb(167 196 154 / 24%);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgb(0 0 0 / 22%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-action {
  justify-self: end;
}

.status-chip,
.eyebrow,
.section-kicker,
.micro-label {
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgb(167 196 154 / 27%);
  border-radius: 999px;
  color: var(--sage);
  background: rgb(16 23 19 / 78%);
  backdrop-filter: blur(14px);
}

.status-chip::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--amber);
  box-shadow: 0 0 0 5px rgb(212 151 63 / 10%);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 720px;
  margin: 18px auto 0;
  padding: 54px 0 98px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--sage);
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--sage-deep);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.6rem, 7.3vw, 6.8rem);
  font-weight: 690;
  letter-spacing: -0.068em;
  line-height: 0.91;
}

.hero h1 span {
  display: block;
  color: var(--sage);
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 0.96rem;
  font-weight: 740;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.brand:focus-visible,
.nav-links a:focus-visible,
.footer-links a:focus-visible,
.text-link:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.button-primary {
  color: #171109;
  background: var(--amber);
  box-shadow: 0 18px 44px rgb(212 151 63 / 18%);
}

.button-primary::after {
  content: "↘";
  font-size: 1.05rem;
}

.button-secondary {
  border-color: rgb(167 196 154 / 23%);
  color: var(--text);
  background: rgb(16 23 19 / 62%);
}

.availability-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin-top: 22px;
  margin-bottom: 0;
  padding: 0;
  color: #7f8a82;
  font-size: 0.79rem;
  font-weight: 620;
  list-style: none;
}

.availability-note li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.availability-note li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--sage-deep);
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-glow {
  position: absolute;
  inset: 11% 4% 11% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(61 94 72 / 42%), transparent 65%);
  filter: blur(18px);
}

.device {
  overflow: hidden;
  border: 1px solid rgb(212 224 212 / 22%);
  border-radius: clamp(31px, 4vw, 48px);
  background: #050705;
  box-shadow:
    0 0 0 7px #111814,
    0 0 0 8px rgb(120 140 128 / 38%),
    var(--shadow);
}

.device img {
  width: 100%;
  height: auto;
}

.hero-device {
  position: absolute;
  z-index: 3;
  top: 2%;
  right: 4%;
  width: min(67%, 365px);
  transform: rotate(2.2deg);
}

.hero-device-secondary {
  position: absolute;
  z-index: 1;
  top: 18%;
  left: 3%;
  width: min(56%, 300px);
  opacity: 0.78;
  transform: rotate(-7deg);
  filter: saturate(0.72);
}

.detection-card {
  position: absolute;
  z-index: 5;
  right: -2%;
  bottom: 7%;
  width: min(270px, 62%);
  padding: 18px;
  border: 1px solid rgb(167 196 154 / 26%);
  border-radius: 18px;
  background: rgb(16 23 19 / 90%);
  box-shadow: 0 20px 60px rgb(0 0 0 / 35%);
  backdrop-filter: blur(18px);
}

.detection-card .micro-label {
  color: var(--sage);
}

.detection-result {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.detection-result strong {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.detection-result span {
  color: var(--amber);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(calc(100% - 40px), var(--max-width));
  margin: -18px auto 0;
  padding: 0;
  border: 1px solid rgb(167 196 154 / 16%);
  border-radius: var(--radius-md);
  background: rgb(11 17 14 / 76%);
  box-shadow: 0 22px 70px rgb(0 0 0 / 18%);
  backdrop-filter: blur(18px);
  list-style: none;
}

.trust-item {
  min-width: 0;
  padding: 23px 25px;
}

.trust-item + .trust-item {
  border-left: 1px solid rgb(167 196 154 / 14%);
}

.trust-item strong {
  display: block;
  color: var(--text);
  font-size: 0.94rem;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: #7f8982;
  font-size: 0.8rem;
}

.section {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 158px) 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.3fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 52px;
}

.section-kicker {
  display: block;
  margin-bottom: 17px;
  color: var(--amber);
}

.section-heading h2,
.privacy-copy h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  font-weight: 670;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--stroke);
}

.workflow-step {
  position: relative;
  padding: 38px clamp(22px, 3vw, 38px) 12px 0;
}

.workflow-step + .workflow-step {
  padding-left: clamp(22px, 3vw, 38px);
  border-left: 1px solid var(--stroke);
}

.step-number {
  display: block;
  margin-bottom: 72px;
  color: var(--sage);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.workflow-step h3 {
  max-width: 280px;
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 670;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.workflow-step p {
  max-width: 320px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.67;
}

.field-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgb(167 196 154 / 18%);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: 0 20px 56px rgb(0 0 0 / 22%);
}

.field-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgb(5 8 6 / 78%) 100%);
}

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

.field-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-location-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgb(212 151 63 / 21%);
  border-radius: var(--radius-sm);
  background: rgb(59 43 22 / 34%);
}

.field-location-note .micro-label {
  color: var(--amber);
}

.field-location-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.privacy-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgb(167 196 154 / 18%);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.wildlife-frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.wildlife-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 48%, rgb(8 13 11 / 22%) 74%, var(--panel) 100%),
    linear-gradient(0deg, rgb(8 13 11 / 52%), transparent 35%);
}

.wildlife-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subject-label {
  position: absolute;
  z-index: 3;
  bottom: 27px;
  left: 27px;
  padding: 11px 14px;
  border: 1px solid rgb(230 231 220 / 20%);
  border-radius: 10px;
  background: rgb(5 8 6 / 78%);
  backdrop-filter: blur(12px);
}

.subject-label span,
.subject-label strong {
  display: block;
}

.subject-label span {
  color: var(--sage);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subject-label strong {
  margin-top: 2px;
  font-size: 1.1rem;
}

.privacy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 76px);
}

.privacy-copy h2 {
  margin-top: 13px;
  font-size: clamp(2.7rem, 4.2vw, 4.2rem);
}

.privacy-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.privacy-list {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 13px;
  align-items: start;
  color: var(--text);
  font-size: 0.93rem;
}

.privacy-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  border: 1px solid rgb(167 196 154 / 33%);
  border-radius: 50%;
  place-items: center;
  content: "✓";
  color: var(--sage);
  font-size: 0.7rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 32px;
  color: var(--sage);
  font-size: 0.87rem;
  font-weight: 720;
  text-decoration: none;
}

.text-link::after {
  content: "→";
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 270px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid rgb(167 196 154 / 15%);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgb(21 30 25 / 96%), rgb(12 18 15 / 96%));
}

.feature-card:nth-child(1),
.feature-card:nth-child(4) {
  grid-column: span 7;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-column: span 5;
}

.feature-index {
  color: var(--sage-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  max-width: 430px;
  margin: 76px 0 0;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 670;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.feature-card p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.66;
}

.feature-card::after {
  position: absolute;
  top: -45px;
  right: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgb(167 196 154 / 9%);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 24px rgb(167 196 154 / 2%),
    0 0 0 48px rgb(167 196 154 / 1.5%);
}

.screens-section {
  overflow: hidden;
  padding-bottom: 40px;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: start;
  padding: 32px 28px 8px;
}

.screen-shot {
  min-width: 0;
}

.screen-shot:nth-child(3n + 2) {
  padding-top: 68px;
}

.screen-shot .device {
  border-radius: clamp(27px, 3vw, 39px);
}

.screen-caption {
  margin-top: 30px;
}

.screen-caption .micro-label {
  color: var(--amber);
}

.screen-caption h3 {
  margin: 8px 0 0;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.screen-caption p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.faq-list {
  border-top: 1px solid var(--stroke);
}

.faq-list details {
  border-bottom: 1px solid var(--stroke);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 630;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--sage);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -6px 0 28px;
  color: var(--muted);
  line-height: 1.72;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  min-height: 420px;
  padding: clamp(42px, 8vw, 84px);
  overflow: hidden;
  border: 1px solid rgb(212 151 63 / 25%);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 18%, rgb(212 151 63 / 18%), transparent 28rem),
    linear-gradient(135deg, #171d17, #0c110e);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  position: absolute;
  right: -75px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  content: "";
  background: url("assets/brand-mark.webp") center / contain no-repeat;
  opacity: 0.07;
  transform: rotate(-8deg);
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-panel p {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.cta-actions {
  position: relative;
  z-index: 1;
  min-width: 190px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 80px 0 42px;
  color: #788179;
  font-size: 0.78rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.footer-copy p {
  margin: 0;
}

.footer-copy p + p {
  margin-top: 5px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

/* Legal and support pages */
.subpage-body {
  background:
    radial-gradient(circle at 70% -5%, rgb(23 49 38 / 42%), transparent 30rem),
    var(--ink);
}

.subpage-header {
  border-bottom: 1px solid rgb(167 196 154 / 11%);
}

.subpage-header .site-header {
  padding-top: 16px;
  padding-bottom: 16px;
}

.subpage-header .nav-shell {
  grid-template-columns: 1fr auto;
}

.subpage-main {
  width: min(calc(100% - 40px), 860px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0 30px;
}

.subpage-intro {
  margin-bottom: 50px;
}

.subpage-intro h1 {
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.subpage-intro p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.document-panel {
  padding: clamp(28px, 6vw, 62px);
  border: 1px solid rgb(167 196 154 / 17%);
  border-radius: var(--radius-lg);
  background: rgb(16 23 19 / 86%);
  box-shadow: var(--shadow);
}

.document-panel h2 {
  margin: 42px 0 12px;
  color: var(--sage);
  font-size: 1.12rem;
  letter-spacing: -0.015em;
}

.document-panel h2:first-child {
  margin-top: 0;
}

.document-panel p,
.document-panel li {
  color: #b6bdb6;
  font-size: 0.96rem;
  line-height: 1.75;
}

.document-panel strong {
  color: var(--text);
}

.document-panel a {
  color: var(--sage);
  text-underline-offset: 3px;
}

.document-panel ul {
  padding-left: 21px;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 36px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 660px;
    margin-top: 12px;
  }

  .hero-device {
    right: 14%;
    width: min(54%, 350px);
  }

  .hero-device-secondary {
    left: 13%;
    width: min(46%, 290px);
  }

  .detection-card {
    right: 8%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .section-heading p {
    max-width: 620px;
  }

  .privacy-stage {
    grid-template-columns: 1fr;
  }

  .wildlife-frame {
    min-height: 520px;
  }

  .wildlife-frame::after {
    background: linear-gradient(0deg, var(--panel), transparent 42%);
  }

  .privacy-copy {
    margin-top: -70px;
    padding-top: 96px;
  }

  .feature-card:nth-child(n) {
    grid-column: span 6;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .trust-bar,
  .section,
  .site-footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    padding-top: 14px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-action .status-chip {
    padding: 0 11px;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .hero {
    gap: 22px;
    margin-top: 4px;
    padding-top: 42px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16.2vw, 5.5rem);
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 1.02rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    flex: 1 1 220px;
  }

  .hero-visual {
    min-height: 560px;
    margin-top: 24px;
  }

  .hero-device {
    right: 5%;
    width: min(64%, 320px);
  }

  .hero-device-secondary {
    top: 15%;
    left: 3%;
    width: min(51%, 250px);
  }

  .detection-card {
    right: 2%;
    bottom: 3%;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }

  .trust-item {
    padding: 20px;
  }

  .trust-item + .trust-item {
    border-left: 0;
  }

  .trust-item:nth-child(even) {
    border-left: 1px solid rgb(167 196 154 / 14%);
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid rgb(167 196 154 / 14%);
  }

  .trust-item:last-child {
    grid-column: 1 / -1;
    border-left: 0;
  }

  .section {
    padding-top: 100px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .field-photo-grid {
    grid-template-columns: 1fr;
  }

  .field-location-note {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .workflow-step {
    padding: 28px 0 34px;
  }

  .workflow-step + .workflow-step {
    padding-left: 0;
    border-top: 1px solid var(--stroke);
    border-left: 0;
  }

  .step-number {
    margin-bottom: 34px;
  }

  .wildlife-frame {
    min-height: 400px;
  }

  .privacy-copy {
    padding-right: 26px;
    padding-left: 26px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:nth-child(n) {
    grid-column: auto;
    min-height: 250px;
  }

  .feature-card h3 {
    margin-top: 52px;
  }

  .screen-gallery {
    grid-template-columns: minmax(260px, 0.82fr);
    justify-content: center;
    gap: 70px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .screen-shot:nth-child(n) {
    padding-top: 0;
  }

  .cta-panel {
    min-height: 480px;
    padding: 42px 25px;
  }

  .cta-actions {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .subpage-main {
    width: min(calc(100% - 28px), 860px);
    padding-top: 66px;
  }

  .document-panel {
    border-radius: var(--radius-md);
  }
}

@media (max-width: 430px) {
  .nav-action .status-chip {
    width: 36px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    color: transparent;
  }

  .nav-action .status-chip::before {
    flex: 0 0 auto;
  }

  .hero-visual {
    min-height: 480px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-item:nth-child(n) {
    grid-column: auto;
    border-top: 1px solid rgb(167 196 154 / 14%);
    border-left: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .wildlife-frame {
    min-height: 330px;
  }
}

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

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