:root {
  --bg: #f3f0e9;
  --paper: #fbfaf6;
  --ink: #121816;
  --muted: #69726e;
  --line: rgba(18, 24, 22, .14);
  --dark: #0d1513;
  --dark-2: #121d1a;
  --green: #b9f24b;
  --green-soft: #d8ff92;
  --white: #f9fbf7;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(25, 35, 30, .08);
  --shell: min(1240px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--green); color: var(--dark); }

.shell { width: var(--shell); margin: 0 auto; position: relative; z-index: 2; }
.section { padding: 112px 0; }
.section-dark { background: var(--dark); color: var(--white); }

.page-progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 200; pointer-events: none; }
.page-progress span { display: block; height: 100%; width: 0; background: var(--green); }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; color: var(--white);
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(13, 21, 19, .82); backdrop-filter: blur(18px); border-color: rgba(255,255,255,.08); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand-mark { width: 38px; height: 38px; color: var(--green); display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-copy { display: grid; line-height: 1; gap: 3px; }
.brand-copy b { font: 600 14px/1 "Unbounded", sans-serif; letter-spacing: -.02em; }
.brand-copy small { font-size: 9px; letter-spacing: .34em; color: rgba(255,255,255,.62); }
.nav { display: flex; gap: 30px; font-size: 13px; color: rgba(255,255,255,.72); }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--white); }
.header-cta { justify-self: end; display: inline-flex; gap: 12px; align-items: center; border: 1px solid rgba(255,255,255,.16); padding: 12px 16px; border-radius: 999px; font-size: 13px; background: rgba(255,255,255,.04); }
.header-cta span { color: var(--green); }
.menu-btn { display: none; background: transparent; border: 0; width: 42px; height: 42px; padding: 10px; justify-self: end; cursor: pointer; }
.menu-btn span { display: block; width: 100%; height: 1px; background: #fff; margin: 7px 0; transition: transform .2s ease; }
.mobile-nav { position: fixed; inset: 74px 18px auto 18px; padding: 24px; border-radius: 22px; background: rgba(19, 29, 26, .98); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 30px 70px rgba(0,0,0,.35); }
.mobile-nav a { display: block; padding: 14px 2px; font-size: 20px; border-bottom: 1px solid rgba(255,255,255,.08); }

.hero { min-height: 860px; padding: 160px 0 0; position: relative; overflow: hidden; }
.hero-grid, .contact-grid-bg {
  position: absolute; inset: 0; opacity: .16; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.orb-one { width: 540px; height: 540px; right: -180px; top: -80px; background: radial-gradient(circle, rgba(185,242,75,.18), rgba(185,242,75,0) 67%); }
.orb-two { width: 460px; height: 460px; left: 32%; bottom: -250px; background: radial-gradient(circle, rgba(79,127,108,.15), transparent 68%); }
.hero-layout { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 11px; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 700; color: var(--muted); }
.eyebrow { color: rgba(255,255,255,.6); margin-bottom: 26px; }
.eyebrow span { width: 34px; height: 1px; background: var(--green); }
.hero h1 { font: 500 clamp(48px, 5.5vw, 78px)/.98 "Unbounded", sans-serif; letter-spacing: -.055em; margin: 0 0 28px; max-width: 820px; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero-lead { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.64); max-width: 660px; margin: 0; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.btn { min-height: 54px; padding: 0 22px; border-radius: 999px; display: inline-flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--dark); }
.btn-ghost { border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.04); }
.btn-ghost:hover { border-color: rgba(255,255,255,.35); }
.trust-line { display: flex; gap: 0; margin-top: 50px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; }
.trust-item { min-width: 150px; padding-right: 30px; margin-right: 30px; border-right: 1px solid rgba(255,255,255,.1); display: grid; gap: 6px; }
.trust-item:last-child { border-right: 0; }
.trust-item b { font: 600 18px/1 "Unbounded", sans-serif; color: var(--white); }
.trust-item span { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }

.hero-visual { min-width: 0; }
.visual-frame { border: 1px solid rgba(255,255,255,.12); border-radius: 30px; overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); box-shadow: 0 40px 100px rgba(0,0,0,.28); backdrop-filter: blur(14px); transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.visual-topline { height: 54px; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .11em; }
.visual-topline small { margin-left: auto; color: var(--green); font-weight: 800; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(185,242,75,.08); }
.site-diagram { height: 440px; position: relative; overflow: hidden; background: radial-gradient(circle at 35% 32%, rgba(185,242,75,.08), transparent 30%), #111a18; }
.site-diagram::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px); background-size: 18px 18px; opacity: .22; }
.diagram-road { position: absolute; background: rgba(255,255,255,.07); border: 1px dashed rgba(255,255,255,.16); border-radius: 999px; transform-origin: center; }
.road-a { width: 500px; height: 50px; left: -80px; bottom: 92px; transform: rotate(-12deg); }
.road-b { width: 370px; height: 42px; right: -80px; top: 130px; transform: rotate(28deg); }
.plot { position: absolute; border: 1px solid rgba(185,242,75,.4); background: rgba(185,242,75,.075); color: rgba(216,255,146,.75); display: grid; place-items: center; font-size: 9px; letter-spacing: .12em; transition: background .2s ease, transform .2s ease; }
.plot:hover { background: rgba(185,242,75,.17); transform: translateY(-3px); }
.plot-1 { left: 9%; top: 15%; width: 20%; height: 18%; clip-path: polygon(8% 0, 100% 9%, 92% 100%, 0 88%); }
.plot-2 { left: 31%; top: 11%; width: 23%; height: 22%; clip-path: polygon(0 9%, 93% 0, 100% 88%, 8% 100%); }
.plot-3 { left: 57%; top: 16%; width: 29%; height: 19%; clip-path: polygon(4% 0, 100% 12%, 89% 100%, 0 80%); }
.plot-4 { left: 15%; top: 38%; width: 24%; height: 21%; clip-path: polygon(12% 0, 100% 7%, 89% 100%, 0 82%); }
.plot-5 { left: 42%; top: 39%; width: 22%; height: 24%; clip-path: polygon(5% 5%, 92% 0, 100% 90%, 0 100%); }
.plot-6 { left: 67%; top: 40%; width: 20%; height: 22%; clip-path: polygon(0 0, 100% 15%, 85% 100%, 8% 90%); }
.plot-7 { left: 31%; top: 66%; width: 25%; height: 17%; clip-path: polygon(0 0, 95% 7%, 100% 100%, 12% 85%); }
.plot-8 { left: 59%; top: 67%; width: 27%; height: 17%; clip-path: polygon(7% 4%, 100% 0, 91% 100%, 0 91%); }
.checkpoint-card { position: absolute; left: 5%; bottom: 32px; display: grid; grid-template-columns: 38px 1fr; column-gap: 10px; align-items: center; background: var(--green); color: var(--dark); padding: 12px 14px; border-radius: 14px; z-index: 3; box-shadow: 0 12px 35px rgba(0,0,0,.23); }
.checkpoint-icon { grid-row: span 2; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: rgba(13,21,19,.08); }
.checkpoint-icon svg { width: 24px; }
.checkpoint-card span { font-size: 9px; letter-spacing: .12em; opacity: .65; }
.checkpoint-card b { font-size: 12px; }
.truck-dot { position: absolute; width: 17px; height: 17px; border-radius: 50%; border: 1px solid var(--green); z-index: 2; animation: pulse 2.2s ease-in-out infinite; }
.truck-dot span { position: absolute; inset: 4px; background: var(--green); border-radius: 50%; }
.truck-1 { left: 51%; bottom: 112px; }
.truck-2 { right: 16%; top: 136px; animation-delay: .7s; }
.route-label { position: absolute; right: 18px; bottom: 26px; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.38); }
.visual-footer { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.08); }
.visual-footer div { padding: 16px 18px; border-right: 1px solid rgba(255,255,255,.07); display: grid; gap: 4px; }
.visual-footer div:last-child { border-right: 0; }
.visual-footer span { font-size: 9px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }
.visual-footer b { font-size: 12px; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(185,242,75,.22); } 50% { box-shadow: 0 0 0 10px rgba(185,242,75,0); } }

