:root {
  --bg: #07110d;
  --panel: #101916;
  --panel-2: #15221d;
  --green: #3f7a28;
  --green-bright: #78a85d;
  --blue: #243f83;
  --steel: #c9d1d5;
  --silver: #879196;
  --ink: #f6fbf7;
  --muted: #b6c3bc;
  --line: rgba(231, 239, 232, 0.13);
  --warning: #d7e4a9;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(63, 122, 40, 0.28), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(36, 63, 131, 0.28), transparent 30rem),
    linear-gradient(180deg, #07110d, #0c1412 48%, #060b09);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}

body.light-mode {
  --bg: #f7faf6;
  --panel: #ffffff;
  --panel-2: #eef4ec;
  --ink: #102016;
  --muted: #4c5d53;
  --line: rgba(15, 52, 30, 0.16);
  --steel: #50606a;
  background:
    radial-gradient(circle at 18% 12%, rgba(120, 168, 93, 0.24), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(36, 63, 131, 0.16), transparent 30rem),
    linear-gradient(180deg, #fbfdfb, #eef5f0 48%, #f8faf7);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

#plantCanvas {
  position: fixed;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  opacity: 0.58;
}

.steel-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(201, 209, 213, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 209, 213, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0 80%, transparent 100%);
}

.cursor-beam {
  position: fixed;
  z-index: -2;
  left: 0;
  top: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(120, 168, 93, 0.18), transparent 62%);
}

.scroll-meter {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 80;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--steel), var(--blue));
  box-shadow: 0 0 24px rgba(120, 168, 93, 0.65);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 13, 0.74);
  backdrop-filter: blur(18px);
}

body.light-mode .nav {
  background: rgba(250, 253, 250, 0.84);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(120, 168, 93, 0.32);
}

.brand strong,
.brand em {
  display: block;
  line-height: 1.06;
}

.brand strong {
  font-family: "Roboto Condensed", Inter, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand em {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.nav nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
}

.nav nav a,
.nav-cta,
.nav-controls button {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-controls button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  color: var(--ink);
  cursor: pointer;
}

body.light-mode .nav-controls button {
  background: rgba(16, 32, 22, 0.045);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #08110d;
  background: linear-gradient(135deg, var(--green-bright), var(--steel));
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(63, 122, 40, 0.32);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.74fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 136px 0 76px;
}

.hero-content,
.ops-panel {
  min-width: 0;
}

body.light-mode .ops-panel,
body.light-mode .trust-bar div,
body.light-mode .cap-card,
body.light-mode .timeline article,
body.light-mode .command-card,
body.light-mode .contact-form,
body.light-mode .video-frame,
body.light-mode .map-card,
body.light-mode .proof-card {
  background: rgba(255,255,255,.86);
  box-shadow: 0 24px 70px rgba(36,63,131,.12);
}

body.light-mode .ops-readouts div,
body.light-mode .email-stack a,
body.light-mode .coverage-points span {
  background: rgba(16,32,22,.045);
}

body.light-mode .marquee,
body.light-mode .command-section {
  background: rgba(255,255,255,.72);
}

body.light-mode .proof-card div:not(.proof-english) {
  background: rgba(255,255,255,.86);
}

body.light-mode .button.secondary {
  background: rgba(16,32,22,.045);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-bright);
  font-family: "Roboto Condensed", Inter, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: "Roboto Condensed", Inter, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  margin-bottom: 24px;
  font-size: 7.15rem;
  max-width: 100%;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
  max-width: 100%;
  animation: titleLift 900ms cubic-bezier(.2,.8,.2,1) both;
}

h1 span:nth-child(2) {
  color: var(--green-bright);
  animation-delay: 80ms;
}

h1 span:nth-child(3) {
  color: var(--steel);
  animation-delay: 160ms;
}

h1 span:nth-child(4) {
  color: var(--green-bright);
  animation-delay: 240ms;
}

h2 {
  margin-bottom: 18px;
  font-size: 4.55rem;
}

h3 {
  font-size: 1.68rem;
}

.hero-copy,
.section-copy,
.video-copy p,
.command-copy p,
.contact-copy p,
.timeline p,
.cap-card p,
.command-card p {
  color: var(--muted);
}

