:root {
  --bg: #020b10;
  --bg-soft: #06151d;
  --panel: rgba(7, 25, 34, 0.82);
  --panel-strong: #071a23;
  --line: rgba(114, 195, 216, 0.18);
  --line-strong: rgba(57, 225, 238, 0.35);
  --text: #effcff;
  --muted: #93acb4;
  --cyan: #1ee7f2;
  --cyan-soft: #8af7ff;
  --green: #8cf347;
  --lime: #bcff58;
  --violet: #886cff;
  --orange: #ff9f43;
  --red: #ff6675;
  --blue: #4da8ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 18px;
  --max: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 54% 8%, rgba(0, 173, 214, 0.11), transparent 28rem),
    radial-gradient(circle at 10% 45%, rgba(92, 255, 135, 0.045), transparent 26rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

code {
  color: #b9dbe2;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .82rem;
  overflow-wrap: anywhere;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: #001015;
  border-radius: 8px;
  background: var(--cyan);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section-block {
  padding-block: 104px;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .11;
  pointer-events: none;
}

.ambient-one {
  top: 9%;
  right: -260px;
  background: var(--cyan);
}

.ambient-two {
  top: 62%;
  left: -300px;
  background: var(--green);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 80px;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(2, 11, 16, 0.68);
  backdrop-filter: blur(18px);
  transition: min-height .25s ease, border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--line);
  background: rgba(2, 11, 16, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--cyan-soft);
  border: 1px solid var(--line-strong);
  border-radius: 12px 5px 12px 5px;
  background: linear-gradient(145deg, rgba(30, 231, 242, .16), rgba(140, 243, 71, .05));
  box-shadow: inset 0 0 24px rgba(30, 231, 242, .08), 0 0 20px rgba(30, 231, 242, .08);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.08em;
  overflow: hidden;
}

.brand-mark::after {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--green);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.brand-mark img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 0 8px rgba(30, 231, 242, .34));
  transform: scale(1.5) translateY(14%);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: .99rem;
  letter-spacing: .19em;
}

.brand-copy strong i {
  color: var(--cyan);
  font-style: normal;
}

.brand-copy small {
  margin-top: 6px;
  color: #79959d;
  font-size: .49rem;
  letter-spacing: .23em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 38px);
  padding-inline: 24px;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: #bdd0d5;
  font-size: .84rem;
  transition: color .2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  transform: scaleX(0);
  transition: transform .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--cyan-soft);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.download-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.02);
}

.language-switch button {
  min-width: 34px;
  padding: 7px 8px;
  color: #78939b;
  border-radius: 7px;
  background: transparent;
  font-size: .71rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button.is-active {
  color: #001114;
  background: var(--cyan);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #001416;
  background: linear-gradient(112deg, var(--green), var(--cyan));
  box-shadow: 0 12px 38px rgba(30, 231, 242, .15);
}

.button-primary:hover {
  box-shadow: 0 16px 44px rgba(30, 231, 242, .24);
}

.button-ghost {
  color: #dff8fb;
  border-color: var(--line-strong);
  background: rgba(6, 24, 32, .65);
}

.button-ghost:hover {
  border-color: var(--cyan);
  background: rgba(12, 42, 53, .72);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
  min-height: calc(100vh - 80px);
  align-items: center;
  gap: clamp(36px, 5vw, 88px);
  padding-block: 74px 54px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 7%;
  right: -9%;
  z-index: -2;
  width: 68%;
  height: 80%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 180, 214, .18), rgba(3, 37, 48, .04) 45%, transparent 69%);
  filter: blur(10px);
}