.hero-ticker { position: relative; left: auto; right: auto; bottom: auto; height: 60px; margin-top: 72px; overflow: hidden; border-top: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.025); display: flex; align-items: center; }
.ticker-track { display: flex; align-items: center; gap: 22px; white-space: nowrap; width: max-content; animation: ticker 36s linear infinite; color: rgba(255,255,255,.52); font-size: 11px; letter-spacing: .12em; }
.ticker-track i { color: var(--green); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-kicker { margin-bottom: 34px; }
.section-kicker span { font: 600 11px/1 "Unbounded", sans-serif; color: var(--ink); border: 1px solid var(--line); border-radius: 999px; padding: 7px 9px; letter-spacing: 0; }
.section-kicker.light { color: rgba(255,255,255,.5); }
.section-kicker.light span { color: var(--green); border-color: rgba(255,255,255,.14); }
.intro { background: var(--bg); }
.intro-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 90px; align-items: end; }
.intro-heading h2, .section-head h2, .infra-copy h2, .location-copy h2, .contact-copy h2 { font: 500 clamp(40px, 5vw, 68px)/1.02 "Unbounded", sans-serif; letter-spacing: -.05em; margin: 0; }
.intro-heading h2 span { color: #68736e; }
.intro-copy p { font-size: 17px; line-height: 1.7; color: #58615d; margin: 0 0 24px; }
.intro-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.intro-pills span, .contact-tags span { border: 1px solid var(--line); padding: 9px 12px; border-radius: 999px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.metrics-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.metric-card { min-height: 310px; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 22px; position: relative; overflow: hidden; box-shadow: 0 12px 35px rgba(37, 49, 44, .035); }
.metric-card b { display: block; margin-top: 38px; font: 600 clamp(42px, 4vw, 58px)/1 "Unbounded", sans-serif; letter-spacing: -.05em; }
.metric-card p { max-width: 230px; margin: 13px 0 0; color: #66706c; font-size: 13px; line-height: 1.5; }
.metric-index { font: 600 10px/1 "Unbounded", sans-serif; opacity: .4; }
.metric-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.metric-dark p { color: rgba(255,255,255,.52); }
.metric-accent { background: var(--green); border-color: var(--green); }
.metric-accent p { color: rgba(13,21,19,.68); }
.metric-art { position: absolute; left: 22px; right: 22px; bottom: 20px; height: 54px; display: flex; align-items: end; gap: 5px; opacity: .7; }
.metric-art.bars i { flex: 1; background: rgba(255,255,255,.1); border-top: 1px solid rgba(255,255,255,.28); }
.metric-art.bars i:nth-child(1){height:26%}.metric-art.bars i:nth-child(2){height:49%}.metric-art.bars i:nth-child(3){height:71%}.metric-art.bars i:nth-child(4){height:56%}.metric-art.bars i:nth-child(5){height:92%}
.tiles { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(2,1fr); gap: 4px; height: 64px; }
.tiles i { background: rgba(18,24,22,.05); border: 1px solid var(--line); }
.scale-art { position: absolute; left: 22px; right: 22px; bottom: 24px; height: 54px; border: 1px solid rgba(13,21,19,.3); border-radius: 8px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding: 8px; }
.scale-art span { height: 100%; border-right: 1px solid rgba(13,21,19,.2); }
.scale-art span:last-child { border: 0; }
.digital-art { position: absolute; left: 22px; right: 22px; bottom: 22px; display: grid; gap: 5px; }
.digital-art i { display: block; height: 6px; background: #e2e3df; border-radius: 10px; }
.digital-art i:nth-child(1){width:90%}.digital-art i:nth-child(2){width:65%}.digital-art i:nth-child(3){width:78%}.digital-art i:nth-child(4){width:46%; background: var(--green)}

.services-section { background: #e9e6de; }
.section-head { display: grid; grid-template-columns: 1.1fr .6fr; align-items: end; gap: 60px; margin-bottom: 48px; }
.section-head p { margin: 0 0 5px; font-size: 14px; line-height: 1.65; color: #66706c; }
.waste-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.waste-card { min-height: 310px; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 22px; position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.waste-card:hover { transform: translateY(-6px); box-shadow: 0 22px 55px rgba(32,44,38,.08); border-color: rgba(18,24,22,.24); }
.waste-featured { grid-column: span 2; background: #dce1d9; }
.waste-number { position: absolute; top: 22px; right: 22px; font: 600 10px/1 "Unbounded", sans-serif; color: #89928e; }
.waste-icon { width: 68px; height: 68px; color: #22332d; margin-bottom: 46px; }
.waste-icon svg { width: 100%; height: 100%; }
.waste-featured .waste-icon { width: 110px; height: 110px; margin-bottom: 20px; }
.waste-card h3 { margin: 0 0 10px; font: 600 20px/1.15 "Unbounded", sans-serif; letter-spacing: -.035em; }
.waste-featured h3 { font-size: 30px; }
.waste-card p { margin: 0; color: #6a736f; font-size: 13px; line-height: 1.55; max-width: 330px; }
.chip-row { display: flex; gap: 7px; margin-top: 18px; }
.chip-row span { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; border: 1px solid rgba(18,24,22,.15); padding: 7px 9px; border-radius: 999px; }
.list-note { margin-top: 12px; background: var(--dark); color: var(--white); border-radius: 22px; padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.list-note div { display: grid; gap: 5px; }
.list-note b { font: 600 14px/1.2 "Unbounded", sans-serif; }
.list-note div span { color: rgba(255,255,255,.52); font-size: 12px; }
.list-note a { display: inline-flex; gap: 16px; align-items: center; background: var(--green); color: var(--dark); padding: 13px 16px; border-radius: 999px; font-size: 12px; font-weight: 800; white-space: nowrap; }

.process-section { position: relative; overflow: hidden; }
.process-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; right: -260px; top: -260px; background: radial-gradient(circle, rgba(185,242,75,.13), transparent 68%); }
.process-head { display: grid; grid-template-columns: 1fr .42fr; align-items: end; gap: 70px; margin-bottom: 78px; }
.process-head h2 { font: 500 clamp(42px, 5.4vw, 70px)/1.02 "Unbounded", sans-serif; letter-spacing: -.05em; margin: 0; }
.process-head h2 em { color: var(--green); font-style: normal; }
.process-head p { margin: 0 0 6px; color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.65; }
.process-flow { position: relative; display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.flow-line { position: absolute; left: 4.5%; right: 4.5%; top: 23px; height: 1px; background: rgba(255,255,255,.12); }
.flow-line span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--green), rgba(185,242,75,.12)); transform-origin: left; }
.flow-step { position: relative; z-index: 2; }
.flow-dot { width: 48px; height: 48px; border-radius: 50%; background: #16211e; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; margin-bottom: 34px; }
.flow-dot span { font: 600 9px/1 "Unbounded", sans-serif; color: rgba(255,255,255,.7); }
.flow-step.active .flow-dot { background: var(--green); border-color: var(--green); }
.flow-step.active .flow-dot span { color: var(--dark); }
.flow-card { min-height: 250px; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.025); border-radius: 20px; padding: 20px; }
.flow-card small { text-transform: uppercase; letter-spacing: .12em; font-size: 9px; color: var(--green); }
.flow-card h3 { font: 600 17px/1.3 "Unbounded", sans-serif; letter-spacing: -.035em; margin: 18px 0 12px; }
.flow-card p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.6; }

.infrastructure { background: var(--bg); }
.infra-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; grid-template-areas: "main kip tri" "main log access"; gap: 12px; }
.infra-main { grid-area: main; min-height: 730px; background: #cdd7ce; border-radius: 28px; padding: 32px; position: relative; overflow: hidden; border: 1px solid var(--line); }
.infra-kip { grid-area: kip; }.infra-triniti{grid-area:tri}.infra-logistics{grid-area:log}.infra-access{grid-area:access}
.mini-tag { display: inline-flex; padding: 7px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; letter-spacing: .13em; font-weight: 800; opacity: .62; }
.infra-copy h2 { font-size: clamp(42px,4.4vw,62px); margin-top: 20px; }
.infra-copy p { max-width: 520px; color: #53605a; line-height: 1.6; font-size: 14px; }
.cadaster-visual { position: absolute; left: 28px; right: 28px; bottom: 28px; height: 355px; background: rgba(255,255,255,.32); border: 1px solid rgba(18,24,22,.12); border-radius: 22px; overflow: hidden; }
.cadaster-visual::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(18,24,22,.16) 1px, transparent 1px); background-size: 16px 16px; opacity: .32; }
.cad { position: absolute; border: 1px solid rgba(18,24,22,.28); background: rgba(255,255,255,.26); display: grid; place-items: center; font-size: 10px; font-weight: 800; color: rgba(18,24,22,.6); }
.c1{left:7%;top:9%;width:22%;height:22%;clip-path:polygon(8% 0,100% 7%,90% 100%,0 83%)}
.c2{left:31%;top:7%;width:25%;height:24%;clip-path:polygon(0 4%,94% 0,100% 92%,7% 100%)}
.c3{left:59%;top:10%;width:32%;height:22%;clip-path:polygon(5% 0,100% 10%,92% 100%,0 84%)}
.c4{left:10%;top:36%;width:25%;height:24%;clip-path:polygon(8% 0,100% 7%,90% 100%,0 87%)}
.c5{left:38%;top:36%;width:24%;height:25%;clip-path:polygon(3% 4%,94% 0,100% 89%,0 100%)}
.c6{left:65%;top:37%;width:24%;height:24%;clip-path:polygon(0 0,100% 11%,87% 100%,8% 91%)}
.c7{left:24%;top:66%;width:31%;height:21%;clip-path:polygon(0 0,96% 6%,100% 100%,11% 87%)}
.c8{left:59%;top:66%;width:31%;height:21%;clip-path:polygon(6% 4%,100% 0,91% 100%,0 91%)}
.cad-route { position:absolute; left:-10%; right:-10%; bottom:64px; height:38px; background:rgba(18,24,22,.08); transform:rotate(-5deg); border-top:1px dashed rgba(18,24,22,.22); border-bottom:1px dashed rgba(18,24,22,.22); }
.cad-kip { position:absolute; left:7%; bottom:22px; background:var(--dark); color:var(--green); padding:10px 13px; border-radius:10px; font:600 10px/1 "Unbounded",sans-serif; }
.infra-card { min-height: 355px; border-radius: 28px; padding: 22px; background: var(--paper); border: 1px solid var(--line); overflow: hidden; position: relative; }
.card-top { display: flex; justify-content: space-between; align-items: center; }
.card-top span { font: 600 10px/1 "Unbounded",sans-serif; color:#8c9691; }
.card-top small { font-size: 9px; letter-spacing: .13em; color:#8c9691; }
.infra-card h3 { margin: 18px 0 8px; font:600 18px/1.25 "Unbounded",sans-serif; letter-spacing:-.035em; }
.infra-card p { margin:0; font-size:12px; line-height:1.55; color:#6a736f; }
.infra-icon-large { height: 138px; display: grid; place-items: center; color: #4c5c55; }
.infra-icon-large svg { width: 114px; }
.triniti-ui { margin-top: 30px; height: 138px; border-radius: 14px; background: var(--dark); color: #fff; padding: 12px; }
.tri-head { display:flex; align-items:center; gap:7px; font-size:7px; letter-spacing:.08em; color:rgba(255,255,255,.48); margin-bottom:16px; }
.tri-head i { width:6px;height:6px;border-radius:50%;background:var(--green); }
.tri-head b { margin-left:auto;color:var(--green);font-size:7px; }
.tri-row { display:flex; align-items:center; justify-content:space-between; font-size:8px; color:rgba(255,255,255,.65); border-top:1px solid rgba(255,255,255,.08); padding:7px 0; }
.tri-row i { width:30%;height:4px;border-radius:4px;background:rgba(255,255,255,.12); }
.tri-status { display:flex; justify-content:space-between; font-size:8px; padding-top:7px; border-top:1px solid rgba(255,255,255,.08); color:rgba(255,255,255,.45); }
.tri-status b { color:var(--green); }
.network-art { height: 140px; margin-top: 14px; position: relative; color: #778c82; }
.network-art svg { position:absolute;inset:0;width:100%;height:100%; }
.node { position:absolute;width:12px;height:12px;border-radius:50%;background:var(--green);border:3px solid var(--paper);box-shadow:0 0 0 1px rgba(18,24,22,.2);z-index:2; }
.n1{left:5%;top:62%}.n2{left:36%;top:18%}.n3{left:55%;top:71%}.n4{left:75%;top:26%}.n5{right:4%;top:50%}
.road-art { height: 140px; margin-top: 14px; position: relative; overflow:hidden; }
.road-line { position:absolute; height:32px; width:130%; left:-15%; background:#e8e9e4; border-top:1px dashed #b5bbb6; border-bottom:1px dashed #b5bbb6; border-radius:999px; }
.r1{top:40px;transform:rotate(-13deg)}.r2{top:83px;transform:rotate(16deg)}
.road-car { position:absolute; width:20px;height:10px;border-radius:3px;background:var(--dark);left:57%;top:58px;transform:rotate(-13deg);box-shadow:10px 2px 0 -6px var(--green); }

.location-section { padding-top: 0; }
.location-card { background: var(--dark); color: var(--white); border-radius: 32px; min-height: 440px; display:grid;grid-template-columns:.75fr 1.25fr; overflow:hidden; }
.location-copy { padding: 48px; }
.location-copy h2 { font-size: clamp(42px,4.5vw,62px); margin-top:22px; }
.location-copy p { color:rgba(255,255,255,.53);line-height:1.6;font-size:14px;max-width:430px; }
.text-link { margin-top:28px;display:inline-flex;gap:13px;align-items:center;color:var(--green);font-size:13px;font-weight:800; }
.route-map { position:relative;overflow:hidden;background:#111b18; }
.map-grid { position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);background-size:32px 32px; }
.route-map svg { position:absolute;inset:20% 4%;width:92%;height:65%;color:rgba(185,242,75,.5); }
.map-point { position:absolute;display:grid;gap:3px;padding-left:22px; }
.map-point i { position:absolute;left:0;top:2px;width:12px;height:12px;border-radius:50%;background:var(--green);box-shadow:0 0 0 8px rgba(185,242,75,.08); }
.map-point b { font:600 11px/1 "Unbounded",sans-serif; }
.map-point span { font-size:9px;color:rgba(255,255,255,.42);text-transform:uppercase;letter-spacing:.08em; }
.point-a{left:10%;bottom:22%}.point-b{right:10%;top:22%}
.route-chip { position:absolute;right:24px;bottom:24px;border:1px solid rgba(255,255,255,.13);padding:9px 12px;border-radius:999px;font-size:9px;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.55); }

.contact-section { position:relative;overflow:hidden;padding:110px 0; }
.contact-grid-bg { opacity:.12;mask-image:radial-gradient(circle at 40% 40%,black,transparent 68%); }
.contact-layout { display:grid;grid-template-columns:1fr .8fr;gap:90px;align-items:center; }
.contact-copy h2 { font-size:clamp(46px,5.3vw,72px); }
.contact-copy h2 em { color:var(--green);font-style:normal; }
.contact-copy>p { max-width:600px;color:rgba(255,255,255,.53);font-size:15px;line-height:1.65;margin:24px 0; }
.contact-tags { display:flex;flex-wrap:wrap;gap:8px; }
.contact-tags span { color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.12); }
.contact-panel { background:#f3f3ed;color:var(--ink);border-radius:28px;padding:16px;box-shadow:0 40px 110px rgba(0,0,0,.24); }
.contact-panel-head { padding:12px 10px 18px;display:flex;justify-content:space-between;gap:20px;align-items:center; }
.contact-panel-head span { font:600 14px/1.1 "Unbounded",sans-serif; }
.contact-panel-head small { font-size:9px;color:#7b8580;text-transform:uppercase;letter-spacing:.1em; }
.manager-row { display:flex;justify-content:space-between;align-items:center;background:#fff;border:1px solid rgba(18,24,22,.1);border-radius:18px;padding:18px;margin-bottom:8px;transition:transform .2s ease,border-color .2s ease; }
.manager-row:hover { transform:translateY(-2px);border-color:rgba(18,24,22,.25); }
.manager-list { display:grid; gap:10px; }
.manager-row div { display:grid;gap:8px;min-width:0; }
.manager-row small,.contact-location small { font-size:9px;text-transform:uppercase;letter-spacing:.11em;color:#89928e; }
.manager-row b { font:600 20px/1 "Unbounded",sans-serif;letter-spacing:-.03em; }
.manager-row>span { flex:0 0 auto; width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:var(--green);font-weight:900; }
.manager-contact { align-items:flex-start; gap:16px; padding:20px; margin-bottom:0; }
.manager-contact p { margin:0; color:#6f7974; font-size:11px; line-height:1.55; max-width:390px; }
.manager-phone { white-space:nowrap; }
.contact-availability { display:grid; grid-template-columns:12px 1fr; gap:12px; align-items:start; margin:14px 4px 2px; padding:14px 14px 13px; border-radius:15px; background:rgba(185,242,75,.13); border:1px solid rgba(133,180,50,.2); }
.availability-dot { width:9px;height:9px;border-radius:50%;background:#7dae27;margin-top:3px;box-shadow:0 0 0 5px rgba(125,174,39,.10); }
.contact-availability div { display:grid; gap:4px; }
.contact-availability small { font-size:8px;text-transform:uppercase;letter-spacing:.12em;color:#75806f;font-weight:800; }
.contact-availability b { font-size:11px; line-height:1.45; font-weight:700; }
.contact-location { display:grid;grid-template-columns:38px 1fr;gap:12px;align-items:start;padding:18px 12px 10px; }
.pin-icon { width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#dde1dc;font-size:18px; }
.contact-location div { display:grid;gap:4px; }
.contact-location b { font-size:13px; }
.contact-location div span { color:#707975;font-size:11px; }
.replace-note { font-size:9px;color:#929a96;margin:12px 10px 4px; }

.footer { border-top:1px solid rgba(255,255,255,.08);padding:52px 0 26px; }
.footer-inner { display:grid;grid-template-columns:1fr 1.2fr auto;gap:40px;align-items:start; }
.footer-brand { color:#fff; }
.footer-inner>p { margin:4px 0 0;color:rgba(255,255,255,.4);font-size:12px;line-height:1.5;max-width:360px; }
.footer-links { display:flex;gap:22px;font-size:11px;color:rgba(255,255,255,.55); }
.footer-bottom { grid-column:1/-1;border-top:1px solid rgba(255,255,255,.08);padding-top:20px;margin-top:26px;display:flex;justify-content:space-between;color:rgba(255,255,255,.34);font-size:9px;text-transform:uppercase;letter-spacing:.08em; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 36px, 980px); }
  .nav { display:none; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-btn { display:block; }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-ticker { margin-top: 64px; }
  .hero-layout { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 830px; }
  .hero-visual { max-width: 720px; width:100%; justify-self:center; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .waste-grid { grid-template-columns: repeat(2,1fr); }
  .process-flow { grid-template-columns:1fr; gap:18px; }
  .flow-line { left:23px;right:auto;top:18px;bottom:18px;width:1px;height:auto; }
  .flow-step { display:grid;grid-template-columns:48px 1fr;gap:20px;align-items:start; }
  .flow-dot { margin:0; }
  .flow-card { min-height:unset; }
  .infra-grid { grid-template-columns:1fr 1fr;grid-template-areas:"main main" "kip tri" "log access"; }
  .infra-main { min-height:650px; }
  .contact-layout { gap:50px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 28px); --radius-xl:26px; }
  .section { padding:82px 0; }
  .site-header { padding:13px 0; }
  .header-cta { display:none; }
  .header-inner { grid-template-columns:1fr auto; }
  .brand-copy b { font-size:12px; }
  .hero { padding-top:125px; }
  .hero-ticker { margin-top: 52px; }
  .hero h1 { font-size:clamp(38px,11.5vw,56px); }
  .hero-lead { font-size:15px; }
  .trust-line { display:grid;grid-template-columns:repeat(2,1fr);gap:0; }
  .trust-item { min-width:0;margin:0;padding:0 10px;border-right:1px solid rgba(255,255,255,.1); }
  .trust-item:first-child { padding-left:0; }
  .trust-item b { font-size:13px; }
  .trust-item span { font-size:8px; }
  .visual-frame { transform:none; }
  .site-diagram { height:360px; }
  .visual-footer div { padding:13px 10px; }
  .visual-footer b { font-size:10px; }
  .intro-grid,.section-head,.process-head,.contact-layout { grid-template-columns:1fr;gap:30px; }
  .intro-heading h2,.section-head h2,.location-copy h2,.contact-copy h2 { font-size:clamp(35px,9.5vw,48px); }
  .metrics-grid,.waste-grid,.infra-grid { grid-template-columns:1fr; }
  .metric-card { min-height:260px; }
  .waste-featured { grid-column:auto; }
  .list-note { align-items:flex-start;flex-direction:column; }
  .infra-grid { grid-template-areas:"main" "kip" "tri" "log" "access"; }
  .infra-main { min-height:640px;padding:24px; }
  .cadaster-visual { left:18px;right:18px;bottom:18px;height:350px; }
  .location-card { grid-template-columns:1fr; }
  .location-copy { padding:32px 26px; }
  .route-map { min-height:340px; }
  .contact-panel-head { align-items:flex-start;flex-direction:column; }
  
  .footer-inner { grid-template-columns:1fr;gap:20px; }
  .footer-links { flex-wrap:wrap; }
  .footer-bottom { flex-direction:column;gap:8px; }
}

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

/* v4 conversion, audience and direct-contact layer */
.mobile-nav-cta { color: var(--green); font-weight: 800; }
.visual-footer { grid-template-columns: repeat(4,1fr); }
.visual-footer b { font-size: 10px; }
.trust-item { min-width: 132px; padding-right: 20px; margin-right: 20px; }

.audience-section { background: #e9ede6; }
.audience-head { margin-bottom: 42px; }
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.audience-card { min-height: 330px; border-radius: 28px; background: var(--paper); border: 1px solid var(--line); padding: 24px; position: relative; overflow: hidden; box-shadow: 0 18px 50px rgba(25,35,30,.035); transition: transform .25s ease, box-shadow .25s ease; }
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.audience-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -75px; bottom: -90px; border: 1px solid rgba(18,24,22,.08); box-shadow: 0 0 0 32px rgba(18,24,22,.025), 0 0 0 64px rgba(18,24,22,.018); }
.audience-accent { background: var(--green); }
.audience-index { font: 600 10px/1 "Unbounded",sans-serif; color: #8c9691; }
.audience-accent .audience-index { color: rgba(13,21,19,.55); }
.audience-card h3 { margin: 74px 0 13px; font: 600 19px/1.25 "Unbounded",sans-serif; letter-spacing: -.04em; max-width: 245px; }
.audience-card p { margin: 0; color: #66706b; font-size: 13px; line-height: 1.6; position: relative; z-index: 2; }
.audience-accent p { color: rgba(13,21,19,.7); }
.audience-mark { position: absolute; left: 24px; right: 24px; bottom: 22px; font-size: 8px; letter-spacing: .12em; color: #66706b; border-top: 1px solid var(--line); padding-top: 12px; }
.mini-scale { position:absolute; right:22px; top:22px; width:84px; height:44px; border:1px solid rgba(13,21,19,.25); border-radius:12px; display:flex; gap:6px; align-items:flex-end; padding:8px; }
.mini-scale i { flex:1; background:rgba(13,21,19,.55); border-radius:3px 3px 1px 1px; }
.mini-scale i:nth-child(1){height:35%}.mini-scale i:nth-child(2){height:80%}.mini-scale i:nth-child(3){height:55%}
.status-line { position:absolute; left:24px; bottom:22px; font-size:8px; letter-spacing:.12em; color:#66706b; display:flex; align-items:center; gap:8px; }
.status-line span { width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 0 5px rgba(185,242,75,.18); }
.route-mini { position:absolute;left:24px;right:24px;bottom:24px;height:34px; }
.route-mini::before { content:""; position:absolute;left:0;right:0;top:16px;border-top:1px dashed #8d9892; }
.route-mini i { position:absolute;top:10px;width:12px;height:12px;border-radius:50%;background:var(--paper);border:2px solid #8d9892; }
.route-mini i:nth-child(1){left:0}.route-mini i:nth-child(2){left:31%}.route-mini i:nth-child(3){left:65%}.route-mini i:nth-child(4){right:0;background:var(--green);border-color:var(--dark)}

.distance-number { margin-top: 28px; font: 500 clamp(74px, 8vw, 118px)/.82 "Unbounded",sans-serif; color: var(--green); letter-spacing: -.08em; }
.distance-number small { font-size: .24em; letter-spacing: -.03em; color: rgba(255,255,255,.55); }
.location-copy h2 { margin-top: 14px; }

.faq-section { background: var(--paper); }
.faq-layout { display:grid; grid-template-columns:.7fr 1.3fr; gap:90px; align-items:start; }
.faq-intro { position:sticky; top:120px; }
.faq-intro h2 { font:500 clamp(40px,4.3vw,60px)/1.02 "Unbounded",sans-serif; letter-spacing:-.055em; margin:22px 0 18px; }
.faq-intro p { color:#66706b; font-size:14px; line-height:1.65; max-width:430px; }
.btn-dark { background:var(--dark); color:#fff; margin-top:18px; }
.faq-list { border-top:1px solid var(--line); }
.faq-list details { border-bottom:1px solid var(--line); }
.faq-list summary { list-style:none; cursor:pointer; display:grid; grid-template-columns:1fr 34px; gap:20px; align-items:center; padding:25px 0; font:600 15px/1.35 "Unbounded",sans-serif; letter-spacing:-.025em; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary span { width:32px;height:32px;border-radius:50%;border:1px solid var(--line);display:grid;place-items:center;font:500 20px/1 Manrope,sans-serif;transition:transform .2s ease,background .2s ease; }
.faq-list details[open] summary span { transform:rotate(45deg); background:var(--green); }
.faq-list details p { margin:-6px 58px 26px 0; color:#65706b; font-size:14px; line-height:1.7; max-width:720px; }

.mobile-sticky-cta { display:none; }

@media (max-width: 1100px) {
  .trust-line { display:grid; grid-template-columns:repeat(4,1fr); }
  .trust-item { min-width:0; margin:0; padding:0 16px; }
  .trust-item:first-child { padding-left:0; }
  .audience-grid { grid-template-columns:repeat(2,1fr); }
  .faq-layout { gap:55px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 76px; }
  .hero { padding-top:112px; }
  .eyebrow { font-size:9px; line-height:1.5; align-items:flex-start; }
  .hero-layout { gap:44px; }
  .trust-line { grid-template-columns:repeat(2,1fr); row-gap:22px; }
  .trust-item { padding:0 12px 0 0; border-right:0; }
  .trust-item:nth-child(odd) { border-right:1px solid rgba(255,255,255,.1); }
  .trust-item:nth-child(even) { padding-left:14px; }
  .trust-item b { font-size:15px; }
  .trust-item span { font-size:8px; }
  .visual-footer { grid-template-columns:repeat(2,1fr); }
  .visual-footer div:nth-child(2) { border-right:0; }
  .visual-footer div:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.07); }
  .audience-grid { grid-template-columns:1fr; }
  .audience-card { min-height:280px; }
  .audience-card h3 { margin-top:56px; }
  .faq-layout { grid-template-columns:1fr; gap:28px; }
  .faq-intro { position:static; }
  .faq-list summary { font-size:13px; padding:22px 0; }
  .faq-list details p { margin-right:0; font-size:13px; }
  .contact-panel { padding:10px; }
  .manager-contact { padding:16px; }
  .manager-row b { font-size:17px; }
  .distance-number { font-size:84px; }
  .route-chip { right:14px;bottom:14px; }
  .mobile-sticky-cta { display:flex; position:fixed; left:14px; right:14px; bottom:max(12px,env(safe-area-inset-bottom)); z-index:95; height:56px; border-radius:18px; background:var(--green); color:var(--dark); align-items:center; justify-content:space-between; padding:0 20px; font-size:14px; font-weight:800; box-shadow:0 18px 45px rgba(0,0,0,.24); transition:opacity .2s ease, transform .2s ease; opacity:0; transform:translateY(12px); pointer-events:none; }
  .mobile-sticky-cta.is-ready:not(.is-hidden) { opacity:1; transform:translateY(0); pointer-events:auto; }
  .mobile-sticky-cta.is-hidden { opacity:0; transform:translateY(12px); pointer-events:none; }
}
