:root {
  --bg: #f3f6ef;
  --paper: #ffffff;
  --ink: #14210f;
  --muted: #5a6a55;
  --line: #d5e3cc;
  --green: #5aa30f;
  --green-d: #3d7608;
  --lime: #7ed321;
  --soft: #e8f4d8;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(20, 40, 12, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-anim {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 8% -10%, rgba(126, 211, 33, 0.28), transparent 55%),
    radial-gradient(700px 480px at 100% 8%, rgba(90, 163, 15, 0.14), transparent 50%),
    radial-gradient(800px 500px at 50% 110%, rgba(126, 211, 33, 0.12), transparent 55%),
    linear-gradient(180deg, #f7faf3, #eef3e8 40%, #f3f6ef);
  animation: bgShift 18s ease-in-out infinite alternate;
}
.orb {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  pointer-events: none;
  animation: floatY 12s ease-in-out infinite;
}
.orb-a { width: 280px; height: 280px; background: #b6ee6a; top: 12%; left: -60px; }
.orb-b { width: 340px; height: 340px; background: #9ad63a; right: -80px; top: 40%; animation-delay: -4s; }
.orb-c { width: 220px; height: 220px; background: #d4f59a; bottom: 8%; left: 30%; animation-delay: -7s; }

@keyframes bgShift {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(12deg); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.06); }
}

a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  width: 100%;
  max-width: none;
  padding: 8px 28px 8px 10px;
  margin: 0;
}
.brand {
  margin-right: auto;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 0;
}
.logo-orbit {
  position: relative;
  display: inline-block;
  overflow: visible;
}
.logo-orbit::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  left: 12%;
  top: 50%;
  margin: -28px 0 0 -28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 211, 33, 0.75) 0%, rgba(126, 211, 33, 0.2) 42%, transparent 70%);
  filter: blur(6px);
  animation: logoGlowOrbit 5s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.logo-orbit::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.4) 50%, transparent 62%);
  background-size: 220% 100%;
  animation: logoSweep 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 78%);
}
.brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  height: 78px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  object-position: left center;
  animation: logoFloat 3.6s ease-in-out infinite;
  background: transparent;
}
@keyframes logoGlowOrbit {
  0% { left: 8%; top: 22%; }
  25% { left: 88%; top: 28%; }
  50% { left: 78%; top: 82%; }
  75% { left: 14%; top: 78%; }
  100% { left: 8%; top: 22%; }
}
@keyframes logoSweep {
  0% { background-position: 120% 0; }
  40%, 100% { background-position: -40% 0; }
}
@keyframes logoFloat {
  0%, 100% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(1.03) rotate(-0.4deg); }
  70% { transform: scale(1.015) rotate(0.4deg); }
}