.hero-grid {
  position: absolute;
  right: -4%;
  bottom: 2%;
  z-index: -2;
  width: 69%;
  height: 55%;
  background-image:
    linear-gradient(rgba(30, 231, 242, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 231, 242, .09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to top, #000, transparent 96%);
  transform: perspective(560px) rotateX(64deg);
  transform-origin: bottom;
}

.hero-beam {
  position: absolute;
  top: -10%;
  right: 24%;
  z-index: -1;
  width: 2px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, rgba(30, 231, 242, .58), transparent);
  box-shadow: 0 0 24px var(--cyan);
  transform: rotate(21deg);
  opacity: .34;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.live-eyebrow {
  padding: 8px 12px;
  color: #9fc3ca;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 22, 29, .72);
  letter-spacing: .08em;
}

.status-dot,
.backend-state > span,
.map-live-state i {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #6e8a92;
  box-shadow: 0 0 0 4px rgba(110, 138, 146, .09);
}

.status-dot.is-live,
.backend-state > span.is-live,
.map-live-state.is-live i {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(140, 243, 71, .1), 0 0 16px rgba(140, 243, 71, .55);
}

.status-dot.is-error,
.backend-state > span.is-error {
  background: var(--red);
}

.hero h1 {
  display: grid;
  max-width: 730px;
  margin: 26px 0 20px;
  font-size: clamp(3.1rem, 5.7vw, 6.2rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.hero h1 span {
  font-weight: 710;
}

.hero h1 strong {
  display: inline-block;
  margin-top: 10px;
  color: transparent;
  background: linear-gradient(94deg, var(--green), var(--cyan) 60%, #63aaff);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 820;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: #a9c0c6;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero-actions {
  margin-top: 32px;
}

.play-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .48rem;
}

.hero-proof {
  display: flex;
  width: fit-content;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(4, 18, 25, .76);
  box-shadow: var(--shadow);
}

.hero-proof > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 10px;
  min-width: 152px;
  padding: 14px 17px;
  border-right: 1px solid var(--line);
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof .proof-icon {
  grid-row: 1 / 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(140, 243, 71, .17);
  border-radius: 50%;
  background: rgba(140, 243, 71, .07);
}

.hero-proof strong {
  font-size: 1rem;
}

.hero-proof small {
  color: #7e9ba3;
  font-size: .65rem;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.energy-platform {
  position: absolute;
  right: 0;
  bottom: 70px;
  left: 0;
  height: 190px;
  border: 1px solid rgba(30, 231, 242, .22);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(22, 135, 161, .21), rgba(2, 12, 17, .04) 68%);
  box-shadow: 0 0 90px rgba(30, 231, 242, .1), inset 0 0 50px rgba(30, 231, 242, .09);
  transform: perspective(500px) rotateX(67deg);
}

.energy-platform i {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(140, 243, 71, .18);
  border-radius: 50%;
}

.energy-platform i:nth-child(2) { inset: 33%; }
.energy-platform i:nth-child(3) { inset: 43%; }

.charging-tower {
  position: absolute;
  bottom: 144px;
  left: 2%;
  z-index: 2;
  width: 195px;
  height: 350px;
  border: 1px solid rgba(30, 231, 242, .45);
  border-radius: 28px 28px 12px 12px;
  background: linear-gradient(104deg, #06141b 0 16%, #0c2d38 18% 74%, #041018 77%);
  box-shadow: 0 0 48px rgba(30, 231, 242, .25), inset 10px 0 30px rgba(30, 231, 242, .06);
  transform: perspective(600px) rotateY(12deg);
}

.charging-tower::before {
  position: absolute;
  top: -20px;
  right: -8px;
  left: -8px;
  height: 38px;
  content: "";
  border: 1px solid rgba(30, 231, 242, .62);
  border-radius: 14px 14px 5px 5px;
  background: #071a22;
  box-shadow: 0 0 24px rgba(30, 231, 242, .54);
}

.tower-cap {
  position: absolute;
  top: -13px;
  left: 24px;
  z-index: 2;
  color: var(--cyan-soft);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.tower-light {
  position: absolute;
  top: 40px;
  left: 14px;
  width: 5px;
  height: 235px;
  border-radius: 99px;
  background: linear-gradient(to bottom, var(--cyan), var(--green));
  box-shadow: 0 0 15px var(--cyan);
}

.tower-screen {
  position: absolute;
  top: 70px;
  right: 32px;
  display: grid;
  width: 112px;
  height: 125px;
  place-items: center;
  border: 1px solid rgba(88, 226, 244, .24);
  border-radius: 8px;
  background: linear-gradient(150deg, #092a34, #041015);
  box-shadow: inset 0 0 24px rgba(30, 231, 242, .08);
}

.tower-screen b {
  color: var(--green);
  letter-spacing: .2em;
}

.tower-screen small {
  color: #8bc6ce;
  font-size: .65rem;
}

.tower-port {
  position: absolute;
  right: 42px;
  bottom: 48px;
  width: 54px;
  height: 54px;
  border: 5px solid #153a46;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #030b0f;
}

.vehicle-silhouette {
  position: absolute;
  right: 12%;
  bottom: 138px;
  z-index: 3;
  width: 420px;
  height: 116px;
  border: 1px solid rgba(190, 237, 244, .42);
  border-radius: 80px 110px 28px 31px;
  background: linear-gradient(175deg, rgba(109, 151, 161, .82), rgba(12, 35, 45, .98) 64%);
  box-shadow: 0 20px 50px rgba(0,0,0,.56), inset 0 4px 18px rgba(255,255,255,.12), 0 0 28px rgba(30, 231, 242, .08);
  transform: skewX(-6deg);
}

.vehicle-silhouette::after {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 26px;
  height: 8px;
  content: "";
  border-radius: 99px;
  background: rgba(5, 17, 22, .9);
}

.vehicle-roof {
  position: absolute;
  top: -55px;
  left: 93px;
  width: 220px;
  height: 80px;
  border: 1px solid rgba(190, 237, 244, .38);
  border-bottom: 0;
  border-radius: 120px 100px 10px 10px;
  background: linear-gradient(150deg, #214653, #071b24 65%);
  clip-path: polygon(22% 100%, 3% 100%, 27% 15%, 70% 0, 100% 100%);
}

.wheel {
  position: absolute;
  bottom: -28px;
  width: 72px;
  height: 72px;
  border: 12px solid #02070a;
  border-radius: 50%;
  background: radial-gradient(circle, #a3c4cb 0 13%, #233f48 14% 33%, #071015 35%);
  box-shadow: 0 0 0 2px #22424c;
}

.wheel-one { left: 67px; }
.wheel-two { right: 52px; }

.hero-phone {
  position: absolute;
  top: 7px;
  right: 1%;
  z-index: 6;
  width: 272px;
  height: 570px;
  padding: 8px;
  border: 2px solid #678087;
  border-radius: 42px;
  background: #03080b;
  box-shadow: 0 38px 70px rgba(0,0,0,.62), 0 0 32px rgba(30, 231, 242, .14), inset 0 0 0 2px #0f242b;
  transform: rotate(5deg);
}

.hero-phone::after {
  position: absolute;
  right: -4px;
  top: 130px;
  width: 3px;
  height: 80px;
  content: "";
  border-radius: 3px;
  background: #53676d;
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 3;
  width: 65px;
  height: 16px;
  border-radius: 0 0 11px 11px;
  background: #02070a;
  transform: translateX(-50%);
}

.phone-ui,
.app-phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 15%, rgba(30, 231, 242, .13), transparent 30%),
    linear-gradient(170deg, #071820, #020a0f 72%);
}

.phone-ui {
  padding: 22px 15px 14px;
}

.phone-topline,
.screen-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a2bcc2;
  font-size: .55rem;
}

.phone-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
}

.mini-brand {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(30, 231, 242, .4);
  border-radius: 8px;
  background: rgba(30, 231, 242, .06);
  font-size: .7rem;
  font-weight: 900;
}

.phone-brand-row div {
  display: grid;
}

.phone-brand-row strong {
  font-size: .7rem;
  letter-spacing: .06em;
}

.phone-brand-row small {
  color: #71909a;
  font-size: .49rem;
}

.notification-dot {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(140, 243, 71, .7);
}

.phone-live-card {
  display: grid;
  margin-top: 15px;
  padding: 15px;
  border: 1px solid rgba(30, 231, 242, .19);
  border-radius: 15px;
  background: linear-gradient(125deg, rgba(17, 86, 97, .62), rgba(5, 25, 33, .8));
  box-shadow: inset 0 0 32px rgba(30, 231, 242, .05);
}

.phone-live-card small {
  color: #85aab2;
  font-size: .54rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.phone-live-card strong {
  margin-block: 5px;
  color: var(--green);
  font-size: 1.45rem;
}

.phone-live-card strong i {
  color: #e9feff;
  font-size: .66rem;
  font-style: normal;
  font-weight: 700;
}

.phone-live-card > span {
  color: #9bb7bd;
  font-size: .55rem;
}

.phone-find {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 10px 12px;
  color: #001316;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  font-size: .6rem;
  font-weight: 900;
}

.phone-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 17px;
}

.phone-section-title strong {
  font-size: .63rem;
}

.phone-section-title small {
  color: #67858e;
  font-size: .48rem;
}

.phone-stations {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

.phone-station,
.phone-station-skeleton {
  min-height: 61px;
  padding: 9px;
  border: 1px solid rgba(130, 192, 205, .13);
  border-radius: 10px;
  background: rgba(9, 29, 37, .82);
}

.phone-station {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.phone-station > i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--cyan);
  border-radius: 8px;
  background: rgba(30, 231, 242, .08);
  font-style: normal;
}

.phone-station div {
  display: grid;
  min-width: 0;
}

.phone-station strong,
.phone-station small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-station strong {
  font-size: .55rem;
}

.phone-station small {
  color: #6d8a93;
  font-size: .47rem;
}

.phone-station b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7d939a;
}

.phone-station b.available { background: var(--green); }
.phone-station b.busy { background: var(--cyan); }

.phone-station-skeleton {
  position: relative;
  overflow: hidden;
}

.phone-station-skeleton::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.045), transparent);
  animation: shimmer 1.6s linear infinite;
}

.phone-nav {
  position: absolute;
  right: 15px;
  bottom: 12px;
  left: 15px;
  display: flex;
  justify-content: space-around;
  padding: 12px;
  border: 1px solid rgba(130, 192, 205, .12);
  border-radius: 14px;
  background: rgba(3, 13, 18, .9);
}

.phone-nav i {
  width: 7px;
  height: 7px;
  border: 1px solid #78919a;
  border-radius: 3px;
}

.phone-nav i:first-child { background: var(--cyan); border-color: var(--cyan); }

.live-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(100deg, rgba(8, 28, 37, .86), rgba(3, 15, 21, .92));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.02);
}

