:root {
  --primary: #34b277;
  --primary-dark: #2a8c5f;
  --secondary: #0b1410;
  --background: #07100c;
  --card: #101a15;
  --border: rgba(255, 255, 255, 0.06);
  --text: #f5f7f6;
  --muted: #a7b2ac;
  --light-bg: #f5f7f6;
  --light-card: #ffffff;
  --light-text: #0b1410;
  --light-muted: #50625a;
  --light-border: rgba(11, 20, 16, 0.1);
  --soft: rgba(52, 178, 119, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 15% 10%, rgba(52, 178, 119, 0.18), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(83, 139, 255, 0.08), transparent 24%),
    #07100c;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.25;
  background-image: url("./imgs/deco/590.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: soft-light;
  filter: blur(12px) saturate(1);
  transform: scale(1.03);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 530px;
  font-size: clamp(2.5rem, 5.1vw, 3.5rem);
  font-weight: 700;
  line-height: 0.95;
  margin-top: 14px;
}

h2 {
  max-width: 670px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}

h3 {
  max-width: 340px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}

p {
  margin: 0;
  color: var(--muted);
}

section {
  position: relative;
  padding: 110px 6vw;
  overflow-x: clip;
  isolation: isolate;
}

.hero-grid,
.problem-grid,
.solution-grid,
.screens-grid,
.split-section,
.benefit-row {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.deep-dive,
.finance-permissions {
  width: 100%;
}

.section-grid {
  display: grid;
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(7, 16, 12, 0.7);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.brand img {
  display: block;
  width: 154px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1;
}

.header-cta {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero {
  min-height: 100vh;
  padding-top: 150px;
  overflow: hidden;
  background: radial-gradient(circle at top left, #1f4b35 0%, #15281f 40%, #0b1410 100%);
}

.hero::after {
  position: absolute;
  right: -18%;
  bottom: -30%;
  width: 70vw;
  height: 70vw;
  content: "";
  background: radial-gradient(circle, rgba(52, 178, 119, 0.13), transparent 62%);
}

.hero::before {
  position: absolute;
  right: -12%;
  top: 14%;
  width: min(48vw, 680px);
  height: 58vh;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(7, 16, 12, 0.25), rgba(7, 16, 12, 0.86)),
    url("./imgs/deco/2987.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  filter: blur(18px) saturate(0.85);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  transform: rotate(-6deg);
}

.agro-lines {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(110deg, transparent 0 42%, rgba(52, 178, 119, 0.28) 43%, transparent 44%),
    linear-gradient(70deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 49%, transparent 50%);
  background-size: 150px 150px, 220px 220px;
  animation: fieldMove 18s linear infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1240px;
  min-height: calc(100vh - 190px);
  align-items: center;
  margin: 0 auto;
  gap: 42px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.hero-copy {
  grid-column: span 6;
}

.hero-visual {
  grid-column: span 6;
}

.eyebrow {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1em;
}

.hero-lead {
  max-width: 540px;
  margin-top: 26px;
  color: #d4ded8;
  font-size: 1.18rem;
}

.feature-pills {
  display: flex;
  max-width: 700px;
  margin-top: 34px;
  gap: 10px;
  flex-wrap: wrap;
}

.feature-pills span,
.role-list span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.05);
  color: #d9e3de;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 0 22px;
}

.btn-primary {
  position: relative;
  background: linear-gradient(88deg, #34b277 -4.75%, #3eef9c 145.44%);
  box-shadow: 0 10px 30px rgba(62, 239, 156, 0.25);
  color: #06100b;
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary::after {
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background: linear-gradient(88deg, rgba(52, 178, 119, 0.5), rgba(62, 239, 156, 0.5));
  opacity: 0;
  animation: buttonPulse 1.8s ease-out infinite;
}

.btn-primary:hover {
  background: linear-gradient(88deg, #3eef9c -4.75%, #b8ffd9 145.44%);
  box-shadow: 0 14px 42px rgba(62, 239, 156, 0.38);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.product-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(16, 26, 21, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), 0 0 70px rgba(52, 178, 119, 0.12);
  backdrop-filter: blur(18px);
}

.product-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
}

.zoomable-image {
  cursor: zoom-in;
}

.product-frame figcaption {
  padding: 16px 18px 18px;
  color: #d8e4de;
  font-weight: 800;
}

.browser-dots {
  display: flex;
  height: 42px;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.hero-product {
  transform: rotateX(4deg) rotateY(-5deg) rotateZ(1deg);
}

.hero-product img {
  aspect-ratio: 16 / 10;
}

.dashboard-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(16, 26, 21, 0.76);
  box-shadow: var(--shadow), 0 0 80px rgba(52, 178, 119, 0.15);
  transform: rotateX(7deg) rotateY(-10deg) rotateZ(2deg);
  backdrop-filter: blur(22px);
}

.dashboard-topbar {
  display: flex;
  height: 46px;
  align-items: center;
  padding: 0 18px;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.dashboard-layout {
  display: grid;
  min-height: 460px;
  grid-template-columns: 132px 1fr;
}

.dashboard-layout aside {
  display: flex;
  padding: 22px 16px;
  gap: 15px;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
}

.dashboard-layout aside b {
  font-family: "Space Grotesk", sans-serif;
}

.dashboard-layout aside span,
.table-preview span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-main {
  padding: 24px;
}

.dash-title,
.metric-grid,
.finance-permissions,
.split-section {
  display: grid;
  gap: 20px;
}

.dash-title {
  align-items: center;
  grid-template-columns: 1fr auto;
}

.dash-title small,
.metric-grid small,
.float-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.dash-title strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
}

.status-dot {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(52, 178, 119, 0.14);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 900;
}

.metric-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.metric-grid article,
.float-card,
.solution-grid article,
.screens-grid article,
.finance-permissions article,
.benefit-row article {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-grid article {
  padding: 16px;
}

.metric-grid strong,
.float-card strong {
  display: block;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.operation-map {
  position: relative;
  height: 160px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(rgba(52, 178, 119, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 178, 119, 0.1) 1px, transparent 1px),
    rgba(52, 178, 119, 0.04);
  background-size: 34px 34px;
}

.route {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: scanRoute 4s linear infinite;
}

.route-one {
  top: 38px;
  transform: rotate(8deg);
}

.route-two {
  top: 82px;
  animation-delay: 1.2s;
  transform: rotate(-5deg);
}

.route-three {
  top: 124px;
  animation-delay: 2.1s;
  transform: rotate(3deg);
}

.operation-map i {
  position: absolute;
  top: 68px;
  left: 52%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 10px rgba(52, 178, 119, 0.14), 0 0 35px rgba(52, 178, 119, 0.55);
}

.table-preview {
  display: grid;
  margin-top: 20px;
  gap: 12px;
  grid-template-columns: 1.3fr 1fr 0.7fr;
}

.float-card {
  position: absolute;
  padding: 16px 18px;
  background: rgba(14, 28, 21, 0.78);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42), 0 0 34px rgba(52, 178, 119, 0.12);
  backdrop-filter: blur(18px);
}

.card-one {
  top: 12%;
  right: -6%;
}

.card-two {
  bottom: 18%;
  left: -8%;
}

.card-three {
  right: 3%;
  bottom: -4%;
}

.section-heading {
  width: min(1180px, 100%);
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 44px;
  text-align: center;
}

.section-heading h2 {
  margin-right: auto;
  margin-left: auto;
  margin-top: 14px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.12rem;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(52, 178, 119, 0.04));
}

.section-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
}

.hero-deco {
  right: -8vw;
  top: 12%;
  width: min(34vw, 420px);
  height: 560px;
  background-image:
    linear-gradient(180deg, rgba(7, 16, 12, 0.14), rgba(7, 16, 12, 0.72)),
    url("./imgs/deco/590.jpg");
  opacity: 0.4;
  filter: blur(6px) saturate(1);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  transform: rotate(-9deg);
}

.problem-deco {
  right: -8vw;
  top: 10%;
  width: min(28vw, 360px);
  height: 520px;
  background-image:
    linear-gradient(180deg, rgba(7, 16, 12, 0.12), rgba(7, 16, 12, 0.8)),
    url("./imgs/deco/13304.jpg");
  opacity: 0.4;
  filter: blur(8px) saturate(1);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 74%);
  transform: rotate(7deg);
}

.solution-deco {
  left: -7vw;
  bottom: 0;
  width: min(30vw, 380px);
  height: 500px;
  background-image:
    linear-gradient(180deg, rgba(245, 247, 246, 0.16), rgba(245, 247, 246, 0.86)),
    url("./imgs/deco/980.jpg");
  opacity: 0.4;
  filter: blur(8px) saturate(1);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  transform: rotate(-6deg);
}

.deep-dive-deco {
  right: -9vw;
  top: 12%;
  width: min(30vw, 380px);
  height: 500px;
  background-image:
    linear-gradient(180deg, rgba(7, 16, 12, 0.1), rgba(7, 16, 12, 0.82)),
    url("./imgs/deco/2906.jpg");
  opacity: 0.4;
  filter: blur(8px) saturate(1);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  transform: rotate(8deg);
}

.execution-deco {
  left: -8vw;
  top: 8%;
  width: min(32vw, 420px);
  height: 520px;
  background-image:
    linear-gradient(180deg, rgba(245, 247, 246, 0.12), rgba(245, 247, 246, 0.88)),
    url("./imgs/deco/3705.jpg");
  opacity: 0.4;
  filter: blur(8px) saturate(1);
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
  transform: rotate(-7deg);
}

.finance-deco {
  right: -8vw;
  bottom: -2%;
  width: min(32vw, 420px);
  height: 520px;
  background-image:
    linear-gradient(180deg, rgba(7, 16, 12, 0.14), rgba(7, 16, 12, 0.84)),
    url("./imgs/deco/2987.jpg");
  opacity: 0.4;
  filter: blur(8px) saturate(1);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 74%);
  transform: rotate(6deg);
}

.cta-deco {
  left: -6vw;
  bottom: -12%;
  width: min(28vw, 360px);
  height: 380px;
  opacity: 0.18;
  background-image:
    linear-gradient(180deg, rgba(7, 16, 12, 0.12), rgba(7, 16, 12, 0.74)),
    url("./imgs/deco/590.jpg");
  filter: blur(10px) saturate(0.9);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 76%);
  transform: rotate(-5deg);
}

.solution,
.execution,
.benefits {
  overflow: hidden;
  background: var(--light-bg);
  color: var(--light-text);
}

.solution::before,
.execution::before,
.benefits::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background:
    radial-gradient(circle at 82% 18%, rgba(52, 178, 119, 0.14), transparent 28%),
    linear-gradient(rgba(11, 20, 16, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 20, 16, 0.035) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 80%);
}

.solution::after {
  position: absolute;
  left: -14%;
  bottom: 4%;
  width: min(44vw, 620px);
  height: 430px;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(245, 247, 246, 0.92), rgba(245, 247, 246, 0.18)),
    url("./imgs/deco/980.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  filter: blur(16px) saturate(0.78);
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
  transform: rotate(4deg);
}

.execution::after {
  position: absolute;
  right: -12%;
  top: 12%;
  width: min(42vw, 560px);
  height: 460px;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(245, 247, 246, 0.12), rgba(245, 247, 246, 0.9)),
    url("./imgs/deco/3705.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: blur(18px) saturate(0.82);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  transform: rotate(-5deg);
}

.solution h2,
.solution h3,
.execution h2,
.benefits h2,
.benefits h3 {
  color: var(--light-text);
}

.solution p,
.execution p,
.benefits p {
  color: var(--light-muted);
}

.solution .eyebrow,
.execution .eyebrow,
.benefits .eyebrow {
  color: var(--primary-dark);
}

.problem-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px 24px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}