.slogan-stage {
  text-align: left;
  padding: 32px 0 14px;
  position: relative;
  overflow: hidden;
}
.slogan-stage .spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0;
  animation: sparkFly 2.8s ease-in-out infinite;
}
.slogan-line {
  margin: 0;
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  perspective: 600px;
}
.slogan-line .ch {
  display: inline-block;
  opacity: 0;
  transform-origin: 50% 80%;
  animation: letterIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i) * 0.045s);
}
.slogan-line .ch.space { width: 0.32em; }
.slogan-line .ch.dest {
  color: var(--green-d);
  animation: letterIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards, glitch 3.2s steps(2, end) infinite;
  animation-delay: calc(var(--i) * 0.045s), calc(1.4s + var(--i) * 0.02s);
}
.slogan-bar {
  display: block;
  height: 4px;
  width: 0;
  max-width: 320px;
  margin-top: 14px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--lime), #fff, var(--green));
  background-size: 220% 100%;
  animation: barGrow 1.2s ease 0.9s forwards, shine 2.2s linear 1.8s infinite;
}
@keyframes letterIn {
  0% { opacity: 0; transform: translateY(36px) rotateX(-80deg) scale(0.6); filter: blur(8px); }
  70% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) rotateX(0) scale(1); filter: blur(0); }
}
@keyframes glitch {
  0%, 90%, 100% { transform: translate(0, 0); text-shadow: 0 0 0 transparent; }
  92% { transform: translate(-2px, 1px); text-shadow: 2px 0 0 #7ed321, -2px 0 0 #3d7608; }
  94% { transform: translate(2px, -1px); text-shadow: -2px 0 0 #7ed321; }
  96% { transform: translate(0, 0); text-shadow: none; }
}
@keyframes sparkFly {
  0% { opacity: 0; transform: translate(0, 8px) scale(0.4); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(1.2); }
}
@keyframes barGrow {
  from { width: 0; }
  to { width: 320px; }
}
@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }
.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 18px;
}
.btn-green { background: linear-gradient(90deg, var(--green), var(--lime)); color: #0d1a08; }
.btn-ghost { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.btn-lg { padding: 14px 22px; }

.hero { padding: 64px 0 28px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-d);
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--lime); }
h1, h2, h3 { font-family: Arial, Helvetica, sans-serif; letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(2.1rem, 5vw, 3.7rem); margin: 12px 0 14px; max-width: 16ch; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 10px; }
.lede { color: var(--muted); font-size: 1.08rem; max-width: 48ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.console {
  background: #10180e;
  color: #e8f6d8;
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.console::after {
  content: "";
  position: absolute;
  width: 180px; height: 180px;
  right: -40px; top: -50px;
  background: radial-gradient(circle, rgba(126,211,33,0.45), transparent 70%);
  animation: floatY 8s ease-in-out infinite;
}
.console-top { display: flex; justify-content: space-between; font-size: 0.72rem; letter-spacing: 0.12em; color: #9cbb86; }
.console h3 { color: #fff; margin: 18px 0 8px; }
.meter { height: 8px; background: #24301f; border-radius: 99px; margin: 8px 0 14px; overflow: hidden; }
.meter > span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green), var(--lime));
  animation: fill 2.4s ease forwards;
}
.m1 > span { animation-delay: 0.2s; }
.m2 > span { width: 0; animation: fill72 2.4s ease 0.4s forwards; }
.m3 > span { animation: fill91 2.4s ease 0.6s forwards; }
@keyframes fill { to { width: 86%; } }
@keyframes fill72 { to { width: 72%; } }
@keyframes fill91 { to { width: 91%; } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid rgba(126,211,33,0.35);
  color: var(--lime);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 8px;
}
.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.stat b { display: block; font-family: Arial, Helvetica, sans-serif; font-size: 2.2rem; color: var(--green-d); }
.stat span { color: var(--muted); }

.section { padding: 72px 0; }
.section.alt { background: rgba(255,255,255,0.55); }
.section-head { margin-bottom: 28px; max-width: 62ch; }
.sub { color: var(--muted); margin: 0; }

.cards-3, .cards-4, .cards-2 { display: grid; gap: 14px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-2 { grid-template-columns: 1fr 1fr; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--lime); }
.card h3 { margin: 0 0 8px; font-size: 1.12rem; }
.card p { margin: 0; color: var(--muted); }
.icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--soft); color: var(--green-d); font-weight: 800; margin-bottom: 12px;
}

.stack { display: grid; gap: 10px; }
.layer {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.layer strong { color: var(--green-d); font-size: 0.78rem; letter-spacing: 0.08em; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.pill {
  background: var(--soft);
  color: var(--green-d);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.work-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.work-card:hover { transform: translateY(-4px); }
.work-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  background: #e8efe0;
}
.work-card div { padding: 16px 18px 20px; }
.work-card h3 { margin: 0 0 6px; }
.work-card p { margin: 0; color: var(--muted); }

.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.industries article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  min-height: 92px;
  font-weight: 700;
}
.industries article small { display: block; font-weight: 500; color: var(--muted); margin-top: 6px; }

.plant {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}
.plant ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); }

.map-wrap {
  background: #eef4e8;
  border-radius: 24px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-plot { position: relative; }
.map-img { width: 100%; height: auto; display: block; border-radius: 18px; }
.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(90, 163, 15, 0.55);
  animation: pingDot 2s ease-out infinite;
  pointer-events: none;
}
@keyframes pingDot {
  0% { box-shadow: 0 0 0 0 rgba(90, 163, 15, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(90, 163, 15, 0); }
  100% { box-shadow: 0 0 0 0 rgba(90, 163, 15, 0); }
}

.steps { counter-reset: g; }
.steps article::before {
  counter-increment: g;
  content: counter(g, decimal-leading-zero);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--green);
  display: block;
  margin-bottom: 6px;
}

.banner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(120deg, #e7f6d0, #fff 45%, #d8efb8);
  border: 1px solid var(--line);
}

.form { display: grid; gap: 12px; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
  background: #fff;
}
.form textarea { min-height: 120px; }

.page-hero { padding: 48px 0 8px; }
.page-hero h1 { max-width: 18ch; }

.service-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.strip { display: flex; flex-wrap: wrap; gap: 8px; }

.site-footer {
  border-top: 3px solid var(--lime);
  padding: 36px 0 28px;
  background: linear-gradient(180deg, #f7faf3, #e7efdc);
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-grid strong { color: var(--ink); display: block; margin-bottom: 6px; }
.footer-grid a { text-decoration: none; display: block; margin: 4px 0; }
.footer-grid a:hover { color: var(--green-d); }
.footer-copy {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .menu-btn { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .work-grid, .hero-grid, .cards-3, .cards-4, .cards-2, .plant, .layer, .stats, .industries, .footer-grid {
    grid-template-columns: 1fr;
  }
  .industries { grid-template-columns: 1fr 1fr; }
  .brand-logo { height: 56px; max-width: 260px; }
  .header-inner { padding-left: 6px; }
}