.ribbon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 104px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.ribbon-item:last-child { border-right: 0; }

.ribbon-item > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--green);
  border-radius: 50%;
  background: rgba(140, 243, 71, .08);
  box-shadow: inset 0 0 18px rgba(140, 243, 71, .06);
}

.ribbon-item div { display: grid; }
.ribbon-item strong { font-size: clamp(1.15rem, 2vw, 1.55rem); }
.ribbon-item small { color: #829da5; font-size: .71rem; }

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.app-copy h2,
.ai-copy h2,
.ppob-copy h2,
.business-copy h2,
.security-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.section-heading h2 strong,
.app-copy h2 strong,
.ai-copy h2 strong,
.ppob-copy h2 strong,
.business-copy h2 strong,
.security-copy h2 strong {
  color: transparent;
  background: linear-gradient(94deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.section-heading p,
.app-copy > p,
.ai-copy > p,
.ppob-copy > p,
.business-copy > p,
.security-copy > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.section-heading-center p { margin-inline: auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card,
.security-grid article,
.capability-stack article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(8, 31, 41, .86), rgba(3, 15, 21, .9));
  box-shadow: inset 0 1px rgba(255,255,255,.025);
}

.feature-card {
  min-height: 245px;
  padding: 28px;
  border-radius: 15px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.feature-card::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 170px;
  height: 170px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(70px);
  opacity: .035;
}

.feature-card:hover {
  border-color: rgba(30, 231, 242, .36);
  box-shadow: 0 20px 60px rgba(0,0,0,.24), inset 0 1px rgba(255,255,255,.04);
  transform: translateY(-5px);
}

.feature-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  font-size: 1.25rem;
  box-shadow: inset 0 0 20px rgba(255,255,255,.03);
}

.feature-icon.cyan { color: var(--cyan); }
.feature-icon.green { color: var(--green); }
.feature-icon.violet { color: var(--violet); }
.feature-icon.orange { color: var(--orange); }
.feature-icon.lime { color: var(--lime); }
.feature-icon.blue { color: var(--blue); }

.feature-card h3 {
  margin: 19px 0 8px;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0 0 18px;
  color: #8ba7af;
  font-size: .85rem;
}

.feature-card a {
  color: var(--cyan);
  font-size: .77rem;
  font-weight: 800;
}

.feature-note {
  display: inline-flex;
  padding: 5px 9px;
  color: #76939b;
  border: 1px solid rgba(130, 192, 205, .13);
  border-radius: 999px;
  font-size: .66rem;
}

.network-section {
  padding-top: 88px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  max-width: none;
  align-items: end;
  gap: 54px;
}

.split-heading p {
  padding-bottom: 8px;
}

.network-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.inventory-chip,
.summary-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #a7c1c8;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 28, 36, .64);
  font-size: .74rem;
}

.inventory-chip b { color: var(--text); }
.inventory-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.inventory-chip.dc i { background: var(--green); }

.network-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, .72fr);
  min-height: 690px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #041117;
  box-shadow: var(--shadow);
}

.map-column {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border-right: 1px solid var(--line);
}

.map-toolbar,
.station-browser-head {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 24, 32, .94);
}

.station-search {
  display: flex;
  width: min(100%, 440px);
  align-items: center;
  gap: 9px;
  padding-inline: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #031016;
}

.station-search > span {
  color: #78979f;
}

.station-search input {
  width: 100%;
  height: 40px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: .8rem;
}

.station-search:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(30, 231, 242, .1);
}

.map-live-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #718d95;
  font-size: .68rem;
  white-space: nowrap;
}

.map-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(20, 102, 119, .16), transparent 40%),
    linear-gradient(rgba(30, 231, 242, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 231, 242, .025) 1px, transparent 1px),
    #020c11;
  background-size: auto, 36px 36px, 36px 36px, auto;
}