.hero-copy {
  max-width: 780px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
  margin-top: 30px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -40%;
  width: 34%;
  transform: rotate(14deg);
  background: rgba(255,255,255,.42);
  filter: blur(9px);
  animation: sheen 4.8s ease-in-out infinite;
}

.button.primary {
  color: #07110d;
  background: linear-gradient(135deg, var(--green-bright), var(--steel));
  box-shadow: 0 18px 56px rgba(63, 122, 40, 0.34);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-bar div {
  padding: 18px;
  background: rgba(16, 25, 22, 0.82);
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  color: var(--ink);
}

.trust-bar span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.ops-panel {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(120, 168, 93, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(16, 25, 22, 0.82);
  box-shadow: 0 34px 100px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
  animation: panelFloat 7s ease-in-out infinite;
}

.ops-panel::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: conic-gradient(from 180deg, transparent, rgba(120,168,93,.18), transparent 34%);
  animation: sweep 6s linear infinite;
}

.ops-panel > * {
  position: relative;
  z-index: 1;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--steel);
}

.panel-top span:nth-child(1) { background: var(--green-bright); }
.panel-top span:nth-child(2) { background: var(--blue); }
.panel-top span:nth-child(3) { background: #d7e4a9; }
.panel-top strong { margin-left: auto; }

.gauge-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: min(60vw, 250px);
  aspect-ratio: 1;
  margin: 22px auto 16px;
  border-radius: 50%;
  background:
    conic-gradient(var(--green-bright), var(--blue), var(--steel), var(--green-bright));
  box-shadow: 0 0 80px rgba(120, 168, 93, 0.22);
}

.gauge-ring::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #101916;
}

.gauge-ring img {
  position: relative;
  width: 56%;
  border-radius: 50%;
}

.gauge-ring b {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  animation: ringPulse 2.6s ease-in-out infinite;
}

.panel-photo {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  filter: saturate(1.06) contrast(1.02);
}

.panel-english {
  display: none;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(36,63,131,.88), rgba(63,122,40,.86)),
    var(--panel);
}

.panel-english strong,
.panel-english span {
  display: block;
}

.panel-english strong {
  color: #fff;
  font-family: "Roboto Condensed", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.panel-english span {
  margin-top: 12px;
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

body[data-lang="en"] .ops-panel > img.panel-photo {
  display: none;
}

body[data-lang="en"] .panel-english {
  display: block;
}

.ops-readouts {
  display: grid;
  gap: 10px;
}

.ops-readouts div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 17, 13, 0.72);
}

.ops-readouts small {
  display: block;
  color: var(--green-bright);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ops-readouts strong {
  display: block;
  margin-top: 4px;
}

.pipeline-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.node,
.flow {
  position: absolute;
  border-radius: 50%;
}

.node {
  width: 10px;
  height: 10px;
  background: var(--green-bright);
  box-shadow: 0 0 22px rgba(120,168,93,.8);
}

.n-a { left: 14%; top: 22%; }
.n-b { right: 16%; top: 28%; }
.n-c { left: 20%; bottom: 18%; }
.n-d { right: 18%; bottom: 20%; }

.flow {
  width: 13px;
  height: 13px;
  background: var(--steel);
  box-shadow: 0 0 28px rgba(201,209,213,.85);
}

.f-1 { animation: flowOne 4s ease-in-out infinite; }
.f-2 { animation: flowTwo 4s ease-in-out infinite; animation-delay: 1.25s; }
.f-3 { animation: flowThree 4s ease-in-out infinite; animation-delay: 2.5s; }

.marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(16, 25, 22, 0.75);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee span {
  padding: 18px 34px;
  color: var(--steel);
  font-family: "Roboto Condensed", Inter, sans-serif;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section,
.capability-grid,
.video-section,
.command-section,
.timeline-section,
.contact-section,
footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 128px 0;
}

.proof-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), calc(100% - 36px));
  margin: 88px auto 0;
}

.proof-card {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16,25,22,.84);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
  transition: transform 220ms ease, border-color 220ms ease;
}

.proof-card:hover {
  transform: translateY(-8px);
  border-color: rgba(120,168,93,.48);
}

