/* TrailEye AI marketing site — isolated from the desktop application. */
:root {
  --ink: #eef1e9;
  --ink-strong: #ffffff;
  --muted: #9ca89f;
  --muted-2: #748078;
  --bg: #0d120f;
  --bg-deep: #080c0a;
  --surface: #131a15;
  --surface-2: #18211b;
  --surface-3: #202a23;
  --line: rgba(225, 236, 226, .13);
  --line-strong: rgba(225, 236, 226, .24);
  --green: #3cc36d;
  --green-bright: #56db84;
  --green-dark: #1d7d44;
  --moss: #6e8f6d;
  --earth: #b77853;
  --amber: #e0a252;
  --paper: #e8e3d3;
  --danger: #e66f5d;
  --display: "Bahnschrift", "Arial Narrow", "Segoe UI Variable Display", sans-serif;
  --body: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --mono: "Cascadia Mono", "Consolas", monospace;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-small: 0 12px 30px rgba(0, 0, 0, .22);
  --shadow-large: 0 34px 80px rgba(0, 0, 0, .42);
  --container: 1240px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--green); color: #07100a; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  color: #111;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.section { padding: 132px 0; }
.kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--green-bright);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  margin: 0 10px 4px 0;
  background: currentColor;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: -.035em;
}
h2 {
  color: var(--ink-strong);
  font-size: clamp(2.45rem, 5.2vw, 5.1rem);
  font-weight: 620;
}
h3 { color: var(--ink-strong); }

.signal-bar {
  position: relative;
  z-index: 60;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  background: #080d0a;
  color: #9cab9f;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.signal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(60, 195, 109, .11);
}
.signal-separator { color: #3c4840; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(13, 18, 15, .82);
  backdrop-filter: blur(16px);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}