.problem-copy {
  position: relative;
  grid-column: 1 / span 7;
  grid-row: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 60px;
  background:
    linear-gradient(145deg, rgba(52, 178, 119, 0.1), transparent 54%),
    rgba(255, 255, 255, 0.035);
}

.problem-copy::before {
  position: absolute;
  inset: -24%;
  content: "";
  background-image:
    linear-gradient(135deg, rgba(7, 16, 12, 0.72), rgba(7, 16, 12, 0.94)),
    url("./imgs/deco/2906.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: blur(24px) saturate(0.8);
  transform: scale(1.12) rotate(-3deg);
}

.problem-copy::after {
  position: absolute;
  right: -12%;
  bottom: -18%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
  background: rgba(62, 239, 156, 0.11);
  filter: blur(34px);
}

.problem-copy>* {
  position: relative;
  z-index: 1;
}

.problem-copy h2 {
  max-width: 650px;
  margin-top: 14px;
}

.problem-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 20px;
}

.operation-pipeline {
  grid-column: 8 / -1;
  grid-row: 1 / span 2;
}

.impact-list {
  grid-column: 1 / span 7;
  grid-row: 2;
}

.operation-pipeline,
.impact-list {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.operation-pipeline {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 10%, rgba(52, 178, 119, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.operation-pipeline::before {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  content: "";
  background: rgba(62, 239, 156, 0.14);
  filter: blur(24px);
  animation: pipelineGlow 4s ease-in-out infinite alternate;
}

.operation-pipeline::after {
  position: absolute;
  right: -14%;
  bottom: -18%;
  width: 260px;
  height: 260px;
  content: "";
  background-image:
    linear-gradient(135deg, rgba(7, 16, 12, 0.82), rgba(7, 16, 12, 0.14)),
    url("./imgs/deco/2987.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  filter: blur(20px) saturate(0.8);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 74%);
  transform: rotate(8deg);
}

.pipeline-header,
.pipeline-metrics {
  position: relative;
  z-index: 1;
}

.pipeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.pipeline-header span {
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
}

.pipeline-header strong {
  border: 1px solid rgba(62, 239, 156, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(62, 239, 156, 0.12);
  color: #8cffc2;
  font-size: 0.78rem;
}

.pipeline-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.pipeline-steps::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 16px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, rgba(62, 239, 156, 0), rgba(62, 239, 156, 0.85), rgba(62, 239, 156, 0));
}

.pipeline-steps span {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(8, 20, 14, 0.58);
  color: #eef8f2;
  font-weight: 900;
}

.pipeline-steps i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3eef9c;
  box-shadow: 0 0 0 7px rgba(62, 239, 156, 0.1), 0 0 22px rgba(62, 239, 156, 0.7);
  animation: nodePulse 1.8s ease-in-out infinite;
}

.pipeline-metrics {
  display: grid;
  margin-top: 22px;
  gap: 10px;
}

.pipeline-metrics article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.pipeline-metrics small {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.pipeline-metrics strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.pipeline-metrics div {
  height: 7px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.pipeline-metrics div span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(88deg, #34b277 -4.75%, #3eef9c 145.44%);
}

.impact-list p {
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 900;
}

.impact-list ul {
  display: grid;
  gap: 10px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.impact-list ul,
.check-grid {
  padding: 0;
  margin: 0;
  list-style: none;
}

.impact-list li,
.check-grid li {
  position: relative;
  padding-left: 26px;
  color: #d8e0dc;
  font-weight: 800;
}

.impact-list li+li {
  margin-top: 0;
}

.impact-list li::before,
.check-grid li::before {
  position: absolute;
  left: 0;
  color: var(--primary);
  content: "✓";
}

.solution-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.solution-grid article {
  position: relative;
  min-height: 250px;
  grid-column: span 6;
  overflow: hidden;
}

.solution-grid article,
.finance-permissions article,
.benefit-row article {
  padding: 30px;
}

.feature-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 178, 119, 0.22);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(52, 178, 119, 0.16), rgba(52, 178, 119, 0.04));
  color: var(--primary-dark);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  line-height: 1;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-grid article,
.benefit-row article {
  border-color: var(--light-border);
  background:
    linear-gradient(145deg, rgba(52, 178, 119, 0.08), transparent 48%),
    var(--light-card);
  box-shadow: 0 18px 46px rgba(11, 20, 16, 0.06);
}

.solution-grid article::after,
.benefit-row article::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 90px;
  height: 90px;
  border-radius: 28px;
  content: "";
  background:
    linear-gradient(rgba(52, 178, 119, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 178, 119, 0.1) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.7;
}

.solution-grid article span {
  color: var(--primary);
  font-weight: 900;
}

.solution-grid h3,
.benefit-row h3 {
  margin-top: 22px;
}

.solution-grid p,
.benefit-row p {
  margin-top: 12px;
}

.interface-pair {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  margin: 44px auto 0;
  gap: 18px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.interface-pair .product-frame {
  grid-column: span 6;
  border-color: var(--light-border);
  background: #0c1712;
}

.screens {
  overflow: hidden;
}

.screens::before {
  position: absolute;
  inset: 12% 0 auto;
  height: 460px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(52, 178, 119, 0.08), transparent);
  filter: blur(24px);
}

.screens-grid {
  position: relative;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.screens-grid article {
  min-height: 230px;
  padding: 16px;
  grid-column: span 6;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(14px);
}

.screens-grid article:first-child {
  grid-column: span 6;
}

.screens-grid article:nth-child(2) {
  grid-column: span 6;
}

.screens-grid article:nth-child(n + 3) {
  grid-column: span 4;
}

.screens-grid article:hover {
  border-color: rgba(52, 178, 119, 0.32);
  box-shadow: 0 20px 80px rgba(52, 178, 119, 0.08);
  transform: translateY(-6px);
}

.screens-grid span {
  display: block;
  margin-bottom: 14px;
  font-weight: 900;
}

.screens-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.7;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  object-position: left top;
  filter: saturate(0.95) contrast(1.02);
}

.deep-dive {
  position: relative;
  display: block;
  width: auto;
}

.deep-dive::before {
  position: absolute;
  left: -10%;
  top: 8%;
  width: min(40vw, 560px);
  height: 520px;
  content: "";
  background-image:
    linear-gradient(135deg, rgba(7, 16, 12, 0.94), rgba(7, 16, 12, 0.28)),
    url("./imgs/deco/2906.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: blur(18px) saturate(0.75);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 74%);
  transform: rotate(6deg);
}

.deep-dive-grid {
  position: relative;
  z-index: 1;
  gap: 46px;
}

.deep-dive .content-block {
  grid-column: span 5;
  text-align: left;
}

.deep-dive .check-grid {
  grid-column: span 7;
}

.wide-shot {
  grid-column: 1 / -1;
}

.deep-dive .content-block h2,
.split-section .content-block h2 {
  max-width: 520px;
}

.deep-dive .content-block p,
.split-section .content-block p {
  max-width: 520px;
}

.content-block p:not(.eyebrow) {
  margin-top: 20px;
  max-width: 390px;
}

.content-block {
  text-align: left;
  grid-column: span 7;

}

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

.check-grid li {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px 12px 40px;
  background: rgba(255, 255, 255, 0.04);
}

.check-grid li::before {
  left: 16px;
  top: 12px;
}

.execution {
  overflow: hidden;
}

.execution-grid {
  gap: 28px;
  align-items: start;
}

.flow-line {
  display: grid;
  grid-column: 1 / -1;
  width: 100%;
  margin: 0 0 44px;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
}

.flow-line span {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 178, 119, 0.2);
  border-radius: 999px;
  background: rgba(52, 178, 119, 0.08);
  color: #0b5a38;
  font-weight: 900;
}

.execution-copy {
  display: grid;
  grid-column: 1 / -1;
  gap: 28px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  text-align: left;
}

.execution-copy .content-block {
  grid-column: span 6;
  text-align: left;
}

.execution-copy .timeline {
  grid-column: span 6;
}

.operation-photo {
  grid-column: span 6;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--light-border);
  border-radius: 5px;
  background: #0c1712;
  box-shadow: 0 22px 60px rgba(11, 20, 16, 0.12);
}

.operation-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(3, 8, 6, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  backdrop-filter: blur(18px);
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: min(96vw, 1600px);
  max-height: 88vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.execution-shot {
  grid-column: 1 / -1;
  margin-top: 0;
  border-color: var(--light-border);
  background: #0c1712;
  margin-top: 30px;
}

.execution-shot img {
  min-height: 430px;
}

.split-section h2 {
  margin-top: 14px;
}

.split-section p:not(.eyebrow) {
  margin-top: 20px;
}

.timeline {
  display: grid;
  gap: 12px;
  grid-column: span 5;
}

.timeline span {
  border-left: 3px solid var(--primary);
  border-radius: 14px;
  padding: 16px 18px;
  border-top: 1px solid var(--light-border);
  border-right: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  background: var(--light-card);
  color: var(--light-text);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(11, 20, 16, 0.05);
}

.finance-permissions {
  position: relative;
  display: block;
  width: auto;
}

.finance-permissions::before {
  position: absolute;
  right: -14%;
  bottom: 0;
  width: min(46vw, 660px);
  height: 500px;
  content: "";
  background-image:
    linear-gradient(135deg, rgba(7, 16, 12, 0.2), rgba(7, 16, 12, 0.92)),
    url("./imgs/deco/2987.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: blur(20px) saturate(0.78);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 76%);
  transform: rotate(-4deg);
}

.finance-grid {
  position: relative;
  z-index: 1;
  gap: 18px;
}

.finance-permissions article {
  grid-column: span 6;
  text-align: center;
}

.finance-permissions h2 {
  margin-top: 14px;
  max-width: 500px;
}

.finance-permissions p:not(.eyebrow) {
  margin-top: 18px;
}

.card-shot {
  margin-top: 24px;
  text-align: left;
}

.role-list {
  display: flex;
  margin-top: 24px;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.benefit-row article {
  position: relative;
  min-height: 230px;
  grid-column: span 4;
  overflow: hidden;
}

.benefit-row article:nth-last-child(-n + 2) {
  grid-column: span 6;
}

.final-cta {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 80px auto;
  border: 1px solid rgba(52, 178, 119, 0.18);
  border-radius: 30px;
  padding: 86px 6vw;
  background:
    linear-gradient(135deg, rgba(52, 178, 119, 0.16), rgba(255, 255, 255, 0.035)),
    var(--card);
  text-align: center;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.32);
}

.final-cta::before {
  position: absolute;
  inset: -40%;
  content: "";
  background-image:
    radial-gradient(circle at 50% 50%, rgba(62, 239, 156, 0.16), transparent 34%),
    url("./imgs/deco/590.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: blur(24px) saturate(0.75);
  transform: scale(1.08);
}

.final-cta>* {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin: 0 auto;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px auto 30px;
}

@keyframes fieldMove {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 300px 300px, -440px 440px;
  }
}

@keyframes scanRoute {
  from {
    translate: -12% 0;
  }

  to {
    translate: 12% 0;
  }
}

@keyframes buttonPulse {
  0% {
    opacity: 0.45;
    transform: scale(0.98);
  }

  70% {
    opacity: 0;
    transform: scale(1.12);
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes pipelineGlow {
  from {
    opacity: 0.45;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0.9;
    transform: translate3d(50px, 35px, 0) scale(1.18);
  }
}

@keyframes nodePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.28);
  }
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .problem-grid,
  .section-grid,
  .split-section,
  .finance-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy,
  .hero-visual,
  .problem-copy,
  .operation-pipeline,
  .impact-list,
  .deep-dive .content-block,
  .deep-dive .check-grid,
  .execution-copy,
  .execution-shot {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero-visual {
    max-width: 720px;
  }

  .impact-list {
    grid-column: 1 / -1;
  }

  .problem-copy {
    grid-row: auto;
  }

  .operation-pipeline,
  .impact-list {
    grid-row: auto;
  }

  .solution-grid,
  .screens-grid,
  .interface-pair {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .solution-grid article,
  .interface-pair .product-frame,
  .screens-grid article,
  .screens-grid article:first-child,
  .screens-grid article:nth-child(2),
  .screens-grid article:nth-child(n + 3),
  .finance-permissions article {
    grid-column: span 3;
  }

  .benefit-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .benefit-row article,
  .benefit-row article:nth-last-child(-n + 2) {
    grid-column: span 3;
  }
}

@media (max-width: 720px) {
  section {
    padding: 82px 20px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 62px;
    padding: 0 10px 0 14px;
  }

  .brand img {
    width: 128px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-grid {
    gap: 44px;
  }

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

  .dashboard-shell {
    transform: none;
  }

  .hero-product {
    transform: none;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-layout aside,
  .float-card {
    display: none;
  }

  .hero::before,
  .solution::after,
  .execution::after,
  .deep-dive::before,
  .finance-permissions::before {
    opacity: 0.1;
    filter: blur(24px);
  }

  .metric-grid,
  .solution-grid,
  .screens-grid,
  .section-grid,
  .interface-pair,
  .check-grid,
  .flow-line,
  .benefit-row {
    grid-template-columns: 1fr;
  }

  .solution-grid article,
  .interface-pair .product-frame,
  .screens-grid article,
  .screens-grid article:first-child,
  .screens-grid article:nth-child(2),
  .screens-grid article:nth-child(n + 3),
  .finance-permissions article,
  .problem-copy,
  .operation-pipeline,
  .impact-list,
  .execution-copy,
  .execution-copy .content-block,
  .execution-copy .timeline,
  .execution-shot,
  .benefit-row article,
  .benefit-row article:nth-last-child(-n + 2) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .impact-list ul {
    grid-template-columns: 1fr;
  }

  .dash-title {
    grid-template-columns: 1fr;
  }

}