.proof-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
}

.proof-english {
  display: none;
}

.proof-card div {
  position: absolute;
  inset: auto 14px 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(7,17,13,.82);
  backdrop-filter: blur(14px);
}

body[data-lang="en"] .proof-card > img,
body[data-lang="en"] .proof-card > div:not(.proof-english) {
  display: none;
}

body[data-lang="en"] .proof-card .proof-english {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 26px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(7,17,13,.08), rgba(7,17,13,.88)),
    radial-gradient(circle at 18% 16%, rgba(120,168,93,.7), transparent 13rem),
    linear-gradient(135deg, rgba(36,63,131,.84), rgba(63,122,40,.8));
  backdrop-filter: none;
}

body[data-lang="en"] .proof-english p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

.proof-card small,
.proof-card strong {
  display: block;
}

.proof-card small {
  color: var(--green-bright);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.proof-card strong {
  margin-top: 5px;
  font-family: "Roboto Condensed", Inter, sans-serif;
  font-size: 1.42rem;
  line-height: 1.05;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .72fr);
  gap: clamp(30px, 6vw, 82px);
}

.section-copy {
  font-size: 1.14rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.cap-card {
  min-height: 292px;
  padding: 30px;
  background: rgba(16, 25, 22, 0.88);
  transition: transform 220ms ease, background 220ms ease;
}

.cap-card:hover {
  transform: translateY(-8px);
  background: rgba(21, 34, 29, 0.96);
}

.cap-card span,
.timeline small {
  color: var(--green-bright);
  font-family: "Roboto Condensed", Inter, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.cap-card span {
  display: block;
  margin-bottom: 76px;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding: clamp(84px, 12vw, 150px) 0;
}

.video-section.video-solo {
  display: block;
  max-width: 880px;
  padding: 0 0 74px;
}

.video-section.video-solo .video-frame {
  max-width: 880px;
  margin: 0 auto;
}

.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 128px 0 30px;
}

.coverage-copy p {
  color: var(--muted);
  font-size: 1.12rem;
}

.coverage-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.coverage-points span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  color: var(--steel);
  font-weight: 800;
}

.map-card {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(120,168,93,.34);
  border-radius: 18px;
  background: rgba(16,25,22,.86);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
  overflow: hidden;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: -70px;
  background: conic-gradient(from 90deg, transparent, rgba(120,168,93,.22), transparent 38%);
  animation: sweep 7s linear infinite;
}

.map-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}

.map-english {
  display: none;
}

body[data-lang="en"] .map-card img {
  display: none;
}

body[data-lang="en"] .map-english {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 520px;
  padding: 34px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 65% 42%, rgba(120,168,93,.28), transparent 14rem),
    linear-gradient(135deg, rgba(36,63,131,.9), rgba(7,17,13,.92));
}

.map-english small,
.map-english strong {
  display: block;
}

.map-english small {
  color: var(--green-bright);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.map-english strong {
  max-width: 520px;
  margin-top: 14px;
  color: #fff;
  font-family: "Roboto Condensed", Inter, sans-serif;
  font-size: 3.4rem;
  line-height: .95;
}

.map-english ul {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.map-english li {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-weight: 800;
}

.video-frame {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(201, 209, 213, 0.28);
  border-radius: 18px;
  background: rgba(16, 25, 22, 0.88);
  box-shadow: 0 28px 90px rgba(0,0,0,.46);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-bright), transparent, var(--blue));
  opacity: .65;
}

video {
  display: block;
  width: 100%;
  border-radius: 12px;
  background: #000;
}

.command-section {
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(120, 168, 93, 0.3);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(36,63,131,.28), transparent 28rem),
    rgba(16,25,22,.82);
}

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

.command-card {
  position: relative;
  min-height: 216px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7,17,13,.72);
  overflow: hidden;
}

.command-card b {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 46px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 26px rgba(120,168,93,.8);
}

.command-card::after {
  content: "";
  position: absolute;
  inset: auto -30% 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
  animation: scanLine 3.4s ease-in-out infinite;
}

.timeline-section {
  padding: clamp(82px, 11vw, 138px) 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.timeline article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(16,25,22,.88);
}