.nav-shell {
  display: flex;
  width: min(calc(100% - 48px), var(--container));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { border-radius: 10px; box-shadow: 0 6px 22px rgba(0, 0, 0, .35); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  color: #f9fbf7;
  font-family: var(--display);
  font-size: 1.06rem;
  letter-spacing: -.02em;
}
.brand-copy strong em { color: var(--amber); font-style: normal; }
.brand-copy small {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: .66rem;
  letter-spacing: .06em;
}
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav > a {
  color: #c7d0c8;
  font-size: .86rem;
  font-weight: 600;
  transition: color .2s ease;
}
.primary-nav > a:hover { color: #fff; }
.primary-nav .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid rgba(86, 219, 132, .5);
  border-radius: var(--radius-sm);
  color: var(--green-bright);
}
.primary-nav .nav-cta:hover { background: var(--green); color: #07100a; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 900px;
  padding: 112px 0 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 34%, rgba(38, 87, 53, .26), transparent 32%),
    linear-gradient(180deg, #101712 0%, var(--bg) 78%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: auto -15vw -35vw;
  height: 52vw;
  min-height: 620px;
  background: #111914;
  transform: rotate(-5deg);
}
.hero-contours,
.closing-contours {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .18;
  background-image:
    repeating-radial-gradient(ellipse at 82% 40%, transparent 0 28px, rgba(148, 177, 148, .25) 30px, transparent 32px 52px);
  mask-image: linear-gradient(90deg, transparent 14%, #000 60%, transparent 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(440px, .85fr) minmax(560px, 1.15fr);
  align-items: center;
  gap: 70px;
}
.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid rgba(86, 219, 132, .27);
  border-radius: 100px;
  background: rgba(44, 101, 60, .13);
}
.eyebrow span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
}
.hero h1 {
  color: #f2f4ed;
  font-size: clamp(4rem, 7.1vw, 7.4rem);
  font-weight: 580;
  line-height: .89;
  letter-spacing: -.065em;
}
.hero h1 i { color: var(--paper); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lede {
  max-width: 650px;
  margin: 34px 0 0;
  color: #b7c1b9;
  font-size: clamp(1.03rem, 1.5vw, 1.25rem);
  line-height: 1.68;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.primary-nav a:focus-visible,
.product-shot:focus-visible,
.tab-rail button:focus-visible,
.panel-media button:focus-visible,
.text-action:focus-visible,
summary:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid rgba(86, 219, 132, .38);
  outline-offset: 3px;
}
.button svg { width: 16px; fill: currentColor; }
.button-primary {
  background: var(--green);
  color: #07110a;
  box-shadow: 0 12px 30px rgba(26, 128, 61, .24);
}
.button-primary:hover { background: var(--green-bright); box-shadow: 0 16px 36px rgba(26, 128, 61, .31); }
.button-quiet { border-color: var(--line-strong); color: #d9ded8; background: rgba(255, 255, 255, .025); }
.button-quiet:hover, .button-outline:hover { border-color: rgba(86, 219, 132, .6); color: var(--green-bright); background: rgba(60, 195, 109, .06); }
.button-outline { width: 100%; border-color: var(--line-strong); color: #e5e9e4; background: transparent; }
.button-large { min-height: 60px; padding-inline: 26px; font-size: 1rem; }
.hero-note { margin: 13px 0 0; color: var(--muted-2); font-size: .78rem; }
.hero-facts {
  display: flex;
  gap: 0;
  margin: 50px 0 0;
}
.hero-facts > div {
  min-width: 145px;
  padding-right: 26px;
  margin-right: 26px;
  border-right: 1px solid var(--line);
}
.hero-facts > div:last-child { border-right: 0; }
.hero-facts dt { color: var(--ink-strong); font-family: var(--display); font-size: 1.16rem; font-weight: 670; letter-spacing: -.02em; }
.hero-facts dd { margin: 3px 0 0; color: var(--muted-2); font-size: .72rem; }

.hero-product { position: relative; margin-right: -8vw; perspective: 1400px; }
.product-frame {
  position: relative;
  width: min(880px, 62vw);
  overflow: hidden;
  border: 1px solid rgba(211, 226, 214, .18);
  border-radius: 18px;
  background: #11151a;
  box-shadow: var(--shadow-large);
  transform: rotateY(-4deg) rotateX(1.2deg);
  transform-origin: left center;
}
.frame-bar {
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid #293029;
  background: #171c18;
}
.frame-title { display: flex; align-items: center; gap: 8px; color: #cdd6ce; font-family: var(--display); font-size: .72rem; font-weight: 650; }
.frame-title img { width: 23px; height: 23px; border-radius: 5px; }
.window-controls { display: flex; gap: 8px; }
.window-controls span { width: 9px; height: 9px; border-radius: 50%; background: #3b443d; }
.window-controls span:first-child { background: #aa6c48; }
.product-shot { display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.product-shot img { width: 100%; }
.scan-line {
  position: absolute;
  z-index: 2;
  top: 46px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(86, 219, 132, .72);
  box-shadow: 0 0 22px 2px rgba(86, 219, 132, .25);
  animation: scan 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scan { 0%, 15% { transform: translateY(0); opacity: 0; } 22% { opacity: 1; } 75% { transform: translateY(33vw); opacity: .8; } 90%, 100% { transform: translateY(36vw); opacity: 0; } }
.field-tag {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 190px;
  padding: 13px 15px 13px 42px;
  border: 1px solid rgba(226, 234, 226, .16);
  border-radius: 11px;
  background: rgba(17, 24, 19, .94);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(10px);
}
.field-tag strong { color: #f6f8f4; font-size: .78rem; line-height: 1.2; }
.field-tag small { margin-top: 3px; color: #7e8c82; font-family: var(--mono); font-size: .58rem; text-transform: uppercase; }
.field-tag-local { top: 16%; left: -35px; }
.field-tag-detection { left: 56%; bottom: -24px; }
.tag-pulse,
.animal-mark { position: absolute; top: 20px; left: 17px; width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
.tag-pulse::after { content: ""; position: absolute; inset: -5px; border: 1px solid rgba(86, 219, 132, .45); border-radius: 50%; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.5); opacity: 0; } 35% { opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
.animal-mark { border-radius: 2px; background: var(--earth); transform: rotate(45deg); }
.utility-strip {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 115px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.utility-strip > span { color: var(--muted-2); font-family: var(--mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.utility-strip ul { display: flex; flex: 1; justify-content: space-between; gap: 20px; margin: 0; padding: 0; list-style: none; }
.utility-strip li { color: #b8c2ba; font-size: .8rem; font-weight: 650; }

.problem-section { padding-top: 155px; background: #111914; }
.problem-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 110px; align-items: end; }
.problem-section h2 { max-width: 800px; font-size: clamp(2.8rem, 5.1vw, 5.2rem); }
.problem-copy { padding-bottom: 5px; }
.problem-copy p { margin: 0; color: #9faa9f; font-size: 1.05rem; }
.problem-copy .problem-answer { margin-top: 25px; padding-top: 25px; border-top: 1px solid var(--line); }
.problem-answer strong { color: var(--paper); }

.workflow { background: #111914; }
.section-intro { display: grid; grid-template-columns: 1fr .55fr; column-gap: 80px; align-items: end; }
.section-intro .kicker { grid-column: 1 / -1; }
.section-intro h2 { max-width: 850px; }
.section-intro > p:last-child { margin: 0 0 8px; color: var(--muted); font-size: 1rem; }
.workflow-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 85px 0 0; padding: 0; border-top: 1px solid var(--line-strong); list-style: none; }
.workflow-step { position: relative; min-width: 0; padding: 26px 35px 0 0; border-right: 1px solid var(--line); }
.workflow-step + .workflow-step { padding-left: 35px; }
.workflow-step:last-child { border-right: 0; padding-right: 0; }
.step-index { color: var(--green-bright); font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; }
.step-visual {
  position: relative;
  display: grid;
  height: 220px;
  place-items: center;
  margin: 25px 0 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d130f;
}
.step-visual::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.step-copy h3 { font-size: 1.55rem; font-weight: 620; }
.step-copy p { margin: 13px 0 0; color: var(--muted); font-size: .92rem; }
.folder-visual > div { position: absolute; }
.folder-back { width: 132px; height: 87px; border: 1px solid #49644f; border-radius: 7px 12px 8px 8px; background: #1b2b20; transform: translateY(4px); }
.folder-back::before { content: ""; position: absolute; top: -18px; left: -1px; width: 58px; height: 25px; border: 1px solid #49644f; border-bottom: 0; border-radius: 6px 8px 0 0; background: #1b2b20; }
.folder-front { bottom: 54px; width: 145px; height: 78px; border: 1px solid #6c875f; border-radius: 8px; background: #253b2b; transform: skewX(-5deg); box-shadow: 0 16px 25px rgba(0,0,0,.32); }
.folder-files { display: flex; z-index: 1; gap: 4px; transform: translateY(-6px); }
.folder-files span { width: 34px; height: 49px; border: 1px solid #66766a; border-radius: 2px; background: #222b24; transform: rotate(-5deg); }
.folder-files span:nth-child(2) { transform: translateY(-8px); }
.scan-card { position: relative; width: 150px; height: 105px; border: 1px solid #405047; background: linear-gradient(145deg, #263028, #121814); box-shadow: 0 14px 28px rgba(0,0,0,.3); }
.scan-card::after { content: ""; position: absolute; inset: 20px 32px 18px 44px; border-radius: 48% 54% 42% 46%; background: #5d675f; filter: blur(5px); }
.scan-box { position: absolute; z-index: 2; right: 22px; bottom: 14px; width: 65px; height: 48px; border: 1px solid var(--earth); }
.scan-beam { position: absolute; z-index: 3; left: 0; right: 0; top: 30px; height: 1px; background: var(--green-bright); box-shadow: 0 0 12px var(--green); animation: mini-scan 2.7s ease-in-out infinite alternate; }
@keyframes mini-scan { to { transform: translateY(60px); } }
.scan-label { position: absolute; right: 28px; bottom: 24px; padding: 4px 6px; border: 1px solid rgba(86,219,132,.4); color: var(--green-bright); font-family: var(--mono); font-size: .54rem; letter-spacing: .08em; }
.review-visual { align-content: center; gap: 9px; padding: 28px; }
.review-row { position: relative; z-index: 1; display: grid; width: 100%; grid-template-columns: 30px 1fr 25px; align-items: center; gap: 10px; padding: 8px 10px; border: 1px solid #263329; border-radius: 6px; background: #141c17; }
.review-row > span { width: 30px; height: 22px; background: #3b453d; }
.review-row b { color: #bdc7be; font-size: .68rem; }
.review-row i { color: var(--green-bright); font-style: normal; }

.showcase { background: #e7e4d8; color: #172019; }
.showcase .kicker { color: #237b42; }
.showcase h2, .showcase h3 { color: #101712; }
.showcase-heading { display: grid; grid-template-columns: 1fr 410px; gap: 80px; align-items: end; }
.showcase-heading > p { margin: 0 0 8px; color: #526057; font-size: 1rem; }
.product-tabs { margin-top: 74px; }
.tab-rail { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(16, 23, 18, .25); border-bottom: 1px solid rgba(16, 23, 18, .25); }
.tab-rail button { position: relative; display: grid; min-height: 116px; padding: 18px 22px; border: 0; border-right: 1px solid rgba(16,23,18,.15); background: transparent; color: #526057; text-align: left; cursor: pointer; transition: color .2s ease, background-color .2s ease; }
.tab-rail button:last-child { border-right: 0; }
.tab-rail button:hover { background: rgba(16,23,18,.035); }
.tab-rail button[aria-selected="true"] { color: #101712; background: rgba(255,255,255,.33); }
.tab-rail button[aria-selected="true"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: #27884a; }
.tab-rail button > span { color: #68756c; font-family: var(--mono); font-size: .61rem; }
.tab-rail button strong { margin-top: 8px; font-family: var(--display); font-size: 1rem; }
.tab-rail button small { margin-top: 2px; font-size: .71rem; }
.tab-panel { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, .45fr); gap: 56px; align-items: center; padding-top: 54px; animation: panel-in .35s ease both; }
.tab-panel[hidden] { display: none; }
@keyframes panel-in { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
.panel-media { position: relative; min-width: 0; overflow: hidden; border: 1px solid rgba(16, 23, 18, .18); border-radius: 10px; background: #11151a; box-shadow: 0 28px 65px rgba(32, 42, 34, .22); }
.panel-media::before { content: "LIVE PRODUCT"; position: absolute; z-index: 2; top: 12px; right: 12px; padding: 5px 7px; border-radius: 3px; background: rgba(10,15,12,.84); color: #a6b5a9; font-family: var(--mono); font-size: .51rem; letter-spacing: .1em; pointer-events: none; }
.panel-media button { display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.panel-media img { width: 100%; }
.portrait-media { max-height: 650px; }
.portrait-media img { max-height: 650px; object-fit: cover; object-position: top; }
.insights-media img { aspect-ratio: 1.09 / 1; object-fit: cover; object-position: top; }
.panel-number { margin: 0 0 20px; color: #237b42; font-family: var(--mono); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.panel-copy h3 { font-size: clamp(2rem, 3vw, 3.3rem); font-weight: 620; }
.panel-copy > p:not(.panel-number) { margin: 23px 0 0; color: #526057; font-size: .95rem; }
.check-list { margin: 26px 0 0; padding: 0; border-top: 1px solid rgba(16,23,18,.18); list-style: none; }
.check-list li { position: relative; padding: 12px 0 12px 23px; border-bottom: 1px solid rgba(16,23,18,.12); color: #28352c; font-size: .8rem; font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 1px; color: #258148; }

.privacy { position: relative; overflow: hidden; background: #09100c; }
.privacy-noise { position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(86,219,132,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(86,219,132,.05) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(circle at 30% 50%, #000, transparent 55%); }
.privacy-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 130px; align-items: center; }
.privacy-visual { position: relative; display: grid; min-height: 580px; place-items: center; }
.local-core { position: relative; z-index: 2; display: grid; width: 325px; height: 325px; place-items: center; border: 1px solid rgba(86,219,132,.22); border-radius: 50%; background: #0c1510; box-shadow: inset 0 0 75px rgba(42,120,64,.15), 0 35px 75px rgba(0,0,0,.35); }
.local-core img { width: 150px; border-radius: 24px; }
.core-rings, .core-rings span { position: absolute; inset: 0; border: 1px solid rgba(86,219,132,.14); border-radius: 50%; }
.core-rings span:nth-child(1) { inset: -35px; }
.core-rings span:nth-child(2) { inset: -77px; border-style: dashed; animation: spin 30s linear infinite; }
.core-rings span:nth-child(3) { inset: 52px; border-color: rgba(86,219,132,.24); }
@keyframes spin { to { transform: rotate(360deg); } }
.core-label { position: absolute; bottom: 28px; display: flex; align-items: center; gap: 7px; color: #8ca794; font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; }
.core-label span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.privacy-path { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; color: #8b9a8e; font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.privacy-path i { display: block; width: 68px; height: 1px; background: var(--green-dark); }
.privacy-path-in { left: -15px; top: 48%; }
.privacy-path-out { right: -5px; top: 48%; }
.blocked-cloud { position: absolute; z-index: 4; right: 10px; bottom: 17px; display: flex; align-items: center; gap: 11px; padding: 10px 12px; border: 1px solid rgba(230,111,93,.2); border-radius: 8px; background: #111813; color: #a49f96; font-size: .65rem; }
.blocked-cloud svg { width: 30px; fill: none; stroke: var(--danger); stroke-width: 2.2; stroke-linecap: round; }
.privacy-copy h2 { font-size: clamp(3rem, 5.4vw, 5.7rem); }
.privacy-copy > p:not(.kicker) { max-width: 650px; margin: 30px 0 0; color: #9eaaa0; font-size: 1.05rem; }
.privacy-points { margin-top: 42px; border-top: 1px solid var(--line); }
.privacy-points > div { display: grid; grid-template-columns: 170px 1fr; gap: 25px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.privacy-points strong { color: #edf1eb; font-family: var(--display); font-size: .95rem; }
.privacy-points span { color: #829087; font-size: .8rem; }

.capabilities { background: #121a15; }

.wildlife-gallery { overflow: hidden; background: #0b120e; }
.wildlife-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 110px; align-items: end; margin-bottom: 58px; }
.wildlife-heading h2 { max-width: 820px; font-size: clamp(3rem, 5vw, 5.6rem); }
.wildlife-heading > p { max-width: 590px; margin: 0 0 8px; color: #9ba89e; font-size: 1rem; }
.wildlife-grid { display: grid; height: 680px; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 16px; }
.wildlife-card { min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #111914; }
.wildlife-card-wide { grid-row: 1 / 3; }
.wildlife-card button { position: relative; display: block; width: 100%; height: 100%; min-height: 290px; padding: 0; overflow: hidden; border: 0; background: #111914; color: #fff; text-align: left; cursor: zoom-in; }
.wildlife-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.wildlife-card button:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.02); }
.wildlife-card button::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(5,9,6,.88)); pointer-events: none; }
.wildlife-card span { position: absolute; z-index: 1; right: 24px; bottom: 22px; left: 24px; display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.wildlife-card b { font-family: var(--display); font-size: 1.3rem; }
.wildlife-card small { color: #b7c2b9; font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.wildlife-credits { margin: 18px 0 0; color: #647168; font-size: .62rem; line-height: 1.6; }
.wildlife-credits a { color: #8b9c90; text-decoration: underline; text-underline-offset: 3px; }
.wildlife-credits a:hover { color: var(--green-bright); }
.capability-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.capability-lead { position: sticky; top: 120px; align-self: start; }
.capability-lead h2 { font-size: clamp(3rem, 4.6vw, 4.7rem); }
.capability-lead > p:not(.kicker) { max-width: 490px; margin: 25px 0 0; color: var(--muted); }
.text-action { margin-top: 30px; padding: 0 0 6px; border: 0; border-bottom: 1px solid var(--line-strong); background: transparent; color: var(--green-bright); font-size: .78rem; font-weight: 700; cursor: pointer; }
.text-action:hover { border-color: var(--green-bright); }
.capability-list { border-top: 1px solid var(--line-strong); }
.capability-list article { display: grid; grid-template-columns: 50px 220px 1fr; gap: 20px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid var(--line); }
.capability-list article > span { color: var(--green-bright); font-family: var(--mono); font-size: .62rem; }
.capability-list h3 { font-size: 1.25rem; font-weight: 610; }
.capability-list p { margin: 0; color: var(--muted); font-size: .86rem; }

.pricing { background: #0c120e; }
.pricing-heading { display: grid; grid-template-columns: 1fr 430px; gap: 80px; align-items: end; }
.pricing-heading > p { margin: 0 0 8px; color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 70px; }
.price-card { position: relative; display: flex; min-height: 520px; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #111914; }
.price-card-head p { margin: 0; color: #f2f4ef; font-family: var(--display); font-size: 1.4rem; font-weight: 650; }
.price-card-head span { display: block; margin-top: 5px; color: var(--muted-2); font-size: .75rem; }
.price { display: flex; align-items: baseline; gap: 10px; margin: 34px 0; }
.price strong { color: #fff; font-family: var(--display); font-size: 3.9rem; line-height: 1; letter-spacing: -.055em; }
.price small { color: var(--muted-2); font-size: .68rem; }
.price-card ul { flex: 1; margin: 0 0 30px; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { position: relative; padding: 8px 0 8px 22px; color: #9eaaa0; font-size: .8rem; }
.price-card li::before { content: ""; position: absolute; top: 15px; left: 2px; width: 6px; height: 6px; border: 1px solid var(--green); border-radius: 50%; }
.price-card li b { color: #dfe5df; }
.price-featured { border-color: rgba(86,219,132,.55); background: #142019; box-shadow: 0 24px 65px rgba(0,0,0,.25); }
.price-flag { position: absolute; top: 0; right: 22px; padding: 7px 10px; border-radius: 0 0 6px 6px; background: var(--green); color: #07110a; font-family: var(--mono); font-size: .55rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.pricing-note { margin: 22px 0 0; color: var(--muted-2); font-size: .7rem; text-align: center; }

.faq { background: #e7e4d8; color: #172019; }
.faq .kicker { color: #237b42; }
.faq h2, .faq h3 { color: #101712; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 120px; }
.faq-heading { align-self: start; }
.faq-heading h2 { font-size: clamp(3rem, 4.7vw, 4.8rem); }
.faq-heading > p:not(.kicker) { margin: 25px 0 0; color: #526057; }
.accordion { border-top: 1px solid rgba(16,23,18,.25); }
details { border-bottom: 1px solid rgba(16,23,18,.18); }
summary { position: relative; padding: 25px 50px 25px 0; color: #18231b; font-family: var(--display); font-size: 1.05rem; font-weight: 620; list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
summary span, summary span::after { position: absolute; right: 6px; top: 50%; width: 18px; height: 1px; background: #26342a; transition: transform .2s ease; }
summary span::after { content: ""; top: 0; right: 0; transform: rotate(90deg); }
details[open] summary span::after { transform: rotate(0); }
details p { max-width: 710px; margin: -4px 0 24px; color: #526057; font-size: .9rem; }

.closing-section { position: relative; isolation: isolate; padding: 110px 0; overflow: hidden; background: #101813; }
.closing-section::after { content: ""; position: absolute; z-index: -2; inset: 0; background: radial-gradient(circle at 75% 70%, rgba(38,96,55,.28), transparent 35%); }
.closing-contours { opacity: .22; transform: rotate(180deg); }
.closing-grid { display: grid; grid-template-columns: 1fr auto; gap: 90px; align-items: end; }
.closing-grid img { margin-bottom: 28px; border-radius: 14px; }
.closing-grid h2 { font-size: clamp(4rem, 7vw, 7rem); }
.closing-actions { text-align: center; }
.closing-actions p { margin: 12px 0 0; color: var(--muted-2); font-size: .7rem; }

.site-footer { padding: 45px 0; border-top: 1px solid var(--line); background: #080d0a; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 45px; align-items: center; }
.footer-links { display: flex; gap: 25px; }
.footer-links a { color: #88958c; font-size: .73rem; }
.footer-links a:hover { color: #fff; }
.footer-meta { margin: 0; color: #59655d; font-size: .64rem; line-height: 1.7; text-align: right; }

.lightbox { width: min(94vw, 1500px); max-width: none; max-height: 94vh; padding: 0; overflow: visible; border: 1px solid rgba(225,236,226,.2); border-radius: 12px; background: #101511; box-shadow: 0 50px 120px rgba(0,0,0,.7); }
.lightbox::backdrop { background: rgba(5,8,6,.9); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 90vh; object-fit: contain; border-radius: 12px; }
.lightbox-close { position: absolute; z-index: 2; top: -18px; right: -18px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: #18211b; color: #fff; font-size: 1.5rem; cursor: pointer; }
.toast { position: fixed; z-index: 200; right: 24px; bottom: 24px; padding: 12px 16px; border: 1px solid rgba(86,219,132,.35); border-radius: 8px; background: #142019; color: #dce5dd; font-size: .76rem; box-shadow: var(--shadow-small); opacity: 0; transform: translateY(15px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.toast.is-visible { opacity: 1; transform: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .section { padding: 105px 0; }
  .hero { min-height: 0; padding-top: 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-product { margin: 20px -100px 0 8%; }
  .product-frame { width: min(1000px, 98vw); transform: none; }
  .field-tag-local { left: -20px; }
  .utility-strip { margin-top: 100px; }
  .problem-grid { gap: 60px; }
  .section-intro { grid-template-columns: 1fr; }
  .section-intro > p:last-child { max-width: 600px; margin-top: 28px; }
  .showcase-heading, .pricing-heading { grid-template-columns: 1fr; gap: 25px; }
  .wildlife-heading { grid-template-columns: 1fr; gap: 25px; }
  .showcase-heading > p, .pricing-heading > p { max-width: 620px; }
  .privacy-grid { gap: 65px; }
  .privacy-visual { transform: scale(.82); margin-inline: -40px; }
  .capability-grid { gap: 70px; }
  .capability-list article { grid-template-columns: 40px 180px 1fr; }
  .faq-grid { gap: 70px; }
  .closing-grid { grid-template-columns: 1fr; align-items: start; }
  .closing-actions { text-align: left; }
  .closing-actions p { text-align: center; max-width: 390px; }
}

@media (max-width: 820px) {
  .container, .nav-shell { width: min(calc(100% - 32px), var(--container)); }
  .signal-bar { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .signal-bar span:nth-last-child(-n+2) { display: none; }
  .nav-shell { min-height: 68px; }
  .nav-toggle { display: grid; width: 44px; height: 44px; place-content: center; gap: 5px; padding: 0; border: 1px solid var(--line); border-radius: 8px; background: transparent; }
  .nav-toggle > span:not(.sr-only) { display: block; width: 20px; height: 1px; background: #d8ded8; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav { position: fixed; top: 102px; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 22px 24px 40px; background: #0d120f; opacity: 0; transform: translateX(100%); visibility: hidden; transition: opacity .2s ease, transform .28s ease, visibility .28s; }
  .primary-nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .primary-nav > a { padding: 18px 4px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.45rem; }
  .primary-nav .nav-cta { justify-content: center; margin-top: 28px; border: 1px solid rgba(86,219,132,.5); font-family: var(--body); font-size: .9rem; }
  .hero { padding-top: 72px; }
  .hero h1 { font-size: clamp(3.6rem, 15vw, 6.2rem); }
  .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-facts > div { min-width: 0; margin-right: 14px; padding-right: 14px; }
  .hero-product { margin-right: -50%; margin-left: 0; }
  .product-frame { width: 140vw; }
  .field-tag-detection { left: 35%; right: auto; }
  .utility-strip { align-items: flex-start; }
  .utility-strip ul { display: grid; grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; align-items: start; }
  .problem-copy { max-width: 600px; }
  .workflow-list { grid-template-columns: 1fr; }
  .workflow-step, .workflow-step + .workflow-step { padding: 24px 0 38px; border-right: 0; border-bottom: 1px solid var(--line); }
  .workflow-step:last-child { border-bottom: 0; }
  .step-visual { height: 260px; }
  .tab-rail { grid-template-columns: 1fr 1fr; }
  .tab-rail button:nth-child(2) { border-right: 0; }
  .tab-rail button:nth-child(-n+2) { border-bottom: 1px solid rgba(16,23,18,.15); }
  .tab-panel { grid-template-columns: 1fr; }
  .panel-copy { max-width: 650px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-visual { order: 2; min-height: 530px; margin: -30px 0 0; transform: scale(.9); }
  .capability-grid { grid-template-columns: 1fr; }
  .wildlife-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: minmax(390px, 1.2fr) minmax(250px, .8fr); }
  .wildlife-card-wide { grid-column: 1 / 3; grid-row: auto; }
  .capability-lead { position: static; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 570px; margin-inline: auto; }
  .price-card { min-height: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .footer-meta { text-align: left; }
}

@media (max-width: 540px) {
  .section { padding: 82px 0; }
  .signal-bar { font-size: .56rem; }
  .brand-copy small { display: none; }
  .hero { padding-top: 58px; }
  .hero h1 { font-size: 3.62rem; }
  .hero-lede { font-size: .98rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-facts { gap: 18px; }
  .hero-facts > div { margin: 0; padding: 0; border: 0; }
  .hero-facts dt { font-size: .95rem; }
  .hero-product { margin-right: -88%; }
  .product-frame { width: 190vw; }
  .field-tag { min-width: 170px; }
  .field-tag-local { top: 10%; left: 10px; }
  .field-tag-detection { left: 40%; right: auto; bottom: -35px; }
  .utility-strip { display: grid; margin-top: 95px; }
  .utility-strip ul { gap: 12px; }
  .utility-strip li { font-size: .7rem; }
  h2 { font-size: 2.7rem; }
  .problem-section h2, .privacy-copy h2, .capability-lead h2, .faq-heading h2 { font-size: 2.7rem; }
  .tab-rail { grid-template-columns: 1fr; }
  .tab-rail button { min-height: 92px; border-right: 0; border-bottom: 1px solid rgba(16,23,18,.15); }
  .tab-rail button > span { position: absolute; top: 23px; right: 18px; }
  .tab-panel { padding-top: 32px; gap: 34px; }
  .panel-copy h3 { font-size: 2.2rem; }
  .privacy-visual { min-height: 420px; transform: scale(.7); margin: -70px -80px; }
  .privacy-points > div { grid-template-columns: 1fr; gap: 6px; }
  .capability-list article { grid-template-columns: 32px 1fr; gap: 14px; }
  .capability-list article p { grid-column: 2; }
  .wildlife-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .wildlife-card-wide { grid-column: auto; }
  .wildlife-card button { min-height: 270px; }
  .wildlife-card span { right: 18px; bottom: 17px; left: 18px; }
  .price-card { padding: 28px 24px; }
  .closing-section { padding: 85px 0; }
  .closing-grid h2 { font-size: 3.7rem; }
  .lightbox { width: 96vw; }
  .lightbox-close { top: 8px; right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Search-focused product and use-case pages */
.content-page { background: #f2f0e8; color: #172019; }
.content-page .site-header { position: relative; background: #101712; }
.content-page .primary-nav a:not(.nav-cta),
.content-page .brand-copy strong { color: #eef3ed; }
.content-page .brand-copy small { color: #98a59b; }
.landing-main { overflow: hidden; }
.landing-hero {
  padding: 84px 0 74px;
  background:
    radial-gradient(circle at 82% 24%, rgba(44, 137, 73, .2), transparent 31%),
    linear-gradient(180deg, #101712 0%, #18231b 100%);
  color: #eef3ed;
}
.breadcrumbs { margin: 0 0 38px; color: #9fb0a3; font-size: .78rem; }
.breadcrumbs a { color: #b8c6bb; text-decoration: underline; text-underline-offset: 3px; }
.landing-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 76px; align-items: center; }
.landing-hero h1 { max-width: 820px; font-size: clamp(3.2rem, 6vw, 6.4rem); line-height: .95; letter-spacing: -.055em; }
.landing-hero .hero-lede { max-width: 720px; margin-top: 28px; color: #bdc8bf; font-size: 1.08rem; }
.landing-hero .hero-actions { margin-top: 34px; }
.landing-proof { padding: 28px; border: 1px solid rgba(225, 237, 228, .16); border-radius: 16px; background: rgba(8, 15, 10, .56); box-shadow: var(--shadow-large); }
.landing-proof img { width: 100%; border-radius: 9px; }
.landing-proof p { margin: 17px 0 0; color: #afbeb2; font-size: .82rem; }
.landing-section { padding: 92px 0; }
.landing-section-white { background: #fff; }
.landing-section-dark { background: #101712; color: #eef3ed; }
.landing-heading { max-width: 840px; }
.landing-heading h2 { font-size: clamp(2.4rem, 5vw, 4.7rem); line-height: 1; letter-spacing: -.045em; }
.content-page .landing-section:not(.landing-section-dark) .landing-heading h2,
.content-page .landing-section:not(.landing-section-dark) .landing-card h3,
.content-page .prose h2,
.content-page .prose h3,
.content-page .side-facts h2 { color: #172019; }
.landing-heading p { max-width: 720px; margin-top: 23px; color: #536158; font-size: 1.02rem; }
.landing-section-dark .landing-heading p { color: #aebbb1; }
.landing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.landing-card { padding: 30px; border: 1px solid rgba(22, 32, 25, .14); border-radius: 12px; background: rgba(255,255,255,.65); }
.landing-section-dark .landing-card { border-color: rgba(222,236,225,.14); background: rgba(255,255,255,.035); }
.landing-card span { color: #258148; font-family: var(--mono); font-size: .7rem; font-weight: 700; letter-spacing: .09em; }
.landing-card h3 { margin-top: 17px; font-size: 1.5rem; line-height: 1.12; }
.landing-card p { margin: 14px 0 0; color: #59675e; font-size: .9rem; }
.landing-section-dark .landing-card p { color: #aebbb1; }
.content-columns { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .52fr); gap: 80px; align-items: start; }
.prose h2 { margin-top: 54px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.03; letter-spacing: -.035em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 35px; font-size: 1.45rem; }
.prose p, .prose li { color: #4d5b52; font-size: 1rem; }
.prose p { margin: 18px 0 0; }
.prose ul, .prose ol { margin: 20px 0 0; padding-left: 24px; }
.prose li + li { margin-top: 10px; }
.side-facts { position: sticky; top: 110px; padding: 29px; border: 1px solid rgba(22,32,25,.15); border-radius: 13px; background: #e7e4d8; }
.side-facts h2 { font-size: 1.4rem; }
.side-facts dl { margin: 23px 0 0; }
.side-facts div { padding: 13px 0; border-top: 1px solid rgba(22,32,25,.13); }
.side-facts dt { color: #68766d; font-size: .75rem; }
.side-facts dd { margin: 3px 0 0; font-weight: 700; }
.side-facts .button { width: 100%; margin-top: 23px; }
.related-pages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.related-pages a { display: block; min-height: 180px; padding: 28px; border: 1px solid rgba(222,236,225,.14); border-radius: 12px; background: rgba(255,255,255,.04); }
.related-pages strong { display: block; font-size: 1.35rem; }
.related-pages span { display: block; margin-top: 13px; color: #aebbb1; font-size: .87rem; }
.landing-cta { padding: 82px 0; background: #27884a; color: #061109; }
.landing-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.landing-cta h2 { max-width: 760px; font-size: clamp(2.6rem, 5vw, 5rem); line-height: .96; }
.landing-cta p { margin-top: 16px; color: #0e321b; font-weight: 650; }
.landing-cta .button { background: #0d1710; color: #f3f6f3; }

@media (max-width: 900px) {
  .landing-hero-grid, .content-columns, .landing-cta-grid { grid-template-columns: 1fr; }
  .landing-grid, .related-pages { grid-template-columns: 1fr 1fr; }
  .landing-proof { max-width: 650px; }
  .side-facts { position: static; }
}

@media (max-width: 620px) {
  .landing-hero { padding: 58px 0 55px; }
  .landing-hero-grid { gap: 42px; }
  .landing-hero h1 { font-size: clamp(2.75rem, 15vw, 4.4rem); }
  .landing-section { padding: 70px 0; }
  .landing-grid, .related-pages { grid-template-columns: 1fr; }
}