.network-map {
  /* Mapbox's bundled `.mapboxgl-map { position: relative; }` loads after this
     stylesheet in production. Keep the map bound to its real stage instead of
     collapsing the canvas parent to 0px height. */
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.network-map .mapboxgl-canvas { outline: 0; }
.network-map .mapboxgl-ctrl-group { border: 1px solid var(--line); background: #071a22; }
.network-map .mapboxgl-ctrl-group button { filter: invert(1); }
.network-map .mapboxgl-ctrl-attrib { color: #758f97; background: rgba(2, 11, 16, .8); }
.network-map .mapboxgl-ctrl-attrib a { color: #a7c7cf; }

.network-map-fallback {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(17, 224, 197, .13), transparent 31%),
    linear-gradient(rgba(30, 231, 242, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 231, 242, .045) 1px, transparent 1px),
    linear-gradient(145deg, #061b23, #020b10 72%);
  background-size: auto, 34px 34px, 34px 34px, auto;
}
.network-map-fallback::before,
.network-map-fallback::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.network-map-fallback::before {
  inset: 12% 8% 18%;
  opacity: .42;
  border: 1px solid rgba(30, 231, 242, .12);
  border-radius: 48% 52% 43% 57%;
  background: radial-gradient(ellipse at 35% 55%, rgba(30,231,242,.09), transparent 58%);
  transform: rotate(-4deg);
}
.network-map-fallback::after {
  inset: 0;
  background: linear-gradient(115deg, transparent 0 45%, rgba(140,243,71,.04) 46% 47%, transparent 48% 100%);
}
.fallback-map-orbit { position: absolute; top: 50%; left: 50%; width: min(72vw, 560px); aspect-ratio: 1.8; border: 1px solid rgba(30,231,242,.13); border-radius: 50%; transform: translate(-50%, -50%) rotate(-10deg); }
.fallback-map-country { position: absolute; top: 48%; left: 50%; color: rgba(201,242,245,.16); text-align: center; font-size: clamp(1.8rem, 5vw, 4.2rem); font-weight: 950; letter-spacing: .13em; transform: translate(-50%, -50%); }
.fallback-map-country small { color: rgba(140,243,71,.25); font-size: .2em; letter-spacing: .32em; }
.fallback-station-pin { position: absolute; z-index: 4; display: grid; justify-items: center; padding: 0; border: 0; background: none; transform: translate(-50%, -50%); cursor: pointer; }
.fallback-station-pin > span { display: grid; width: 42px; height: 42px; place-items: center; border: 2px solid var(--cyan); border-radius: 50% 50% 50% 14%; background: #06171e; box-shadow: 0 0 0 6px rgba(30,231,242,.1), 0 0 27px rgba(30,231,242,.38); transform: rotate(-45deg); }
.fallback-station-pin > span img { width: 31px; height: 31px; object-fit: cover; object-position: center top; clip-path: inset(0 0 42% 0); transform: rotate(45deg) scale(1.22) translate(8%, 9%); }
.fallback-station-pin em { max-width: 150px; margin-top: 10px; overflow: hidden; color: #e9fbfc; text-overflow: ellipsis; text-shadow: 0 2px 9px #000; white-space: nowrap; font-size: .67rem; font-style: normal; font-weight: 800; }
.fallback-station-pin.available > span { border-color: var(--green); box-shadow: 0 0 0 6px rgba(140,243,71,.1), 0 0 27px rgba(140,243,71,.42); }
.fallback-station-pin.faulted > span { border-color: var(--orange); }
.fallback-station-pin.unavailable > span { border-color: #71838b; box-shadow: 0 0 0 5px rgba(113,131,139,.08); }
.fallback-station-pin:focus-visible > span { outline: 3px solid white; outline-offset: 5px; }
.fallback-map-empty { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 12px; color: #809aa1; }
.fallback-map-empty span { color: var(--cyan); font-size: 2rem; }

/* Premium equipment showcase */
.product-showcase { display: grid; gap: 18px; }
.product-showcase-hero { position: relative; min-height: 510px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #031016; box-shadow: var(--shadow); }
.product-showcase-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-showcase-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(2,11,16,.96) 0%, rgba(2,11,16,.72) 43%, rgba(2,11,16,.08) 76%), linear-gradient(0deg, rgba(2,11,16,.66), transparent 55%); }
.product-showcase-copy { position: relative; z-index: 2; display: grid; width: min(610px, 90%); min-height: 510px; align-content: center; padding: clamp(30px, 5vw, 74px); }
.product-showcase-copy h2 { max-width: 610px; margin: 17px 0; font-size: clamp(2.2rem, 4.6vw, 4.5rem); line-height: .98; }
.product-showcase-copy h2 strong { color: var(--green); }
.product-showcase-copy p { max-width: 560px; color: #a7c2c8; line-height: 1.75; }
.charger-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.charger-card { position: relative; min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(8,31,40,.96), rgba(3,14,20,.98)); transition: transform .25s ease, border-color .25s ease; }
.charger-card:hover { border-color: rgba(30,231,242,.34); transform: translateY(-5px); }
.charger-card img { display: block; width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; object-position: center top; background: white; }
.charger-card figcaption { display: grid; gap: 5px; padding: 18px; }
.charger-card figcaption strong { color: #effdff; font-size: .88rem; }
.charger-card figcaption span { color: #78969e; font-size: .68rem; line-height: 1.5; }

/* Guided app journey */
.how-section {
  position: relative;
  isolation: isolate;
}
.how-section::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 60%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(12, 232, 190, .09), transparent 64%);
  pointer-events: none;
}
.journey-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.journey-card {
  min-height: 250px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(12, 39, 49, .92), rgba(4, 18, 24, .96)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 24px 70px rgba(0,0,0,.15);
}
.journey-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -72px;
  bottom: -92px;
  border: 1px solid rgba(25, 236, 199, .15);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(0, 222, 194, .08);
}
.journey-card > i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 18px 0 24px;
  border: 1px solid rgba(40, 235, 207, .35);
  border-radius: 15px;
  color: var(--accent);
  background: rgba(6, 230, 193, .09);
  font-style: normal;
  font-size: 1.35rem;
}
.journey-number {
  color: rgba(156, 186, 194, .6);
  font: 800 .72rem/1 var(--font-mono, ui-monospace, monospace);
  letter-spacing: .16em;
}
.journey-card h3 { margin: 0 0 10px; font-size: 1.08rem; }
.journey-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.usage-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}
.usage-notes article { display: grid; gap: 6px; padding: 20px 22px; background: rgba(5, 23, 30, .96); }
.usage-notes strong { color: var(--accent); font-size: .88rem; }
.usage-notes span { color: var(--muted); font-size: .82rem; line-height: 1.55; }

.play-qr {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 290px;
  padding: 12px 16px 12px 12px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(43, 233, 204, .28);
  border-radius: 18px;
  background: rgba(2, 14, 20, .74);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.play-qr:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 18px 50px rgba(0, 224, 190, .12); }
.qr-frame { position: relative; width: 82px; height: 82px; flex: 0 0 82px; padding: 6px; border-radius: 12px; background: #fff; }
.qr-frame img { display: block; width: 100%; height: 100%; }
.qr-frame b {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 3px solid #fff;
  border-radius: 7px;
  color: #041218;
  background: linear-gradient(135deg, #9eff57, #12dbd0);
  font-size: .7rem;
}
.play-qr > span:last-child { display: grid; gap: 4px; }
.play-qr small { color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.play-qr strong { font-size: .94rem; line-height: 1.25; }

@media (max-width: 920px) {
  .journey-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .usage-notes { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .journey-rail { grid-template-columns: 1fr; }
  .journey-card { min-height: 0; }
  .play-qr { width: 100%; min-width: 0; }
}

.map-empty {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  max-width: 520px;
  height: fit-content;
  place-items: center;
  margin: auto;
  padding: 34px;
  text-align: center;
}

.map-empty[hidden] { display: none; }

.map-empty-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 16px;
  color: var(--cyan);
  border: 1px solid rgba(30, 231, 242, .3);
  border-radius: 20px;
  background: rgba(30, 231, 242, .07);
  box-shadow: 0 0 34px rgba(30, 231, 242, .1);
  font-size: 1.5rem;
}

.map-empty strong { font-size: 1.05rem; }
.map-empty p { margin: 9px 0 0; color: #78969e; font-size: .8rem; }

.map-legend {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(2, 12, 17, .88);
  backdrop-filter: blur(12px);
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #77949c;
  font-size: .64rem;
}

.map-legend i,
.status-pill i,
.station-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.map-legend i.available,
.station-status-dot.available { background: var(--green); box-shadow: 0 0 12px rgba(140,243,71,.5); }
.map-legend i.busy,
.station-status-dot.busy { background: var(--cyan); box-shadow: 0 0 12px rgba(30,231,242,.5); }
.map-legend i.faulted,
.station-status-dot.faulted { background: var(--orange); }
.map-legend i.unavailable,
.station-status-dot.unavailable { background: #677c83; }
.map-legend b { color: #d9f3f6; }
.map-legend em { font-style: normal; }

.garuda-marker {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  color: #021014;
  border: 2px solid #05202a;
  border-radius: 50% 50% 50% 8px;
  background: #788c92;
  box-shadow: 0 0 0 5px rgba(120,140,146,.14), 0 8px 20px rgba(0,0,0,.42);
  transform: rotate(-45deg);
  cursor: pointer;
}

.garuda-marker img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  transform: rotate(45deg);
}

.garuda-marker.available { background: var(--green); box-shadow: 0 0 0 5px rgba(140,243,71,.12), 0 0 24px rgba(140,243,71,.45); }
.garuda-marker.busy { background: var(--cyan); box-shadow: 0 0 0 5px rgba(30,231,242,.12), 0 0 24px rgba(30,231,242,.45); }
.garuda-marker.faulted { background: var(--orange); }
.garuda-marker.is-selected { width: 42px; height: 42px; border-color: white; }

.station-browser {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  min-height: 690px;
  background: linear-gradient(180deg, #071922, #031017);
}

.station-browser-head div { display: grid; }
.station-browser-head small { color: var(--green); font-size: .57rem; font-weight: 900; letter-spacing: .17em; }
.station-browser-head strong { margin-top: 3px; font-size: .88rem; }

.icon-button {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(30, 231, 242, .04);
  cursor: pointer;
}

.icon-button:hover { border-color: var(--cyan); }
.icon-button.is-loading { animation: spin .8s linear infinite; }

.station-list,
.station-detail {
  overflow-y: auto;
  scrollbar-color: #17414d transparent;
  scrollbar-width: thin;
}

.station-list[hidden],
.station-detail[hidden] { display: none; }

.list-state {
  display: grid;
  min-height: 500px;
  place-items: center;
  align-content: center;
  padding: 30px;
  text-align: center;
}

.list-state p { max-width: 300px; color: #77929a; font-size: .8rem; }

.spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(30, 231, 242, .15);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.station-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px 17px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease;
}

.station-row:hover,
.station-row.is-selected { background: rgba(30, 231, 242, .045); }

.station-row-copy {
  display: grid;
  min-width: 0;
}

.station-row-copy strong,
.station-row-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.station-row-copy strong { font-size: .8rem; }
.station-row-copy small { color: #708c94; font-size: .67rem; }

.station-row-meta {
  display: grid;
  justify-items: end;
  color: #8ba9b0;
  font-size: .62rem;
}

.station-detail {
  padding: 18px;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--cyan);
  background: transparent;
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
}

.detail-head {
  margin-top: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.detail-head-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.detail-head h3 { margin: 0; font-size: 1.1rem; line-height: 1.25; }
.detail-head > p { margin: 7px 0 0; color: #78949c; font-size: .73rem; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #aac2c8;
  background: rgba(255,255,255,.02);
  font-size: .58rem;
  white-space: nowrap;
}

.status-pill i.available { background: var(--green); }
.status-pill i.busy { background: var(--cyan); }
.status-pill i.faulted { background: var(--orange); }
.status-pill i.unavailable { background: #687d84; }

.detail-totals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 13px;
}

.detail-totals div {
  display: grid;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.015);
}

.detail-totals strong { font-size: .9rem; }
.detail-totals small { color: #6f8b93; font-size: .57rem; }

.machine-list {
  display: grid;
  gap: 9px;
  margin-top: 15px;
}

.machine-list > h4 {
  margin: 0 0 2px;
  color: #9bb5bc;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.machine-card {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(6, 23, 31, .76);
}

.machine-card summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  cursor: pointer;
  list-style: none;
}

.machine-card summary::-webkit-details-marker { display: none; }

.machine-type {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(30, 231, 242, .25);
  border-radius: 10px;
  background: rgba(30, 231, 242, .06);
  font-size: .67rem;
  font-weight: 900;
}

.machine-type.dc { color: var(--green); border-color: rgba(140, 243, 71, .25); background: rgba(140, 243, 71, .06); }

.machine-copy { display: grid; }
.machine-copy strong { font-size: .74rem; }
.machine-copy small { color: #708c94; font-size: .61rem; }
.machine-expand { color: #6d8b94; transition: transform .2s ease; }
.machine-card[open] .machine-expand { transform: rotate(45deg); }

.connector-list {
  display: grid;
  gap: 6px;
  padding: 0 12px 12px;
}

.connector-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border-top: 1px solid rgba(130, 192, 205, .1);
  color: #9cb6bd;
  font-size: .64rem;
}

.connector-number {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.connector-copy { display: grid; }
.connector-copy strong { color: #e3f8fa; }

.data-footnote {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 13px 0 0;
  color: #647f88;
  font-size: .68rem;
}

.app-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 70px;
  min-height: 840px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 25px 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: #a5bdc3;
  font-size: .84rem;
}

.check-list li::before {
  position: absolute;
  top: .19em;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  content: "✓";
  color: #061116;
  border-radius: 50%;
  background: var(--green);
  font-size: .6rem;
  font-weight: 1000;
}

.check-list.compact { gap: 9px; margin-block: 20px 25px; }
.check-list.compact li { font-size: .79rem; }

.store-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 11px;
  padding: 9px 16px;
  color: #eefcff;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #06151d;
  transition: border-color .2s ease, transform .2s ease;
}

.store-button:hover { border-color: var(--cyan); transform: translateY(-2px); }
.store-button > span { font-size: 1.35rem; }
.store-button div { display: grid; line-height: 1.05; }
.store-button small { color: #7d98a0; font-size: .57rem; }
.store-button strong { margin-top: 4px; font-size: .86rem; }
.store-button.large { min-width: 190px; }
.ios-note { max-width: 420px !important; margin-top: 13px !important; font-size: .68rem; }

.phone-showcase {
  position: relative;
  display: flex;
  min-height: 690px;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.phone-showcase::before {
  position: absolute;
  inset: 18% 5%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 231, 242, .18), transparent 67%);
  filter: blur(30px);
}

.app-phone {
  width: 252px;
  height: 532px;
  padding: 7px;
  border: 2px solid #45616a;
  border-radius: 36px;
  background: #02070a;
  box-shadow: 0 30px 60px rgba(0,0,0,.52), inset 0 0 0 2px #10272f;
}

.phone-left { transform: translateY(34px) rotate(-3deg); }
.phone-center { z-index: 2; height: 570px; border-color: #789299; }
.phone-right { transform: translateY(34px) rotate(3deg); }

.app-phone-screen {
  padding: 18px 13px 14px;
}

.screen-title {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  margin-top: 15px;
  text-align: center;
}

.screen-title button {
  color: var(--cyan);
  background: transparent;
  font-size: 1.3rem;
}

.screen-title strong { font-size: .72rem; }

.charge-orb {
  position: relative;
  display: grid;
  width: 168px;
  height: 168px;
  place-items: center;
  align-content: center;
  gap: 3px;
  margin: 32px auto 24px;
  border: 2px solid rgba(30, 231, 242, .28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 231, 242, .13), rgba(3,14,19,.2) 68%);
  box-shadow: inset 0 0 30px rgba(30, 231, 242, .06), 0 0 35px rgba(30,231,242,.08);
}

.charge-orb::before,
.charge-orb::after {
  position: absolute;
  inset: 10px;
  content: "";
  border: 4px solid transparent;
  border-top-color: var(--cyan);
  border-radius: 50%;
}

.charge-orb::after { inset: 20px; border-top-color: var(--green); transform: rotate(170deg); }
.charge-orb span { color: var(--green); font-size: 1.2rem; }
.charge-orb strong { font-size: 1.7rem; }
.charge-orb small { color: #7f9da5; font-size: .58rem; }

.honest-state {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  color: #839fa7;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.015);
  font-size: .58rem;
}

.honest-state i { width: 7px; height: 7px; border-radius: 50%; background: #768b92; }

.screen-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 10px;
}

.screen-metrics div { display: grid; padding: 10px; border: 1px solid var(--line); border-radius: 8px; }
.screen-metrics small { color: #6e8b94; font-size: .56rem; }
.screen-metrics strong { margin-top: 4px; font-size: .68rem; }

.inactive-control {
  margin-top: 14px;
  padding: 11px;
  color: #647d85;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px;
  background: rgba(255,255,255,.025);
  text-align: center;
  font-size: .61rem;
}

.mini-map {
  position: relative;
  height: 225px;
  margin: 18px -13px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 36% 46%, rgba(30, 231, 242, .12), transparent 16%),
    linear-gradient(27deg, transparent 44%, rgba(50, 97, 110, .35) 45% 47%, transparent 48%),
    linear-gradient(135deg, transparent 49%, rgba(50, 97, 110, .27) 50% 52%, transparent 53%),
    #05151c;
}

.mini-road { position: absolute; height: 1px; background: rgba(99, 153, 165, .28); transform-origin: left; }
.road-a { width: 290px; top: 45px; left: -30px; transform: rotate(24deg); }
.road-b { width: 260px; top: 153px; left: 10px; transform: rotate(-31deg); }
.road-c { width: 250px; top: 100px; left: -10px; transform: rotate(2deg); }

.real-pin {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 3px solid #08232c;
  border-radius: 50% 50% 50% 3px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(30,231,242,.55);
  transform: rotate(-45deg);
}

.pin-a { top: 55px; left: 60px; }
.pin-b { top: 105px; left: 135px; background: var(--green); }
.pin-c { top: 160px; right: 45px; }
.mini-map em { position: absolute; right: 8px; bottom: 8px; color: #54727b; font-size: .47rem; font-style: normal; }

.screen-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  padding: 5px 8px;
  color: #8baab2;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .54rem;
}

.screen-live-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.app-station-card {
  min-height: 98px;
  margin-top: 10px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 27, 35, .86);
}

.app-station-card p { margin: 4px 0 0; color: #78949d; font-size: .57rem; }
.app-station-card strong { display: block; font-size: .68rem; }
.app-station-card small { display: block; margin-top: 5px; color: #73909a; font-size: .53rem; }
.app-station-card .app-card-meta { display: flex; gap: 5px; margin-top: 8px; }
.app-station-card .app-card-meta span { padding: 4px 6px; color: #96b5bc; border-radius: 6px; background: rgba(255,255,255,.03); font-size: .48rem; }

.wallet-card {
  display: grid;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(30, 231, 242, .22);
  border-radius: 12px;
  background: linear-gradient(130deg, rgba(7, 63, 76, .64), rgba(6, 24, 32, .84));
}

.wallet-card small { color: #78a2ab; font-size: .55rem; }
.wallet-card strong { margin-block: 5px; font-size: .76rem; }
.wallet-card span { color: #75919a; font-size: .49rem; }

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 13px;
}

.service-mini-grid > span {
  display: grid;
  min-height: 70px;
  place-items: center;
  align-content: center;
  gap: 7px;
  color: var(--cyan);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.015);
}

.service-mini-grid small { color: #9ab2b8; font-size: .49rem; text-align: center; }
.provider-note { margin: 13px 0 0; color: #6d8891; font-size: .54rem; text-align: center; }

.ai-section {
  position: relative;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 52% 50%, rgba(73, 88, 255, .16), transparent 24rem),
    linear-gradient(90deg, rgba(3, 14, 20, .95), rgba(7, 18, 31, .88), rgba(3, 14, 20, .95));
}

.ai-layout {
  display: grid;
  grid-template-columns: .9fr .7fr .9fr;
  min-height: 650px;
  align-items: center;
  gap: 42px;
  padding-block: 96px;
}

.ai-core {
  position: relative;
  display: grid;
  width: min(100%, 310px);
  aspect-ratio: 1;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(91, 115, 255, .27);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 86, 255, .31), rgba(9, 19, 47, .25) 42%, transparent 69%);
  box-shadow: 0 0 90px rgba(75, 85, 255, .18), inset 0 0 50px rgba(30,231,242,.05);
}

.ai-core strong {
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  color: #d9d6ff;
  border: 1px solid rgba(169, 160, 255, .5);
  border-radius: 46% 54% 42% 58%;
  background: radial-gradient(circle at 35% 35%, #755dff, #23205c 70%);
  box-shadow: 0 0 44px rgba(118, 87, 255, .55);
  font-size: 1.45rem;
}

.core-ring {
  position: absolute;
  border: 1px solid rgba(30, 231, 242, .24);
  border-radius: 50%;
}

.ring-one { inset: 12%; transform: rotateX(66deg) rotateZ(25deg); }
.ring-two { inset: 22%; border-color: rgba(140,243,71,.22); transform: rotateY(68deg) rotateZ(-24deg); }
.ai-core > i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); animation: orbit 5s linear infinite; }

.capability-stack { display: grid; gap: 14px; }
.capability-stack article { padding: 20px; border-radius: 13px; }
.capability-stack small { color: var(--violet); font-size: .6rem; font-weight: 900; letter-spacing: .14em; }
.capability-stack strong { display: block; margin-top: 8px; font-size: .93rem; }
.capability-stack p { margin: 8px 0 13px; color: #819ca4; font-size: .72rem; }

.capability-badge {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: .59rem;
  font-weight: 800;
}

.capability-badge.unavailable { color: #ff9ca7; background: rgba(255,102,117,.1); }
.capability-badge.conditional { color: #f4c881; background: rgba(255,159,67,.1); }

.ppob-section {
  display: grid;
  grid-template-columns: .67fr 1.33fr;
  align-items: center;
  gap: 52px;
}

.backend-state {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(6, 23, 31, .75);
}

.backend-state div { display: grid; }
.backend-state small { color: #708c94; font-size: .58rem; }
.backend-state strong { font-size: .69rem; }

.ppob-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7, 29, 38, .9), rgba(3, 15, 21, .82));
}

.ppob-services div {
  display: grid;
  min-height: 128px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(130, 192, 205, .12);
  border-radius: 12px;
  background: rgba(255,255,255,.015);
  transition: background .2s ease, border-color .2s ease;
}

.ppob-services div:hover { border-color: rgba(30,231,242,.35); background: rgba(30,231,242,.025); }
.ppob-services span { color: var(--cyan); font-size: 1.35rem; }
.ppob-services div:nth-child(2n) span { color: var(--green); }
.ppob-services div:nth-child(3n) span { color: var(--violet); }
.ppob-services small { color: #a3bac0; text-align: center; }

.business-section {
  display: grid;
  grid-template-columns: 1.05fr .85fr .8fr;
  min-height: 720px;
  align-items: center;
  gap: 42px;
  padding: 90px max(24px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background: linear-gradient(100deg, rgba(3, 12, 17, .96), rgba(5, 25, 33, .88));
}

.business-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 55% 43%, rgba(30,231,242,.15), transparent 37%),
    linear-gradient(165deg, #0a2630, #020a0e 72%);
  box-shadow: var(--shadow), inset 0 0 50px rgba(30,231,242,.04);
}

.business-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.business-visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(2,11,16,.92), transparent 58%); }
.business-visual-overlay { position: absolute; right: 24px; bottom: 25px; left: 24px; z-index: 2; display: grid; gap: 4px; }
.business-visual-overlay strong { color: var(--green); font-size: .92rem; letter-spacing: .12em; }
.business-visual-overlay span { color: #d1e7ea; font-size: .68rem; }

.business-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(30,231,242,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(30,231,242,.035) 1px, transparent 1px);
  background-size: 38px 38px;
}

.business-floor {
  position: absolute;
  right: -10%;
  bottom: -90px;
  left: -10%;
  height: 260px;
  border: 1px solid rgba(30,231,242,.16);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(30,231,242,.12), transparent 66%);
  transform: perspective(500px) rotateX(64deg);
}

.business-charger {
  position: absolute;
  bottom: 88px;
  width: 92px;
  height: 250px;
  border: 1px solid rgba(30,231,242,.32);
  border-radius: 18px 18px 7px 7px;
  background: linear-gradient(105deg, #07141a, #123643 65%, #040d12);
  box-shadow: 0 0 32px rgba(30,231,242,.13);
}

.business-charger::before { position: absolute; top: -10px; right: -4px; left: -4px; height: 22px; content: ""; border: 1px solid rgba(30,231,242,.45); border-radius: 8px; background: #071a22; box-shadow: 0 0 13px rgba(30,231,242,.28); }
.business-charger i { position: absolute; top: 37px; right: 19px; left: 19px; height: 73px; border: 1px solid rgba(30,231,242,.22); border-radius: 6px; background: #06151b; }
.business-charger span { position: absolute; right: 0; bottom: 40px; left: 0; color: var(--green); text-align: center; font-size: .66rem; font-weight: 900; }
.charger-one { left: 14%; transform: scale(.86); }
.charger-two { left: 42%; z-index: 2; }
.charger-three { right: 12%; transform: scale(.8); }

.business-capabilities { display: grid; gap: 10px; }
.business-capabilities article { display: grid; grid-template-columns: auto 1fr; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 12px; background: rgba(6,24,32,.7); }
.business-capabilities article > span { display: grid; width: 37px; height: 37px; place-items: center; color: var(--green); border: 1px solid rgba(140,243,71,.2); border-radius: 10px; background: rgba(140,243,71,.05); }
.business-capabilities strong { font-size: .78rem; }
.business-capabilities p { margin: 4px 0 0; color: #718d95; font-size: .65rem; }

.security-section {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  align-items: center;
  gap: 60px;
}

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

.security-grid article {
  display: grid;
  min-height: 230px;
  place-items: center;
  align-content: center;
  padding: 22px;
  border-radius: 14px;
  text-align: center;
}

.security-grid article > span {
  display: grid;
  width: 62px;
  height: 68px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(30,231,242,.3);
  background: rgba(30,231,242,.05);
  clip-path: polygon(50% 0, 94% 18%, 88% 72%, 50% 100%, 12% 72%, 6% 18%);
  font-size: 1.25rem;
}

.security-grid article:nth-child(2n) > span { color: var(--green); border-color: rgba(140,243,71,.3); background: rgba(140,243,71,.05); }
.security-grid strong { margin-top: 14px; font-size: .82rem; }
.security-grid p { margin: 7px 0 0; color: #78939b; font-size: .65rem; }

.trust-section {
  padding-block: 58px;
  border-block: 1px solid var(--line);
  background: rgba(5, 20, 27, .7);
}

.trust-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 50px;
}

.trust-layout h2 {
  margin: 10px 0 0;
  font-size: clamp(1.6rem, 2.6vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(4,16,22,.72);
}

.trust-facts article {
  display: grid;
  min-height: 120px;
  align-content: center;
  gap: 3px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-facts article:last-child { border-right: 0; }
.trust-facts strong { color: var(--cyan); font-size: 1.55rem; }
.trust-facts span { color: #79959d; font-size: .68rem; }

.download-section {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 250px;
  align-items: center;
  gap: 30px;
  margin-block: 88px;
  padding: 36px 46px;
  overflow: hidden;
  border: 1px solid rgba(30,231,242,.3);
  border-radius: 20px;
  background: linear-gradient(110deg, #071e27, #06131b 60%, #071f27);
  box-shadow: var(--shadow), inset 0 0 50px rgba(30,231,242,.03);
}

.download-section::before,
.download-section::after {
  position: absolute;
  left: -60px;
  width: 340px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 18px var(--cyan);
  transform: rotate(-14deg);
  opacity: .45;
}

.download-section::before { top: 65px; }
.download-section::after { top: 116px; }
.download-glow { position: absolute; right: 20%; bottom: -180px; width: 440px; height: 280px; border-radius: 50%; background: var(--cyan); filter: blur(140px); opacity: .08; }

.download-logo {
  position: relative;
  z-index: 2;
  width: 104px;
  height: 104px;
  overflow: hidden;
  border: 1px solid rgba(30,231,242,.35);
  border-radius: 23px;
  box-shadow: 0 0 30px rgba(30,231,242,.13);
}

.download-logo img { width: 100%; height: 100%; object-fit: cover; }
.download-copy { position: relative; z-index: 2; }
.download-copy h2 { margin: 8px 0 6px; font-size: clamp(1.65rem, 3vw, 2.7rem); letter-spacing: -.035em; }
.download-copy p { margin: 0; color: #86a2aa; }
.download-actions { position: relative; z-index: 2; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #02090d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding-block: 70px 50px;
}

.footer-brand > p {
  max-width: 390px;
  margin: 22px 0 15px;
  color: #6f8991;
  font-size: .77rem;
}

.footer-email {
  color: var(--cyan);
  font-size: .85rem;
  font-weight: 800;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 5px; color: #cfe4e8; font-size: .78rem; }
.footer-links a { color: #6f8991; font-size: .7rem; }
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #526b73;
  border-top: 1px solid rgba(130,192,205,.1);
  font-size: .67rem;
}

.noscript-banner {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 999;
  padding: 12px;
  color: #1c090b;
  border-radius: 8px;
  background: #ff8592;
  text-align: center;
}

@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbit { from { transform: rotate(0deg) translateX(126px) rotate(0deg); } to { transform: rotate(360deg) translateX(126px) rotate(-360deg); } }

@media (max-width: 1180px) {
  .desktop-nav { gap: 18px; }
  .header-download { display: none; }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); }
  .hero-visual { transform: scale(.9); transform-origin: right center; }
  .vehicle-silhouette { right: 4%; }
  .app-section { grid-template-columns: 1fr; gap: 20px; }
  .app-copy { max-width: 680px; }
  .phone-showcase { min-height: 620px; transform: scale(.9); transform-origin: top center; }
  .business-section { grid-template-columns: .9fr 1fr; }
  .business-capabilities { grid-column: 1 / -1; grid-template-columns: repeat(4, 1fr); }
  .security-section { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav { display: none; }
  .header-actions { justify-self: end; }
  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    align-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,255,255,.02);
    cursor: pointer;
  }
  .menu-toggle span { width: 18px; height: 2px; border-radius: 2px; background: #d5f0f4; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(3, 15, 21, .98);
    box-shadow: var(--shadow);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 12px; color: #a9c0c6; border-radius: 8px; }
  .mobile-menu a:hover { color: var(--cyan); background: rgba(30,231,242,.04); }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-content { max-width: 760px; }
  .hero-visual { min-height: 630px; transform: none; }
  .hero::before { width: 100%; }
  .hero-grid { width: 110%; }
  .live-ribbon { grid-template-columns: 1fr 1fr; }
  .ribbon-item:nth-child(2) { border-right: 0; }
  .ribbon-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .charger-gallery { grid-template-columns: 1fr 1fr; }
  .split-heading { grid-template-columns: 1fr; gap: 10px; }
  .network-panel { grid-template-columns: 1fr; }
  .map-column { min-height: 610px; border-right: 0; border-bottom: 1px solid var(--line); }
  .station-browser { min-height: 540px; }
  .station-list { max-height: 540px; }
  .station-detail { max-height: 650px; }
  .ai-layout { grid-template-columns: 1fr 1fr; }
  .ai-core { grid-row: 2; }
  .capability-stack { grid-column: 2; grid-row: 2; }
  .ppob-section { grid-template-columns: 1fr; }
  .business-section { grid-template-columns: 1fr 1fr; }
  .business-visual { min-height: 400px; }
  .business-capabilities { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .trust-layout { grid-template-columns: 1fr; }
  .download-section { grid-template-columns: auto 1fr; }
  .download-actions { grid-column: 2; }
  .footer-main { grid-template-columns: .8fr 1.2fr; gap: 40px; }
}

@media (max-width: 720px) {
  .section-shell { width: min(calc(100% - 30px), var(--max)); }
  .section-block { padding-block: 76px; }
  .site-header { min-height: 68px; padding-inline: 15px; }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: .84rem; letter-spacing: .14em; }
  .language-switch { display: none; }
  .hero { padding-block: 58px 30px; }
  .hero h1 { font-size: clamp(2.9rem, 14vw, 4.5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-proof > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-proof > div:last-child { border-bottom: 0; }
  .hero-visual { min-height: 530px; margin-top: 16px; }
  .charging-tower { bottom: 125px; left: 0; width: 150px; height: 290px; }
  .vehicle-silhouette { right: 2%; bottom: 125px; width: 300px; height: 88px; }
  .vehicle-roof { top: -42px; left: 63px; width: 170px; height: 60px; }
  .wheel { width: 58px; height: 58px; bottom: -24px; }
  .wheel-one { left: 48px; }
  .wheel-two { right: 36px; }
  .hero-phone { top: 0; right: -12px; width: 210px; height: 450px; border-radius: 32px; }
  .phone-ui { padding: 18px 11px 10px; border-radius: 25px; }
  .phone-stations .phone-station:nth-child(n+2), .phone-station-skeleton:nth-child(n+2) { display: none; }
  .phone-live-card { padding: 11px; }
  .phone-live-card strong { font-size: 1.1rem; }
  .live-ribbon { grid-template-columns: 1fr; }
  .ribbon-item { justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--line); }
  .ribbon-item:last-child { border-bottom: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .product-showcase-hero, .product-showcase-copy { min-height: 440px; }
  .product-showcase-hero::after { background: linear-gradient(0deg, rgba(2,11,16,.96) 0%, rgba(2,11,16,.65) 72%, rgba(2,11,16,.18)); }
  .product-showcase-copy { align-content: end; width: 100%; padding: 28px; }
  .charger-gallery { grid-template-columns: 1fr 1fr; }
  .map-toolbar { align-items: stretch; flex-direction: column; }
  .station-search { width: 100%; }
  .map-stage { min-height: 520px; }
  .map-legend { right: 10px; bottom: 10px; left: 10px; }
  .network-summary { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .inventory-chip { flex: 0 0 auto; }
  .phone-showcase { min-height: auto; align-items: center; flex-direction: column; transform: none; }
  .app-phone, .phone-center { width: min(100%, 300px); height: 590px; transform: none; }
  .phone-center { order: -1; }
  .ai-layout { grid-template-columns: 1fr; }
  .ai-core, .capability-stack { grid-column: 1; grid-row: auto; }
  .ai-core { width: 260px; }
  .ppob-services { grid-template-columns: 1fr 1fr; }
  .business-section { grid-template-columns: 1fr; padding-inline: 15px; }
  .business-visual { order: 2; }
  .business-capabilities { grid-template-columns: 1fr; order: 3; }
  .security-grid { grid-template-columns: 1fr; }
  .trust-facts { grid-template-columns: 1fr; }
  .trust-facts article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-facts article:last-child { border-bottom: 0; }
  .download-section { grid-template-columns: 1fr; padding: 30px; text-align: center; }
  .download-logo { margin-inline: auto; }
  .download-actions { grid-column: 1; align-items: stretch; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (max-width: 420px) {
  .hero-visual { min-height: 470px; }
  .charging-tower { transform: scale(.82); transform-origin: left bottom; }
  .hero-phone { right: -17px; transform: rotate(3deg) scale(.88); transform-origin: right top; }
  .vehicle-silhouette { width: 270px; transform: skewX(-6deg) scale(.88); transform-origin: right bottom; }
  .ppob-services { grid-template-columns: 1fr; }
  .charger-gallery { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}

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