:root {
  --ink: #0b1220;
  --ink-2: #111b2c;
  --paper: #f5f5f0;
  --white: #ffffff;
  --muted: #667085;
  --line: #d9dbd5;
  --yellow: #ffc526;
  --yellow-2: #f0ad00;
  --green: #37d48b;
  --blue: #63a4ff;
  --radius: 22px;
  --shadow: 0 22px 70px rgba(4, 10, 21, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; padding: 12px 16px; background: var(--yellow); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 82px;
  background: rgba(11, 18, 32, .9);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { background: rgba(11,18,32,.97); box-shadow: 0 10px 40px rgba(0,0,0,.18); }
.nav-shell { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: white; flex: none; }
.brand img { width: 42px; height: 42px; object-fit: contain; object-position: top; }
.brand-word { font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: .04em; font-size: 18px; }
.brand-word span { color: var(--yellow); }
.main-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.main-nav a { position: relative; color: #d2d8e1; font-size: 13px; font-weight: 600; white-space: nowrap; transition: color .2s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: white; }
.main-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; background: var(--yellow); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.platform-link { color: #cbd1dc; font-size: 12px; font-weight: 700; white-space: nowrap; }
.platform-link:hover { color: var(--yellow); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; }
.nav-toggle > span:not(.sr-only) { display: block; width: 22px; height: 2px; background: white; margin: 5px 0; transition: transform .2s ease; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 23px;
  border: 1px solid var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: #ffd24d; border-color: #ffd24d; }
.button-small { min-height: 40px; padding: 9px 16px; font-size: 12px; }
.button-dark { background: var(--ink); border-color: var(--ink); color: white; }
.button-dark:hover { background: #1d2a40; border-color: #1d2a40; }
.button-outline { background: transparent; color: white; border-color: rgba(255,255,255,.35); }
.button-outline:hover { background: white; border-color: white; color: var(--ink); }
.text-link, .arrow-link { display: inline-flex; align-items: center; gap: 16px; font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 800; }
.arrow-link { padding-bottom: 8px; border-bottom: 1px solid currentColor; }
.arrow-link span { transition: transform .2s ease; }
.arrow-link:hover span { transform: translateX(5px); }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 10px; color: #c9d1dd; font-family: "Manrope", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.eyebrow span { width: 25px; height: 2px; background: var(--yellow); }
.eyebrow.dark { color: #687080; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  background: var(--ink);
  color: white;
}
.hero::after { content: ""; position: absolute; right: -10%; top: -36%; width: 650px; height: 650px; border: 1px solid rgba(255,197,38,.22); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,197,38,.025), 0 0 0 180px rgba(255,197,38,.018); }
.hero-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .86fr) minmax(540px, 1.14fr); align-items: center; gap: 48px; padding: 104px 0 74px; }
.hero h1 { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(50px, 5.2vw, 78px); line-height: 1.06; letter-spacing: -.055em; font-weight: 800; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-lead { max-width: 630px; margin: 28px 0; color: #b8c0ce; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin: 32px 0 48px; }
.hero .text-link { color: white; }
.trust-row { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.14); padding-top: 25px; }
.trust-row div { padding-right: 28px; margin-right: 28px; border-right: 1px solid rgba(255,255,255,.13); }
.trust-row div:last-child { border: 0; }
.trust-row strong { display: block; color: var(--yellow); font: 800 12px/1 "Manrope", sans-serif; letter-spacing: .08em; }
.trust-row span { display: block; margin-top: 8px; color: #95a0b2; font-size: 11px; white-space: nowrap; }

.fleet-console { position: relative; min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.17); background: #101a29; box-shadow: 0 38px 100px rgba(0,0,0,.38); }
.fleet-console::before { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 1px rgba(255,255,255,.06); }
.console-head { height: 56px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #263244; color: #e8edf4; font-size: 12px; }
.console-head > div { display: flex; align-items: center; gap: 10px; }
.console-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(255,197,38,.12); }
.live-pill { padding: 4px 8px; border: 1px solid rgba(55,212,139,.38); color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.console-body { display: grid; grid-template-columns: 205px 1fr; min-height: 400px; }
.vehicle-list { padding: 16px 12px; border-right: 1px solid #263244; }
.vehicle-list > p { display: flex; justify-content: space-between; margin: 0 5px 12px; color: #6f7c90; font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.vehicle-list > p strong { color: var(--green); }
.vehicle { display: grid; grid-template-columns: 30px 1fr 7px; align-items: center; width: 100%; padding: 12px 8px; border: 0; border-bottom: 1px solid #202c3d; background: transparent; text-align: left; cursor: pointer; }
.vehicle.active { background: #17263a; }
.vehicle-mark { display: grid; place-items: center; width: 24px; height: 24px; color: var(--ink); background: var(--yellow); border-radius: 4px; font-size: 8px; font-weight: 800; }
.vehicle strong, .vehicle small { display: block; }
.vehicle strong { color: #f1f4f7; font-size: 10px; }
.vehicle small { margin-top: 3px; color: #768399; font-size: 8px; }
.vehicle > i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.fuel-card { margin: 18px 4px 0; padding: 13px; background: #0b1421; }
.fuel-card span, .fuel-card strong { display: block; }
.fuel-card span { color: #7e8998; font-size: 8px; }
.fuel-card strong { margin: 5px 0 9px; font: 700 20px/1 "Manrope", sans-serif; }
.fuel-card div { height: 4px; background: #283346; }
.fuel-card i { display: block; width: 74%; height: 100%; background: var(--yellow); }
.map-panel { position: relative; overflow: hidden; min-height: 400px; background-color: #0d1724; background-image: linear-gradient(30deg, rgba(255,255,255,.035) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.035) 87.5%), linear-gradient(150deg, rgba(255,255,255,.035) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.035) 87.5%); background-size: 76px 132px; }
.map-label { position: absolute; top: 18px; left: 20px; z-index: 2; color: #8793a5; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.map-label span { margin-left: 9px; color: #536074; }
.map-road { position: absolute; height: 5px; background: #202c3c; border: 1px solid #263548; transform-origin: left center; }
.road-a { width: 150%; left: -10%; top: 47%; transform: rotate(-17deg); }
.road-b { width: 130%; left: 8%; top: 16%; transform: rotate(52deg); }
.road-c { width: 120%; left: -8%; top: 76%; transform: rotate(18deg); }
.route-line { position: absolute; z-index: 1; height: 3px; background: var(--yellow); box-shadow: 0 0 12px rgba(255,197,38,.48); transform-origin: left; }
.route-one { width: 50%; top: 56%; left: 12%; transform: rotate(-23deg); }
.route-two { width: 43%; top: 38%; left: 52%; transform: rotate(47deg); }
.map-pin { position: absolute; z-index: 3; display: grid; place-items: center; width: 30px; height: 30px; border: 3px solid var(--ink); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--yellow); color: var(--ink); font-size: 8px; font-weight: 800; box-shadow: 0 8px 20px rgba(0,0,0,.4); }
.map-pin::first-letter { transform: rotate(45deg); }
.pin-a { top: 38%; left: 44%; }.pin-b { top: 66%; left: 25%; background: var(--blue); }.pin-c { top: 29%; right: 18%; background: var(--green); }
.trip-card { position: absolute; right: 16px; bottom: 16px; z-index: 3; width: 146px; padding: 13px 15px; border: 1px solid #2a374b; background: rgba(13,23,36,.94); }
.trip-card small, .trip-card strong, .trip-card span { display: block; }
.trip-card small { color: #6e7c90; font-size: 7px; letter-spacing: .13em; }
.trip-card strong { margin: 4px 0; font: 800 22px/1 "Manrope", sans-serif; }
.trip-card span { color: #7e8a9d; font-size: 8px; }
.proof-strip { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; min-height: 85px; border-top: 1px solid rgba(255,255,255,.12); color: #778397; }
.proof-strip span { font-size: 9px; letter-spacing: .16em; }
.proof-strip strong { color: #a4adbb; font: 600 13px/1 "Manrope", sans-serif; }

.section { padding: 112px 0; }
.section-heading { margin-bottom: 52px; }
.section-heading h2, .telemetry-copy h2, .industrial-copy h2, .about-copy h2, .cta-layout h2, .page-hero h1 { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(40px, 4.8vw, 66px); line-height: 1.07; letter-spacing: -.045em; }
.section-heading > p:not(.eyebrow), .heading-note { max-width: 590px; margin: 22px 0 0; color: var(--muted); }
.split-heading { display: grid; grid-template-columns: 1fr 420px; align-items: end; gap: 50px; }
.split-heading > p { margin: 0 0 6px !important; font-size: 17px; }
.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pillar-card { position: relative; min-height: 670px; overflow: hidden; padding: 40px; border: 1px solid var(--line); background: #ebece7; }
.pillar-gps { color: white; background: var(--ink-2); border-color: var(--ink-2); }
.pillar-number { position: absolute; right: 28px; top: 22px; color: rgba(255,255,255,.16); font: 800 60px/1 "Manrope", sans-serif; }
.pillar-electric .pillar-number { color: rgba(11,18,32,.1); }
.pillar-content { position: absolute; left: 40px; right: 40px; bottom: 40px; z-index: 2; }
.pillar-content h3 { margin: 10px 0 17px; font: 800 clamp(30px, 3vw, 44px)/1.08 "Manrope", sans-serif; letter-spacing: -.04em; }
.pillar-content > p:not(.card-kicker) { max-width: 540px; color: #aeb8c6; }
.pillar-electric .pillar-content > p { color: #667085; }
.card-kicker { margin: 0; color: var(--yellow); font: 800 10px/1 "Manrope", sans-serif; letter-spacing: .14em; }
.check-list { list-style: none; padding: 0; margin: 24px 0 28px; }
.check-list li { position: relative; padding: 7px 0 7px 25px; font-size: 14px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 14px; width: 10px; height: 5px; border-left: 2px solid var(--yellow-2); border-bottom: 2px solid var(--yellow-2); transform: rotate(-45deg); }
.signal-visual { position: absolute; left: 50%; top: 11%; width: 310px; height: 250px; transform: translateX(-50%); }
.signal-visual i { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,197,38,.32); border-radius: 50%; transform: translate(-50%,-50%); }
.signal-visual i:nth-child(1) { width: 90px; height: 90px; }.signal-visual i:nth-child(2) { width: 170px; height: 170px; }.signal-visual i:nth-child(3) { width: 250px; height: 250px; }
.signal-visual b { position: absolute; left: 50%; top: 50%; width: 28px; height: 28px; border-radius: 50% 50% 50% 0; background: var(--yellow); transform: translate(-50%,-62%) rotate(-45deg); box-shadow: 0 0 40px rgba(255,197,38,.6); }
.circuit-visual { position: absolute; left: 12%; right: 12%; top: 6%; height: 250px; background-image: linear-gradient(rgba(11,18,32,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(11,18,32,.06) 1px, transparent 1px); background-size: 34px 34px; }
.circuit-visual span { position: absolute; height: 2px; background: var(--yellow-2); transform-origin: left; }
.circuit-visual span:nth-child(1) { width: 60%; left: 9%; top: 33%; }.circuit-visual span:nth-child(2) { width: 45%; left: 35%; top: 66%; transform: rotate(-34deg); }.circuit-visual span:nth-child(3) { width: 30%; left: 15%; top: 71%; transform: rotate(35deg); }
.circuit-visual b { position: absolute; width: 20px; height: 20px; border: 5px solid var(--paper); border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 1px var(--yellow-2); }
.circuit-visual b:nth-of-type(1) { left: 7%; top: calc(33% - 10px); }.circuit-visual b:nth-of-type(2) { right: 13%; top: calc(66% - 10px); }

.section-dark { position: relative; overflow: hidden; background: var(--ink); color: white; }
.section-dark::before { content: ""; position: absolute; inset: 0; opacity: .1; pointer-events: none; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 30px 30px; }
.section-dark > .shell { position: relative; z-index: 1; }
.telemetry-layout { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.telemetry-copy > p:not(.eyebrow) { max-width: 490px; margin: 25px 0 32px; color: #aeb8c6; font-size: 17px; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #2b3546; border-left: 1px solid #2b3546; }
.metric-grid article { min-height: 210px; padding: 28px; border-right: 1px solid #2b3546; border-bottom: 1px solid #2b3546; background: rgba(255,255,255,.02); }
.metric-icon { float: right; color: var(--yellow); font-size: 26px; }
.metric-grid small, .metric-grid strong, .metric-grid p { display: block; }
.metric-grid small { color: #8995a7; font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.metric-grid strong { margin-top: 36px; font: 800 36px/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.metric-grid article p { margin: 10px 0 0; color: #8692a4; font-size: 12px; }
.metric-note { grid-column: 1 / -1; margin: 12px 0 0; color: #677487; font-size: 10px; }

.packages-section { background: #f9f9f6; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }
.package-card { position: relative; padding: 34px; border: 1px solid var(--line); background: var(--white); }
.package-card.featured { margin-top: -12px; margin-bottom: -12px; padding-top: 46px; border: 2px solid var(--yellow-2); box-shadow: var(--shadow); }
.package-badge { position: absolute; left: -2px; right: -2px; top: -25px; height: 25px; display: grid; place-items: center; background: var(--yellow); color: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.package-top { display: flex; justify-content: space-between; align-items: start; color: #858c98; font-size: 10px; letter-spacing: .14em; }
.package-top b { color: #e1e3df; font: 800 38px/1 "Manrope", sans-serif; }
.package-card h3 { margin: 25px 0 7px; font: 800 28px/1.2 "Manrope", sans-serif; }
.package-price { color: var(--yellow-2); font-weight: 800; }
.package-card > p:not(.package-price) { min-height: 54px; color: var(--muted); font-size: 14px; }
.package-card .check-list { min-height: 180px; border-top: 1px solid #e6e7e3; padding-top: 18px; }
.package-card .button { width: 100%; }

.industrial-showcase { background: #e5e6e0; }
.industrial-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.industrial-panel { padding: 22px; border: 8px solid #1b2534; background: #2e3949; box-shadow: 0 32px 60px rgba(11,18,32,.22); }
.panel-header, .panel-status { display: flex; align-items: center; justify-content: space-between; color: #d5dbe3; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.panel-header { padding: 4px 5px 20px; }
.panel-cells { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding: 18px; border: 1px solid #4a5668; background: #202a38; }
.panel-cells i { position: relative; aspect-ratio: 1 / 1.2; border: 1px solid #536073; background: linear-gradient(#374355 0 28%, #182230 28% 100%); }
.panel-cells i::before { content: ""; position: absolute; top: 11%; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--green); transform: translateX(-50%); box-shadow: 0 25px 0 #657085; }
.panel-status { margin-top: 15px; padding: 12px 14px; background: #18222f; }
.panel-status span { display: flex; align-items: center; gap: 8px; }
.panel-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.panel-status strong { font-size: 18px; }
.industrial-copy > p:not(.eyebrow) { max-width: 550px; margin: 24px 0; color: var(--muted); font-size: 17px; }
.service-lines { margin: 30px 0; border-top: 1px solid #c5c8c2; }
.service-lines a, .service-lines > div { display: grid; grid-template-columns: 40px 1fr 20px; gap: 15px; align-items: center; padding: 17px 0; border-bottom: 1px solid #c5c8c2; }
.service-lines span { color: #919790; font-size: 10px; }
.service-lines strong { font: 700 16px/1.3 "Manrope", sans-serif; }
.service-lines i { font-style: normal; transition: transform .2s ease; }
.service-lines a:hover i { transform: translateX(5px); }

.projects-section { background: #f3f3ef; }
.project-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.project-card { grid-column: span 2; display: flex; flex-direction: column; min-height: 310px; padding: 30px; border: 1px solid var(--line); background: white; }
.project-card-featured { grid-column: span 3; min-height: 440px; padding: 36px; background: var(--ink); color: white; border-color: var(--ink); }
.project-current { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.project-topline { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(108,116,128,.28); }
.project-card-featured .project-topline { border-color: rgba(255,255,255,.16); }
.project-current .project-topline { border-color: rgba(11,18,32,.24); }
.project-topline span { font: 800 12px/1 "Manrope", sans-serif; letter-spacing: .1em; }
.project-topline small { color: #8a929d; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-align: right; }
.project-card-featured .project-topline small { color: #9ba7b8; }
.project-current .project-topline small { color: #5b5134; }
.project-card h3 { margin: 34px 0 14px; font: 800 26px/1.16 "Manrope", sans-serif; letter-spacing: -.035em; }
.project-card-featured h3 { margin-top: 38px; font-size: clamp(30px,3vw,43px); }
.project-card p { margin: auto 0 0; color: var(--muted); font-size: 14px; }
.project-card-featured p { color: #aeb8c6; }
.project-current p { color: #4f4835; }
.project-size { margin: 48px 0 0 !important; color: var(--ink) !important; font: 800 clamp(58px,7vw,92px)/.9 "Manrope", sans-serif !important; letter-spacing: -.075em; }
.project-size em { font-size: .3em; font-style: normal; letter-spacing: 0; }
.project-current h3 { margin-top: 24px; }
.project-sites { list-style: none; padding: 0; margin: 24px 0; border-top: 1px solid rgba(255,255,255,.15); }
.project-sites li { display: flex; justify-content: space-between; gap: 24px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.project-sites strong { font-size: 13px; }.project-sites span { color: #8f9bad; font-size: 11px; white-space: nowrap; }
.project-disclaimer { max-width: 850px; margin: 22px 0 0; color: #828995; font-size: 10px; }

.process-section { background: white; }
.process-grid { list-style: none; display: grid; grid-template-columns: repeat(4,1fr); padding: 0; margin: 60px 0 0; border-top: 1px solid var(--line); }
.process-grid li { position: relative; padding: 38px 26px 0 0; border-right: 1px solid var(--line); }
.process-grid li:not(:first-child) { padding-left: 26px; }
.process-grid li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; background: var(--yellow); border-radius: 50%; }
.process-grid li:not(:first-child)::before { left: 26px; }
.process-grid span { color: #979da6; font-size: 10px; font-weight: 800; }
.process-grid h3 { margin: 16px 0 10px; font: 800 22px/1.2 "Manrope", sans-serif; }
.process-grid p { color: var(--muted); font-size: 14px; }
.about-section { background: var(--yellow); }
.about-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.about-mark { min-height: 370px; display: flex; flex-direction: column; justify-content: space-between; padding: 32px; border: 1px solid rgba(11,18,32,.35); }
.about-mark span { font: 800 clamp(100px,15vw,210px)/.8 "Manrope", sans-serif; letter-spacing: -.1em; }
.about-mark small { font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.about-copy > p:not(.eyebrow) { max-width: 640px; font-size: 19px; }
.about-values { display: flex; gap: 30px; margin-top: 35px; padding-top: 24px; border-top: 1px solid rgba(11,18,32,.3); }
.about-values span { font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.cta-section { padding: 90px 0; background: var(--ink); color: white; }
.cta-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; }
.cta-layout > div:last-child { border-left: 1px solid #303b4b; padding-left: 60px; }
.cta-layout > div:last-child p { max-width: 450px; margin: 0 0 26px; color: #aab3c0; }

.site-footer { padding: 72px 0 24px; background: #080d16; color: #aab2bf; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 55px; }
.brand-footer { margin-bottom: 20px; }
.footer-intro > p { max-width: 310px; color: #7f8998; }
.status-line { display: flex; align-items: center; gap: 9px; margin-top: 26px; font-size: 11px; }
.status-line span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.footer-grid h2 { margin: 5px 0 22px; color: white; font: 700 12px/1 "Manrope", sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(.footer-intro) > a { display: block; margin: 10px 0; font-size: 13px; }
.footer-grid a:hover { color: var(--yellow); }
.footer-contact > a:first-of-type { color: white; font: 700 17px/1.4 "Manrope", sans-serif; }
.footer-contact p { font-size: 13px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 56px; padding-top: 22px; border-top: 1px solid #202838; font-size: 10px; }
.footer-bottom div { display: flex; gap: 25px; }
.floating-contact { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 8px; padding: 12px 17px; border-radius: 30px; background: #1fbd68; color: white; box-shadow: 0 12px 32px rgba(0,0,0,.2); font-size: 12px; font-weight: 800; }
.floating-contact span { animation: pulse 1.8s infinite; }

.page-hero { position: relative; overflow: hidden; padding: 105px 0 90px; background: var(--ink); color: white; }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 72px 72px; }
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; }
.page-hero h1 em { color: var(--yellow); font-style: normal; }
.page-hero p.page-lead { max-width: 720px; margin: 27px 0 0; color: #b4bdca; font-size: 19px; }
.breadcrumb { margin-bottom: 35px; color: #8f9bad; font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.breadcrumb a { color: white; }
.content-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.sticky-intro { align-self: start; position: sticky; top: 120px; }
.sticky-intro h2 { margin: 0 0 20px; font: 800 clamp(35px,4vw,55px)/1.05 "Manrope",sans-serif; letter-spacing: -.04em; }
.sticky-intro p { color: var(--muted); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature-card { min-height: 230px; padding: 26px; border: 1px solid var(--line); background: white; }
.feature-card > span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 28px; background: var(--yellow); font-weight: 800; }
.feature-card h3 { margin: 0 0 9px; font: 800 18px/1.2 "Manrope",sans-serif; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 0; border: 0; background: transparent; text-align: left; font: 700 16px/1.35 "Manrope", sans-serif; cursor: pointer; }
.faq-item button span { font-size: 24px; font-weight: 400; }
.faq-answer { display: none; max-width: 800px; padding: 0 45px 22px 0; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open button span { transform: rotate(45deg); }
.quote-builder { display: grid; grid-template-columns: repeat(3,1fr) auto; gap: 12px; padding: 24px; border: 1px solid #2e394b; background: #111b2b; }
.quote-builder label { color: #8490a3; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.quote-builder select, .quote-builder input { width: 100%; height: 48px; margin-top: 7px; padding: 0 12px; border: 1px solid #354157; background: #0b1422; color: white; border-radius: 0; }
.quote-builder .button { align-self: end; }
.quote-status { grid-column: 1 / -1; min-height: 18px; margin: 0; color: #93a0b3; font-size: 11px; }
.quote-builder .button:disabled { cursor: wait; opacity: .75; transform: none; }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-card { padding: 36px; background: var(--ink); color: white; }
.contact-card h2 { margin: 0 0 18px; font: 800 32px/1.15 "Manrope", sans-serif; }
.contact-card > p { color: #aab4c3; }
.contact-detail { display: block; padding: 17px 0; border-top: 1px solid #2a3547; }
.contact-detail small, .contact-detail strong { display: block; }
.contact-detail small { color: #768397; font-size: 9px; letter-spacing: .13em; }
.contact-detail strong { margin-top: 5px; font-size: 15px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .full { grid-column: 1/-1; }
.field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 13px; border: 1px solid #cfd2cc; background: white; border-radius: 0; outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--yellow-2); box-shadow: 0 0 0 3px rgba(255,197,38,.18); }
.form-note { grid-column: 1/-1; margin: 0; color: var(--muted); font-size: 11px; }
.solution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.solution-card { display: flex; flex-direction: column; min-height: 360px; padding: 30px; border: 1px solid var(--line); background: white; }
.solution-card .tag { align-self: start; padding: 5px 8px; background: #eef0eb; color: #6d7480; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.solution-card h2 { margin: 30px 0 12px; font: 800 24px/1.18 "Manrope",sans-serif; }
.solution-card p { color: var(--muted); font-size: 14px; }
.solution-card .arrow-link { margin-top: auto; align-self: start; }
.product-grid-new { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.product-card-new { overflow: hidden; border: 1px solid var(--line); background: white; }
.product-card-new img { width: 100%; height: 240px; object-fit: cover; background: #eceee9; }
.product-card-new .product-info { padding: 24px; }
.product-card-new small { color: #818996; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.product-card-new h2 { min-height: 50px; margin: 10px 0; font: 800 19px/1.3 "Manrope",sans-serif; }
.product-card-new .price { color: var(--yellow-2); font-weight: 800; }
.search-bar { display: grid; grid-template-columns: 1fr auto; max-width: 620px; margin: 0 0 38px; }
.search-bar input { min-height: 52px; padding: 12px 16px; border: 1px solid #cbd0c9; background: white; }
.empty-state { padding: 60px; border: 1px dashed #bfc4bd; text-align: center; }

.blog-preview-section { background: #f9f9f6; }
.blog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 42px; }
.blog-toolbar .search-bar { flex: 1; margin: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list a { padding: 7px 11px; border: 1px solid #cfd2cc; color: #687080; background: rgba(255,255,255,.55); font-size: 10px; font-weight: 800; letter-spacing: .06em; }
.tag-list a:hover { border-color: var(--yellow-2); color: var(--ink); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-grid.compact .blog-card { min-height: 320px; }
.blog-card { display: flex; flex-direction: column; min-width: 0; border: 1px solid var(--line); background: white; }
.blog-card-media { display: block; overflow: hidden; aspect-ratio: 16/10; background: var(--ink); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.035); }
.blog-placeholder { position: relative; display: flex; height: 100%; align-items: flex-end; justify-content: space-between; padding: 24px; overflow: hidden; color: white; background-image: linear-gradient(135deg, transparent 45%, rgba(255,197,38,.12) 45% 46%, transparent 46%), linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: auto, 40px 40px, 40px 40px; }
.blog-placeholder::before { content: ""; position: absolute; right: -35px; top: -35px; width: 140px; height: 140px; border: 1px solid rgba(255,197,38,.45); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,197,38,.04); }
.blog-placeholder i { color: var(--yellow); font: 800 58px/1 "Manrope",sans-serif; font-style: normal; letter-spacing: -.08em; }
.blog-placeholder small { font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.blog-card-body { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: #89909a; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.blog-meta span:first-child { color: var(--yellow-2); }
.blog-card h2 { margin: 18px 0 11px; font: 800 22px/1.24 "Manrope",sans-serif; letter-spacing: -.025em; }
.blog-card h2 a:hover { color: #9a7000; }
.blog-card p { margin: 0 0 25px; color: var(--muted); font-size: 14px; }
.blog-card .arrow-link { align-self: flex-start; margin-top: auto; }
.pagination-new { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--line); color: #737b87; font-size: 12px; }
.pagination-new a:last-child { text-align: right; }
.pagination-new a:hover { color: var(--yellow-2); }
.blog-empty { min-height: 430px; display: flex; align-items: center; flex-direction: column; justify-content: center; padding: 50px; border: 1px solid var(--line); text-align: center; background-color: white; background-image: radial-gradient(circle at 1px 1px, rgba(11,18,32,.08) 1px, transparent 0); background-size: 32px 32px; }
.blog-empty > span { color: var(--yellow-2); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.blog-empty h2 { max-width: 700px; margin: 22px 0 12px; font: 800 clamp(32px,4.5vw,54px)/1.08 "Manrope",sans-serif; letter-spacing: -.04em; }
.blog-empty p { max-width: 610px; margin: 0 0 26px; color: var(--muted); }
.editorial-topics { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.editorial-topics article { min-height: 260px; padding: 34px 28px 20px 0; border-right: 1px solid var(--line); }
.editorial-topics article:not(:first-child) { padding-left: 28px; }
.editorial-topics span { color: var(--yellow-2); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.editorial-topics h3 { margin: 24px 0 14px; font: 800 23px/1.25 "Manrope",sans-serif; letter-spacing: -.025em; }
.editorial-topics p { color: var(--muted); font-size: 14px; }

.article-hero { padding: 100px 0 0; background: var(--ink); color: white; }
.article-head { max-width: 980px; }
.article-head h1 { max-width: 920px; margin: 24px 0; font: 800 clamp(42px,6vw,76px)/1.04 "Manrope",sans-serif; letter-spacing: -.052em; }
.article-head > p { max-width: 730px; margin: 0; padding-bottom: 70px; color: #b5becc; font-size: 19px; }
.article-cover { overflow: hidden; max-height: 650px; transform: translateY(56px); box-shadow: 0 25px 65px rgba(0,0,0,.28); }
.article-cover img { width: 100%; max-height: 650px; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 230px minmax(0,760px); justify-content: center; gap: 80px; padding-top: 125px; padding-bottom: 110px; }
.article-aside { align-self: start; position: sticky; top: 120px; }
.article-aside > span { color: #9299a3; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.article-aside > p { margin: 10px 0 20px; font: 700 15px/1.4 "Manrope",sans-serif; }
.article-aside .tag-list { margin-bottom: 25px; }
.article-aside .button { width: 100%; }
.article-body { color: #293241; font-size: 18px; line-height: 1.85; }
.article-body > *:first-child { margin-top: 0; }
.article-body h2, .article-body h3, .article-body h4 { color: var(--ink); font-family: "Manrope",sans-serif; line-height: 1.2; letter-spacing: -.025em; }
.article-body h2 { margin: 58px 0 20px; font-size: 34px; }.article-body h3 { margin: 40px 0 16px; font-size: 25px; }
.article-body p { margin: 0 0 24px; }
.article-body ul, .article-body ol { margin: 0 0 28px; padding-left: 24px; }
.article-body li { margin: 8px 0; }
.article-body img { width: 100%; height: auto !important; margin: 34px 0; }
.article-body blockquote { margin: 38px 0; padding: 24px 28px; border-left: 4px solid var(--yellow); background: white; font: 700 20px/1.55 "Manrope",sans-serif; }
.article-body a { color: #8c6600; text-decoration: underline; text-underline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .1s; }.reveal-delay-2 { transition-delay: .2s; }.reveal-delay-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } * { animation: none !important; } }
@keyframes pulse { 50% { opacity: .45; } }

@media (max-width: 1120px) {
  .main-nav { gap: 16px; }.main-nav a { font-size: 12px; }.platform-link { display: none; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 80px; }.hero-copy { max-width: 800px; }.fleet-console { max-width: 820px; }
  .proof-strip { overflow-x: auto; gap: 35px; justify-content: flex-start; }.proof-strip > * { white-space: nowrap; }
  .telemetry-layout, .industrial-layout { gap: 55px; }.footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }.footer-contact { grid-column: 2/4; }
}

@media (max-width: 860px) {
  .shell { width: min(100% - 32px, 720px); }
  .site-header { height: 72px; }.nav-shell { justify-content: space-between; }
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav { position: fixed; inset: 72px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; background: var(--ink); border-top: 1px solid #273244; }
  .main-nav.open { display: flex; }.main-nav a { padding: 16px 8px; border-bottom: 1px solid #253044; font-size: 15px; }.main-nav a[aria-current="page"]::after { display: none; }
  .nav-actions .button { display: none; }
  .section { padding: 82px 0; }.hero-layout { padding: 70px 0 50px; }.hero h1 { font-size: clamp(44px,10vw,68px); }
  .split-heading, .telemetry-layout, .industrial-layout, .about-layout, .cta-layout, .content-grid, .contact-layout { grid-template-columns: 1fr; gap: 45px; }
  .pillar-grid, .package-grid { grid-template-columns: 1fr; }.pillar-card { min-height: 620px; }.package-card.featured { margin: 18px 0; }
  .project-card, .project-card-featured { grid-column: span 3; }
  .process-grid { grid-template-columns: 1fr 1fr; }.process-grid li { border-bottom: 1px solid var(--line); min-height: 210px; }.process-grid li:nth-child(3) { padding-left: 0; }.process-grid li:nth-child(3)::before { left: 0; }
  .cta-layout > div:last-child { padding: 35px 0 0; border-left: 0; border-top: 1px solid #303b4b; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }.footer-intro { grid-column: 1/-1; }.footer-contact { grid-column: auto; }
  .sticky-intro { position: static; }.solution-grid, .product-grid-new { grid-template-columns: 1fr 1fr; }.quote-builder { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }.blog-toolbar { align-items: stretch; flex-direction: column; }.article-layout { grid-template-columns: 1fr; gap: 40px; }.article-aside { position: static; }.editorial-topics { grid-template-columns: 1fr; }.editorial-topics article, .editorial-topics article:not(:first-child) { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 600px) {
  .shell { width: calc(100% - 28px); }.brand-word { font-size: 16px; }
  .hero h1 { font-size: 41px; }.hero-lead { font-size: 16px; }.hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }.hero-actions .text-link { justify-content: center; }
  .trust-row { display: grid; grid-template-columns: repeat(3,1fr); }.trust-row div { padding: 0 10px; margin: 0; text-align: center; }.trust-row span { font-size: 9px; white-space: normal; }
  .console-body { grid-template-columns: 1fr; }.vehicle-list { display: none; }.map-panel { min-height: 360px; }.proof-strip { min-height: 70px; }
  .section { padding: 68px 0; }.section-heading h2, .telemetry-copy h2, .industrial-copy h2, .about-copy h2, .cta-layout h2, .page-hero h1 { font-size: 38px; }.split-heading { gap: 24px; }
  .pillar-card { min-height: 610px; padding: 28px; }.pillar-content { left: 28px; right: 28px; bottom: 28px; }.pillar-content h3 { font-size: 31px; }.signal-visual { transform: translateX(-50%) scale(.8); }
  .metric-grid { grid-template-columns: 1fr; }.metric-note { grid-column: 1; }.metric-grid article { min-height: 175px; }.package-card { padding: 27px; }
  .panel-cells { grid-template-columns: repeat(2,1fr); }.panel-cells i:nth-child(n+7) { display: none; }
  .process-grid { grid-template-columns: 1fr; }.process-grid li, .process-grid li:not(:first-child), .process-grid li:nth-child(3) { min-height: 0; padding: 30px 0; border-right: 0; }.process-grid li:not(:first-child)::before { left: 0; }
  .about-mark { min-height: 270px; }.about-values { flex-wrap: wrap; gap: 15px; }.footer-grid { grid-template-columns: 1fr 1fr; }.footer-intro, .footer-contact { grid-column: 1/-1; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 15px; }.footer-bottom div { flex-wrap: wrap; gap: 15px; }
  .feature-list, .solution-grid, .product-grid-new, .quote-builder, .contact-form, .blog-grid { grid-template-columns: 1fr; }.contact-form .full, .form-note { grid-column: 1; }.quote-builder .button { width: 100%; }.page-hero { padding: 75px 0 65px; }
  .project-grid { grid-template-columns: 1fr; }.project-card, .project-card-featured { grid-column: 1; min-height: 0; padding: 26px; }.project-card-featured { min-height: 410px; }.project-size { margin-top: 38px !important; }
  .blog-toolbar .search-bar { grid-template-columns: 1fr; }.pagination-new { grid-template-columns: 1fr; text-align: center; }.pagination-new a:last-child { text-align: center; }.article-hero { padding-top: 70px; }.article-head h1 { font-size: 39px; }.article-head > p { padding-bottom: 45px; font-size: 16px; }.article-cover { transform: translateY(30px); }.article-layout { padding-top: 80px; padding-bottom: 70px; }.article-body { font-size: 16px; }.article-body h2 { font-size: 29px; }.blog-empty { min-height: 360px; padding: 32px 20px; }
  .floating-contact { right: 14px; bottom: 14px; }
}