.timeline h3 {
  margin-top: 54px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, 520px);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  padding: 0 0 clamp(88px, 12vw, 150px);
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.email-stack {
  display: grid;
  gap: 10px;
  max-width: 430px;
  margin-top: 28px;
}

.email-stack a {
  padding: 14px 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 32px;
  border: 1px solid rgba(120,168,93,.3);
  border-radius: 18px;
  background: rgba(16,25,22,.9);
  box-shadow: 0 28px 90px rgba(0,0,0,.44);
}

label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-family: "Roboto Condensed", Inter, sans-serif;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  background: #07110d;
  text-transform: none;
}

body.light-mode input,
body.light-mode select,
body.light-mode textarea {
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 122px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(120,168,93,.76);
  box-shadow: 0 0 0 4px rgba(120,168,93,.14);
}

.form-button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  max-width: 620px;
  margin: 0;
  text-align: right;
}

.mobile-sticky {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes titleLift {
  from { transform: translateY(.22em) skewY(1deg); }
  to { transform: translateY(0) skewY(0deg); }
}

@keyframes sheen {
  0%, 58% { transform: translateX(-160%) rotate(14deg); }
  78%, 100% { transform: translateX(520%) rotate(14deg); }
}

@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}

@keyframes ringPulse {
  50% { transform: scale(1.05); opacity: .45; }
}

@keyframes flowOne {
  0%, 100% { left: 14%; top: 22%; }
  50% { left: 82%; top: 28%; }
}

@keyframes flowTwo {
  0%, 100% { left: 78%; top: 32%; }
  50% { left: 18%; top: 78%; }
}

@keyframes flowThree {
  0%, 100% { left: 21%; top: 75%; }
  50% { left: 82%; top: 76%; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes scanLine {
  0%, 100% { transform: translateX(-50%); opacity: .2; }
  50% { transform: translateX(50%); opacity: 1; }
}

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

@media (max-width: 1040px) {
  .hero,
  .split,
  .video-section,
  .coverage-section,
  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 5.55rem;
  }

  h2 {
    font-size: 3.7rem;
  }

  .contact-copy {
    position: static;
  }

  .capability-grid,
  .proof-showcase,
  .timeline,
  .command-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
  }

  .nav nav,
  .nav-cta {
    display: none;
  }

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

  .brand em {
    max-width: 180px;
  }

  .hero,
  .section,
  .proof-showcase,
  .capability-grid,
  .coverage-section,
  .video-section,
  .command-section,
  .timeline-section,
  .contact-section,
  footer {
    width: min(calc(100% - 32px), 320px);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    padding: 112px 0 58px;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  h3 {
    font-size: 1.36rem;
  }

  .hero-copy,
  .section-copy {
    max-width: 100%;
    font-size: 1.03rem;
    overflow-wrap: break-word;
  }

  .section {
    padding: 86px 0;
  }

  .cap-card,
  .contact-form {
    padding: 22px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    flex: 1 1 100%;
  }

  .trust-bar,
  .capability-grid,
  .proof-showcase,
  .coverage-points,
  .timeline,
  .command-grid {
    grid-template-columns: 1fr;
  }

  .cap-card,
  .timeline article {
    min-height: auto;
  }

  .cap-card span {
    margin-bottom: 42px;
  }

  .panel-top strong {
    display: none;
  }

  .gauge-ring {
    width: min(68vw, 230px);
  }

  .panel-photo {
    height: 154px;
  }

  .proof-showcase {
    margin-top: 34px;
  }

  .proof-card,
  .proof-card img {
    min-height: 300px;
  }

  .coverage-section {
    padding: 78px 0 16px;
  }

  .map-card {
    padding: 8px;
  }

  .video-frame {
    padding: 8px;
  }

  footer {
    display: grid;
  }

  footer p {
    text-align: left;
  }

  .mobile-sticky {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: #07110d;
    background: linear-gradient(135deg, var(--green-bright), var(--steel));
    border-radius: var(--radius);
    box-shadow: 0 18px 54px rgba(0,0,0,.46);
    font-weight: 900;
    text-decoration: none;
  }
}
