@font-face {
  font-family: "Montserrat";
  src: url("/assets/montserrat-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/montserrat-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/montserrat-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/montserrat-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/montserrat-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800 900;
  font-display: swap;
}

:root {
  --ink: #10211c;
  --ink-soft: #263c35;
  --forest: #113d32;
  --green: #1fe58c;
  --green-dark: #08bd6d;
  --mint: #dffbef;
  --paper: #f6f8f6;
  --white: #ffffff;
  --muted: #6e7d77;
  --line: #dfe7e2;
  --orange: #ffb15b;
  --shadow: 0 24px 70px rgba(15, 49, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

.landing {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  width: min(1180px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 640;
  letter-spacing: -0.04em;
}

.brand sub {
  font-size: 10px;
  position: relative;
  bottom: -0.16em;
}

.brand b {
  font-weight: 850;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--green);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 25px rgba(31, 229, 140, 0.26);
}

.site-nav {
  display: flex;
  gap: 34px;
  color: #41534d;
  font-size: 14px;
  font-weight: 560;
}

.site-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--green-dark);
}

.button {
  border: 0;
  border-radius: 999px;
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 19px;
}

.button-primary {
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(24, 213, 127, 0.22);
}

.button-primary:hover {
  background: #3df09f;
  box-shadow: 0 17px 38px rgba(24, 213, 127, 0.3);
}

.button-outline {
  border: 1px solid #bfd0c9;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 48px;
  padding: 44px 0 82px;
}

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

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(31, 229, 140, 0.14);
}

.hero h1 {
  max-width: 620px;
  margin: 24px 0;
  color: var(--ink);
  font-size: clamp(58px, 6.3vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 790;
}

.hero h1 span {
  color: var(--green-dark);
}

.hero-text {
  max-width: 535px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 27px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.trust-line {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 28px;
  color: #5b6d66;
  font-size: 12px;
  font-weight: 620;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-line svg {
  color: var(--green-dark);
}

.hero-visual {
  min-height: 570px;
  position: relative;
  display: grid;
  place-items: center;
}

.map-surface {
  position: absolute;
  inset: 48px 0 16px 32px;
  overflow: hidden;
  border-radius: 46px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.83), rgba(231, 241, 236, 0.85)),
    repeating-linear-gradient(30deg, transparent 0 38px, rgba(18, 55, 44, 0.035) 38px 40px);
  box-shadow: inset 0 0 0 1px rgba(20, 64, 51, 0.07);
  transform: rotate(-2deg);
}

.map-road {
  height: 36px;
  position: absolute;
  background: #d9e4df;
  border: 8px solid #edf2ef;
  border-radius: 999px;
}

.road-one {
  width: 120%;
  left: -14%;
  top: 22%;
  transform: rotate(24deg);
}

.road-two {
  width: 95%;
  right: -17%;
  bottom: 26%;
  transform: rotate(-32deg);
}

.road-three {
  width: 88%;
  left: 22%;
  top: 51%;
  transform: rotate(78deg);
}

.map-pin {
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 12px;
  background: var(--green);
  color: var(--ink);
  display: grid;
  place-items: center;
  position: absolute;
  transform: rotate(-45deg);
  box-shadow: 0 10px 20px rgba(24, 160, 95, 0.24);
}

.map-pin svg {
  transform: rotate(45deg);
}

.pin-one {
  top: 24%;
  right: 15%;
}

.pin-two {
  bottom: 21%;
  left: 12%;
}

.map-pin.muted {
  width: 32px;
  height: 32px;
  background: #b9c8c2;
  color: white;
}

.location-chip {
  position: absolute;
  right: 26px;
  bottom: 30px;
  padding: 10px 13px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.87);
  color: #50625c;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(25, 53, 45, 0.1);
}

.phone-shell {
  width: 288px;
  min-height: 570px;
  position: relative;
  z-index: 4;
  padding: 13px 14px 14px;
  border: 7px solid var(--ink);
  border-radius: 43px;
  background: #f9fbfa;
  box-shadow:
    0 42px 90px rgba(11, 41, 32, 0.25),
    inset 0 0 0 1px #dce6e1;
  transform: rotate(3deg);
}

.phone-top {
  height: 25px;
  padding: 1px 7px;
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-size: 8px;
  font-weight: 760;
}

.phone-island {
  width: 70px;
  height: 19px;
  border-radius: 999px;
  background: var(--ink);
}

.phone-greeting {
  padding: 14px 7px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-greeting small,
.phone-greeting strong {
  display: block;
}

.phone-greeting small {
  color: #82908b;
  font-size: 9px;
}

.phone-greeting strong {
  margin-top: 3px;
  font-size: 12px;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  font-size: 9px;
  font-weight: 800;
}

.phone-map {
  height: 168px;
  position: relative;
  overflow: hidden;
  border-radius: 21px;
  background:
    linear-gradient(20deg, transparent 47%, rgba(255, 255, 255, 0.9) 48% 53%, transparent 54%),
    linear-gradient(105deg, transparent 43%, rgba(255, 255, 255, 0.9) 44% 51%, transparent 52%),
    #e3ece8;
}

.phone-map-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(16, 33, 28, 0.07) 1px, transparent 1px);
  background-size: 14px 14px;
}

.phone-pin {
  width: 34px;
  height: 34px;
  top: 61px;
  left: 115px;
}

.station-mini-card {
  margin: -20px 7px 0;
  padding: 15px;
  position: relative;
  z-index: 2;
  border: 1px solid #e1eae5;
  border-radius: 19px;
  background: white;
  box-shadow: 0 18px 35px rgba(26, 62, 51, 0.12);
}

.station-mini-top {
  display: flex;
  justify-content: space-between;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #159458;
  font-size: 8px;
  font-style: normal;
  font-weight: 760;
}

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

.station-mini-card h3 {
  margin: 6px 0 0;
  font-size: 11px;
  letter-spacing: -0.02em;
}

.distance {
  color: #8b9994;
  font-size: 8px;
}

.station-specs {
  margin: 13px 0;
  display: flex;
  gap: 5px;
}

.station-specs span {
  padding: 5px 7px;
  border-radius: 7px;
  color: #5d6f68;
  background: #f0f5f2;
  font-size: 7px;
  font-weight: 690;
}

.scan-button {
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--ink);
  background: var(--green);
  font-size: 8px;
  font-weight: 800;
}

.phone-nav {
  margin: 18px 7px 0;
  display: flex;
  justify-content: space-around;
  color: #9aa6a1;
  font-size: 7px;
}

.phone-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.phone-nav .active {
  color: var(--green-dark);
  font-weight: 760;
}

.floating-card {
  position: absolute;
  z-index: 6;
  padding: 13px 16px;
  border: 1px solid rgba(18, 61, 49, 0.09);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(15, 45, 36, 0.16);
  backdrop-filter: blur(10px);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: #84918d;
  font-size: 8px;
}

.floating-card strong {
  margin-top: 3px;
  color: var(--ink);
  font-size: 10px;
}

.floating-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green);
}

.float-payment {
  left: 13px;
  top: 155px;
}

.float-energy {
  right: -9px;
  bottom: 124px;
  color: var(--green-dark);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-one {
  width: 190px;
  height: 190px;
  right: -60px;
  top: 20px;
  background: rgba(31, 229, 140, 0.1);
}

.orb-two {
  width: 130px;
  height: 130px;
  left: 2px;
  bottom: 0;
  background: rgba(255, 177, 91, 0.13);
}

.proof-strip {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 10px;
  padding: 27px 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.68);
}

.proof-strip div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.proof-strip div:first-child {
  padding-left: 0;
  border: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -0.03em;
}

.proof-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-light {
  width: 100%;
  padding-inline: max(24px, calc((100% - 1180px) / 2));
  background: white;
}

.section-heading {
  max-width: 670px;
}

.section-heading.centered {
  margin: 0 auto 54px;
  text-align: center;
}

.section h2,
.final-cta h2 {
  margin: 16px 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 57px);
  line-height: 1.03;
  letter-spacing: -0.058em;
}

.section-heading p,
.app-copy > p,
.operator-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.step-card {
  min-height: 290px;
  padding: 30px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fbfcfb;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(16, 52, 41, 0.09);
}

.step-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: #c8d3ce;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
}

.step-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--mint);
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.app-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 100px;
}

.app-mosaic {
  min-height: 570px;
  padding: 54px;
  position: relative;
  border-radius: 38px;
  background:
    radial-gradient(circle at 15% 10%, rgba(31, 229, 140, 0.18), transparent 34%),
    var(--ink);
}

.mosaic-card {
  border-radius: 23px;
  background: white;
  box-shadow: 0 26px 70px rgba(4, 18, 14, 0.3);
}

.history-card {
  width: 365px;
  padding: 24px;
  position: absolute;
  top: 54px;
  left: 42px;
  transform: rotate(-4deg);
}

.mosaic-head {
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5ebe8;
  color: var(--ink);
  font-size: 12px;
  font-weight: 780;
}

.history-row {
  padding: 17px 0 6px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
}

.history-row.faded {
  opacity: 0.55;
}

.history-bolt {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--mint);
}

.history-row b,
.history-row small {
  display: block;
}

.history-row b {
  color: var(--ink);
  font-size: 10px;
}

.history-row small {
  margin-top: 4px;
  color: #8c9995;
  font-size: 8px;
}

.history-row strong {
  font-size: 10px;
}

.charge-card {
  width: 305px;
  padding: 25px;
  position: absolute;
  right: 34px;
  bottom: 39px;
  transform: rotate(3deg);
}

.charge-ring {
  width: 145px;
  height: 145px;
  margin: 18px auto 24px;
  padding: 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--green) 0 64%, #e7eeea 64% 100%);
}

.charge-ring::before {
  content: "";
  width: 117px;
  height: 117px;
  border-radius: 50%;
  position: absolute;
  background: white;
}

.charge-ring div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.charge-ring strong,
.charge-ring small {
  display: block;
}

.charge-ring strong {
  font-size: 27px;
  letter-spacing: -0.05em;
}

.charge-ring small {
  color: #8a9792;
  font-size: 8px;
}

.charge-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.charge-meta span {
  padding: 9px 4px;
  border-radius: 10px;
  background: #f3f6f4;
}

.charge-meta small,
.charge-meta b {
  display: block;
}

.charge-meta small {
  color: #8c9995;
  font-size: 7px;
}

.charge-meta b {
  margin-top: 4px;
  font-size: 9px;
}

.app-copy h2 {
  max-width: 530px;
}

.feature-list {
  margin: 30px 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #465a53;
  font-size: 13px;
  font-weight: 620;
}

.feature-list svg {
  color: var(--green-dark);
}

.store-row {
  display: flex;
  gap: 10px;
}

.store-badge {
  min-width: 145px;
  padding: 10px 18px;
  border: 1px solid #cad7d2;
  border-radius: 12px;
  color: var(--ink);
  background: white;
}

.store-badge small,
.store-badge strong {
  display: block;
}

.store-badge small {
  color: #7c8984;
  font-size: 8px;
}

.store-badge strong {
  margin-top: 2px;
  font-size: 13px;
}

.operator-section {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
  color: white;
  background: var(--forest);
}

.kicker-dark {
  color: var(--green);
}

.operator-copy h2 {
  color: white;
}

.operator-copy > p {
  color: #b8cbc4;
}

.operator-copy ul {
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.operator-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #d6e4df;
  font-size: 13px;
}

.operator-copy li svg {
  color: var(--green);
}

.dashboard-preview {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 27px;
  background: #f7f9f8;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.25);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
}

.preview-bar {
  height: 53px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  background: white;
}

.preview-bar > span {
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: #e2e9e5;
}

.mini-brand {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 840;
}

.mini-brand svg {
  color: var(--green-dark);
}

.preview-content {
  padding: 24px;
  display: grid;
  grid-template-columns: 0.72fr 0.72fr 1.3fr;
  grid-template-rows: 112px 228px;
  gap: 14px;
}

.preview-stat,
.preview-chart,
.preview-station {
  padding: 20px;
  border: 1px solid #e2e8e5;
  border-radius: 17px;
  background: white;
}

.preview-stat small,
.preview-stat strong {
  display: block;
}

.preview-stat small,
.preview-station small {
  color: #8b9893;
  font-size: 8px;
}

.preview-stat strong {
  margin: 11px 0 7px;
  color: var(--ink);
  font-size: 21px;
}

.preview-stat em {
  color: var(--green-dark);
  font-size: 8px;
  font-style: normal;
}

.preview-chart {
  grid-row: 1 / span 2;
  grid-column: 3;
  display: flex;
  flex-direction: column;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #6e7d77;
  font-size: 8px;
}

.chart-labels b {
  color: var(--ink);
  font-size: 10px;
}

.bars {
  height: 100%;
  padding-top: 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid #e7ece9;
}

.bars i {
  width: 22px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(var(--green), #7df2bb);
}

.preview-station {
  grid-column: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-station b {
  margin: 16px 0 7px;
  color: var(--ink);
  font-size: 15px;
}

.final-cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  max-width: 710px;
}

.site-footer {
  padding: 60px max(24px, calc((100% - 1180px) / 2)) 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  color: #b9cac4;
  background: var(--ink);
}

.brand-footer {
  color: white;
}

.site-footer p {
  margin: 15px 0 0;
  font-size: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
}

.site-footer > small {
  padding-top: 25px;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

/* Dashboard */

.dashboard {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  background: #f3f6f4;
}

.dashboard-sidebar {
  min-height: 100vh;
  padding: 24px 18px;
  position: sticky;
  top: 0;
  color: #bed0ca;
  background: var(--ink);
}

.dashboard-sidebar .brand {
  padding: 0 10px 30px;
  color: white;
}

.dashboard-nav {
  display: grid;
  gap: 5px;
}

.dashboard-nav a {
  min-height: 44px;
  padding: 0 13px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #a9bcb5;
  font-size: 12px;
  font-weight: 590;
}

.dashboard-nav a.active {
  color: var(--ink);
  background: var(--green);
}

.dashboard-nav a:not(.active):hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-bottom {
  position: absolute;
  right: 18px;
  bottom: 24px;
  left: 18px;
}

.simulator-badge {
  padding: 15px;
  border: 1px solid rgba(31, 229, 140, 0.17);
  border-radius: 13px;
  background: rgba(31, 229, 140, 0.07);
}

.simulator-badge span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 10px;
  font-weight: 760;
}

.simulator-badge p {
  margin: 7px 0 0;
  color: #8fa59d;
  font-size: 9px;
  line-height: 1.45;
}

.dashboard-main {
  min-width: 0;
}

.dashboard-header {
  height: 76px;
  padding: 0 30px;
  border-bottom: 1px solid #e1e8e4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
}

.dashboard-header h1 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.dashboard-header p {
  margin: 3px 0 0;
  color: #82908b;
  font-size: 10px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid #dfe6e2;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #596b64;
  background: white;
}

.admin-profile {
  padding-left: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.admin-profile .avatar {
  background: var(--green);
}

.admin-profile b,
.admin-profile small {
  display: block;
}

.admin-profile b {
  font-size: 10px;
}

.admin-profile small {
  color: #8d9995;
  font-size: 8px;
}

.dashboard-body {
  padding: 26px 30px 45px;
}

.dashboard-topline {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-topline h2 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.dashboard-topline span {
  margin-top: 5px;
  display: block;
  color: #87958f;
  font-size: 10px;
}

.live-chip {
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: #168a55 !important;
  background: #dcf9ec;
  font-size: 9px !important;
  font-weight: 760;
}

.live-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(8, 189, 109, 0.12);
}

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

.stat-card {
  min-height: 126px;
  padding: 18px;
  border: 1px solid #e0e7e3;
  border-radius: 16px;
  background: white;
}

.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #86938e;
  font-size: 9px;
  font-weight: 650;
}

.stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--mint);
}

.stat-card strong {
  margin-top: 18px;
  display: block;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.stat-card small {
  margin-top: 4px;
  display: block;
  color: #8d9a95;
  font-size: 8px;
}

.stat-card small.positive {
  color: #159458;
}

.dashboard-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  gap: 14px;
}

.panel-card {
  border: 1px solid #e0e7e3;
  border-radius: 17px;
  background: white;
}

.panel-head {
  min-height: 59px;
  padding: 0 19px;
  border-bottom: 1px solid #e7ece9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-head h3 {
  margin: 0;
  font-size: 12px;
}

.panel-head span,
.panel-head button {
  color: #84918c;
  font-size: 9px;
}

.panel-head button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.station-map {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(22deg, transparent 47%, #fff 48% 52%, transparent 53%),
    linear-gradient(110deg, transparent 45%, #fff 46% 51%, transparent 52%),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(38, 74, 63, 0.03) 28px 29px),
    #e7eeea;
}

.map-area-label {
  position: absolute;
  color: #9caaa5;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.area-one {
  left: 16%;
  top: 18%;
}

.area-two {
  right: 13%;
  bottom: 18%;
}

.station-map .map-pin {
  width: 31px;
  height: 31px;
}

.dash-pin-one {
  left: 33%;
  top: 43%;
}

.dash-pin-two {
  right: 21%;
  top: 28%;
}

.map-station-popover {
  width: 165px;
  padding: 12px;
  position: absolute;
  top: 48px;
  left: calc(33% + 24px);
  border-radius: 12px;
  background: white;
  box-shadow: 0 14px 34px rgba(21, 55, 44, 0.18);
}

.map-station-popover b,
.map-station-popover small {
  display: block;
}

.map-station-popover b {
  margin: 7px 0 4px;
  color: var(--ink);
  font-size: 9px;
}

.map-station-popover small {
  color: #8a9893;
  font-size: 7px;
}

.station-status-card {
  padding: 18px;
}

.station-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.station-title-row h4 {
  margin: 8px 0 5px;
  font-size: 14px;
}

.station-title-row p {
  margin: 0;
  color: #87948f;
  font-size: 9px;
}

.station-model {
  height: fit-content;
  padding: 6px 8px;
  border-radius: 7px;
  color: #62746d;
  background: #eff4f1;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
}

.connector-list {
  margin-top: 19px;
  display: grid;
  gap: 9px;
}

.connector-row {
  padding: 11px;
  border: 1px solid #e4eae7;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.connector-info {
  display: flex;
  align-items: center;
  gap: 9px;
}

.connector-icon {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--mint);
}

.connector-icon.charging {
  color: #b66a0c;
  background: #fff0dd;
}

.connector-info b,
.connector-info small {
  display: block;
}

.connector-info b {
  font-size: 9px;
}

.connector-info small {
  margin-top: 3px;
  color: #8b9893;
  font-size: 7px;
}

.connector-state {
  color: #159458;
  font-size: 8px;
  font-weight: 730;
}

.connector-state.charging {
  color: #b66a0c;
}

.simulation-box {
  margin-top: 15px;
  padding: 14px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
}

.simulation-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.simulation-top span {
  color: #a9bbb5;
  font-size: 8px;
}

.simulation-top strong {
  color: var(--green);
  font-size: 11px;
}

.progress-track {
  height: 6px;
  margin: 12px 0 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-track i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--green);
  transition: width 500ms ease;
}

.simulation-meta {
  display: flex;
  justify-content: space-between;
  color: #9db0a9;
  font-size: 7px;
}

.simulate-button {
  width: 100%;
  height: 37px;
  margin-top: 13px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: var(--green);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.simulate-button:disabled {
  cursor: default;
  opacity: 0.65;
}

.sessions-panel {
  margin-top: 14px;
}

.sessions-table {
  width: 100%;
  border-collapse: collapse;
}

.sessions-table th,
.sessions-table td {
  padding: 13px 19px;
  border-bottom: 1px solid #edf1ef;
  text-align: left;
  white-space: nowrap;
}

.sessions-table th {
  color: #8b9893;
  background: #fafbfa;
  font-size: 8px;
  font-weight: 690;
  text-transform: uppercase;
}

.sessions-table td {
  color: #52645d;
  font-size: 9px;
}

.sessions-table td strong {
  color: var(--ink);
}

.status-pill {
  padding: 5px 8px;
  border-radius: 999px;
  display: inline-block;
  color: #148a53;
  background: #ddf8ec;
  font-size: 7px;
  font-weight: 760;
}

.status-pill.charging {
  color: #a65d09;
  background: #ffefd9;
}

.status-pill.refunded {
  color: #5f6f69;
  background: #edf1ef;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.9fr;
    gap: 15px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .float-payment {
    left: -10px;
  }

  .float-energy {
    right: -20px;
  }

  .app-section,
  .operator-section {
    gap: 50px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-line {
    justify-content: center;
  }

  .hero-visual {
    min-height: 630px;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
    row-gap: 25px;
  }

  .proof-strip div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 220px;
  }

  .step-icon {
    margin-bottom: 32px;
  }

  .app-section,
  .operator-section {
    grid-template-columns: 1fr;
  }

  .app-copy {
    grid-row: 1;
  }

  .dashboard {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .dashboard-sidebar {
    padding-inline: 10px;
  }

  .dashboard-sidebar .brand > span:last-child,
  .dashboard-nav span,
  .sidebar-bottom {
    display: none;
  }

  .dashboard-sidebar .brand {
    justify-content: center;
    padding-inline: 0;
  }

  .dashboard-nav a {
    justify-content: center;
  }

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

@media (max-width: 580px) {
  .site-header,
  .hero,
  .proof-strip,
  .section,
  .final-cta {
    width: min(100% - 32px, 1180px);
  }

  .site-header .button {
    display: none;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .trust-line,
  .final-cta {
    flex-direction: column;
  }

  .hero-visual {
    min-height: 600px;
    transform: scale(0.9);
    margin-inline: -35px;
  }

  .map-surface {
    inset-inline: 0;
  }

  .proof-strip {
    padding: 24px;
  }

  .proof-strip strong {
    font-size: 14px;
  }

  .section {
    padding-block: 88px;
  }

  .section-light,
  .operator-section {
    width: 100%;
  }

  .app-mosaic {
    min-height: 500px;
    padding: 25px;
  }

  .history-card {
    width: calc(100% - 46px);
    left: 23px;
  }

  .charge-card {
    width: calc(100% - 55px);
    right: 24px;
  }

  .store-row,
  .footer-links {
    flex-wrap: wrap;
  }

  .dashboard {
    display: block;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-header {
    padding-inline: 17px;
  }

  .dashboard-header .admin-profile > div:last-child {
    display: none;
  }

  .dashboard-body {
    padding-inline: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .stat-card {
    min-height: 112px;
    padding: 14px;
  }

  .sessions-panel {
    overflow-x: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

/* Painel cPanel: autenticação */
.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 15%, rgba(101, 255, 184, 0.12), transparent 32%),
    radial-gradient(circle at 80% 84%, rgba(50, 176, 128, 0.12), transparent 28%),
    var(--forest);
}

.login-card {
  width: min(100%, 480px);
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 30px 90px rgba(0, 25, 19, 0.4);
}

.login-brand {
  width: max-content;
  margin-bottom: 42px;
  color: var(--forest);
}

.login-card h1 {
  margin: 8px 0 10px;
  color: var(--forest);
  font-size: clamp(34px, 7vw, 50px);
}

.login-card > p {
  margin: 0 0 26px;
  color: var(--slate);
  line-height: 1.65;
}

.login-card form,
.login-card label {
  display: grid;
  gap: 10px;
}

.login-card form {
  gap: 18px;
}

.login-card label {
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
}

.login-card input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8e5df;
  border-radius: 13px;
  outline: none;
  background: #fbfdfc;
  font: inherit;
}

.login-card input:focus {
  border-color: var(--mint-deep);
  box-shadow: 0 0 0 4px rgba(91, 255, 180, 0.18);
}

.login-button {
  border: 0;
  cursor: pointer;
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: #b03b38;
  font-size: 13px;
}

.demo-access {
  width: 100%;
  margin-top: 10px;
  padding: 13px;
  border: 0;
  background: transparent;
  color: var(--forest);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.security-note {
  display: block;
  margin-top: 16px;
  color: #7b8d86;
  text-align: center;
}

.panel-hidden {
  display: none !important;
}

@media (max-width: 520px) {
  .admin-login {
    padding: 14px;
  }

  .login-card {
    padding: 27px 22px;
    border-radius: 22px;
  }
}

/* Painel operacional V2 */
.ops-body {
  min-width: 320px;
  background:
    radial-gradient(circle at 92% 8%, rgba(31, 229, 140, 0.09), transparent 24rem),
    #f3f7f5;
}

.ops-login-card {
  position: relative;
  overflow: hidden;
}

.ops-login-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green), #84ffd0);
}

.ops-version-badge {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 7px 11px;
  border: 1px solid rgba(8, 189, 109, 0.18);
  border-radius: 999px;
  background: #effcf6;
  color: #087e4d;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.ops-login-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
  color: #768a82;
  font-size: 12px;
}

.ops-login-security span {
  color: var(--green-dark);
}

.ops-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
}

.ops-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 0, rgba(31, 229, 140, 0.14), transparent 18rem),
    #0d2c25;
  color: #eafff6;
  z-index: 30;
}

.ops-brand {
  padding: 0 10px;
  color: #fff;
}

.ops-workspace {
  margin: 30px 7px 20px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
}

.ops-workspace > span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
}

.ops-workspace div,
.ops-admin div,
.ops-user-cell div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.ops-workspace b {
  font-size: 13px;
}

.ops-workspace small {
  color: rgba(234, 255, 246, 0.58);
  font-size: 10px;
}

.ops-nav {
  display: grid;
  gap: 7px;
}

.ops-nav button {
  width: 100%;
  min-height: 45px;
  padding: 0 13px;
  border: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: rgba(234, 255, 246, 0.64);
  font-size: 13px;
  font-weight: 680;
  text-align: left;
  cursor: pointer;
  transition: 160ms ease;
}

.ops-nav button span {
  width: 23px;
  color: rgba(234, 255, 246, 0.45);
  font-size: 18px;
  text-align: center;
}

.ops-nav button:hover,
.ops-nav button.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ops-nav button.active {
  box-shadow: inset 3px 0 var(--green);
}

.ops-nav button.active span {
  color: var(--green);
}

.ops-sidebar-bottom {
  margin-top: auto;
  display: grid;
  gap: 14px;
}

.ops-equipment-state {
  padding: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
  border: 1px solid rgba(255, 190, 92, 0.14);
  border-radius: 15px;
  background: rgba(255, 178, 91, 0.06);
}

.ops-equipment-state i {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: #ffbd68;
  box-shadow: 0 0 0 5px rgba(255, 189, 104, 0.11);
}

.ops-equipment-state b {
  color: #ffe5c1;
  font-size: 11px;
}

.ops-equipment-state small {
  grid-column: 2;
  color: rgba(234, 255, 246, 0.48);
  font-size: 10px;
  line-height: 1.5;
}

.ops-logout {
  min-height: 40px;
  border: 0;
  background: transparent;
  color: rgba(234, 255, 246, 0.55);
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.ops-main {
  min-width: 0;
}

.ops-header {
  min-height: 82px;
  padding: 15px clamp(24px, 3.4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #dde8e2;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.ops-menu-toggle {
  display: none;
}

.ops-header-copy span,
.ops-panel-head span,
.ops-modal-head span {
  color: #748880;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.ops-header-copy h1 {
  margin: 4px 0 0;
  color: var(--forest);
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: -0.035em;
}

.ops-header-actions,
.ops-api-state,
.ops-admin {
  display: flex;
  align-items: center;
}

.ops-header-actions {
  gap: 20px;
}

.ops-api-state {
  gap: 8px;
  color: #557068;
  font-size: 11px;
  font-weight: 720;
}

.ops-api-state i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: 0 0 0 5px rgba(31, 229, 140, 0.12);
}

.ops-api-state.offline i {
  background: #e95e59;
  box-shadow: 0 0 0 5px rgba(233, 94, 89, 0.1);
}

.ops-admin {
  gap: 10px;
}

.ops-admin > span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.ops-admin b {
  max-width: 150px;
  overflow: hidden;
  color: var(--forest);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ops-admin small {
  color: #83948e;
  font-size: 10px;
}

.ops-content {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 3.5vw, 50px);
}

.ops-view {
  display: none;
  animation: ops-enter 220ms ease;
}

.ops-view.active {
  display: block;
}

@keyframes ops-enter {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
}

.ops-setup-banner {
  margin-bottom: 24px;
  padding: clamp(20px, 3vw, 30px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-radius: 21px;
  background:
    linear-gradient(110deg, rgba(31, 229, 140, 0.09), transparent 50%),
    var(--forest);
  color: #fff;
  box-shadow: 0 18px 42px rgba(16, 57, 46, 0.13);
}

.ops-setup-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--ink);
  font-size: 23px;
}

.ops-setup-banner h2 {
  margin: 0 0 5px;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.025em;
}

.ops-setup-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.6;
}

.ops-primary-action,
.ops-secondary,
.ops-empty button,
.ops-connector-card button {
  min-height: 43px;
  padding: 0 17px;
  border: 0;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.ops-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--green);
  color: var(--forest);
  box-shadow: 0 10px 25px rgba(31, 229, 140, 0.14);
}

.ops-primary-action:hover {
  background: #46eca3;
  transform: translateY(-1px);
}

.ops-primary-action:disabled {
  opacity: 0.6;
  cursor: wait;
}

.ops-stat-grid {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ops-stat,
.ops-panel,
.ops-integration {
  border: 1px solid #e0e9e5;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(14, 50, 40, 0.045);
}

.ops-stat {
  min-width: 0;
  min-height: 135px;
  padding: 20px;
  border-radius: 18px;
}

.ops-stat > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ops-stat span,
.ops-stat small {
  color: #74867f;
  font-size: 10px;
  font-weight: 680;
}

.ops-stat i {
  min-width: 31px;
  height: 31px;
  padding: 0 7px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f1f6f3;
  color: #5c736b;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.ops-stat i.mint {
  background: var(--mint);
  color: #059058;
}

.ops-stat strong {
  margin: 15px 0 3px;
  display: block;
  overflow: hidden;
  color: var(--forest);
  font-size: clamp(22px, 2.6vw, 31px);
  letter-spacing: -0.055em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ops-overview-grid {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  gap: 16px;
}

.ops-panel {
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
}

.ops-panel-head {
  min-height: 69px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e7eeeb;
}

.ops-panel-head h3 {
  margin: 4px 0 0;
  color: var(--forest);
  font-size: 15px;
}

.ops-panel-head small {
  color: #899992;
  font-size: 10px;
}

.ops-network-map {
  position: relative;
  min-height: 325px;
  overflow: hidden;
  background:
    linear-gradient(28deg, transparent 47%, rgba(36, 89, 72, 0.08) 48%, rgba(36, 89, 72, 0.08) 50%, transparent 51%) 0 0 / 92px 92px,
    linear-gradient(-34deg, transparent 47%, rgba(36, 89, 72, 0.07) 48%, rgba(36, 89, 72, 0.07) 50%, transparent 51%) 10px 10px / 120px 120px,
    #edf4f0;
}

.ops-network-map::after {
  content: "REDE CO2 CHARGER";
  position: absolute;
  right: 16px;
  bottom: 13px;
  color: rgba(17, 61, 50, 0.28);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.ops-map-empty,
.ops-inline-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ops-map-empty {
  position: absolute;
  inset: 0;
  z-index: 2;
  flex-direction: column;
  gap: 8px;
  color: #71877f;
  text-align: center;
}

.ops-map-empty span {
  width: 45px;
  height: 45px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 12px 25px rgba(17, 61, 50, 0.1);
}

.ops-map-empty b {
  color: var(--forest);
  font-size: 13px;
}

.ops-map-empty small {
  max-width: 260px;
  font-size: 10px;
  line-height: 1.5;
}

.ops-map-pin-v2 {
  position: absolute;
  z-index: 4;
  width: 33px;
  height: 33px;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 8px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--forest);
  font-size: 12px;
  box-shadow: 0 8px 18px rgba(15, 59, 47, 0.2);
  transform: rotate(-45deg);
}

.ops-map-pin-v2::after {
  content: "⚡";
  transform: rotate(45deg);
}

.ops-map-pin-v2.offline,
.ops-map-pin-v2.maintenance {
  background: #ffb06b;
}

.ops-map-pin-v2.awaiting_equipment {
  background: #dfe9e4;
}

.ops-progress-panel .ops-panel-head {
  border-bottom: 0;
}

.ops-check-list {
  padding: 2px 20px 20px;
  display: grid;
  gap: 4px;
}

.ops-check-list > div {
  min-height: 54px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
  border-top: 1px solid #edf2ef;
}

.ops-check-list > div:first-child {
  border-top: 0;
}

.ops-check-list > div > span {
  grid-row: 1 / 3;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #e8fbf2;
  color: #079259;
  font-size: 10px;
  font-weight: 900;
}

.ops-check-list > div.pending > span {
  background: #fff5e8;
  color: #c67824;
}

.ops-check-list b {
  color: var(--forest);
  font-size: 11px;
}

.ops-check-list small {
  color: #82928c;
  font-size: 9px;
}

.ops-station-cards {
  padding: 17px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ops-station-card {
  padding: 16px;
  border: 1px solid #e4ece8;
  border-radius: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  background: #fbfdfc;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.ops-station-card:hover {
  border-color: #b7daca;
  box-shadow: 0 10px 24px rgba(17, 61, 50, 0.07);
}

.ops-station-symbol {
  width: 37px;
  height: 37px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: #058753;
}

.ops-station-card > div {
  min-width: 0;
}

.ops-station-card b,
.ops-station-card small {
  display: block;
}

.ops-station-card b {
  margin: 8px 0 4px;
  overflow: hidden;
  color: var(--forest);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ops-station-card small {
  color: #83948d;
  font-size: 9px;
}

.ops-status,
.ops-visibility {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ops-status {
  background: #ecf2ef;
  color: #60736c;
}

.ops-status.available,
.ops-status.completed {
  background: #e5faef;
  color: #078451;
}

.ops-status.charging,
.ops-status.paid {
  background: #e8f4ff;
  color: #1d70a8;
}

.ops-status.awaiting_equipment,
.ops-status.reserved,
.ops-status.authorized {
  background: #fff4e3;
  color: #b06b20;
}

.ops-status.offline,
.ops-status.maintenance,
.ops-status.failed,
.ops-status.cancelled {
  background: #fff0ee;
  color: #bc4e48;
}

.ops-page-toolbar {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.ops-page-toolbar h2 {
  margin: 0 0 5px;
  color: var(--forest);
  font-size: clamp(23px, 3vw, 32px);
  letter-spacing: -0.045em;
}

.ops-page-toolbar p {
  margin: 0;
  color: #70827b;
  font-size: 12px;
}

.ops-filter-row {
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
}

.ops-search {
  width: min(430px, 100%);
  min-height: 45px;
  padding: 0 15px;
  border: 1px solid #dde8e3;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #799087;
}

.ops-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--forest);
  font-size: 12px;
}

.ops-table-panel {
  min-height: 280px;
}

.ops-table-wrap {
  width: 100%;
  overflow: auto;
}

.ops-table {
  width: 100%;
  border-collapse: collapse;
}

.ops-table th,
.ops-table td {
  padding: 15px 17px;
  border-bottom: 1px solid #e9efec;
  color: #435c53;
  font-size: 11px;
  text-align: left;
  white-space: nowrap;
}

.ops-table th {
  background: #f8fbf9;
  color: #7b8d86;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ops-table tbody tr:hover {
  background: #fbfdfc;
}

.ops-table td > small {
  margin-top: 4px;
  display: block;
  color: #869790;
  font-size: 9px;
}

.ops-table-station,
.ops-user-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ops-table-station > span,
.ops-user-cell > span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #e7f9f0;
  color: #078954;
  font-size: 11px;
  font-weight: 850;
}

.ops-table-station b,
.ops-table-station small,
.ops-user-cell b,
.ops-user-cell small {
  max-width: 210px;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
}

.ops-table-station b,
.ops-user-cell b {
  color: var(--forest);
}

.ops-table-station small,
.ops-user-cell small {
  color: #84968f;
  font-size: 9px;
}

.ops-visibility {
  background: #f1f4f3;
  color: #71827c;
}

.ops-visibility.published {
  background: #e5faef;
  color: #078451;
}

.ops-visibility.hidden {
  background: #fff1ee;
  color: #b75850;
}

.ops-row-actions {
  display: flex;
  gap: 5px;
}

.ops-row-actions button {
  width: 31px;
  height: 31px;
  border: 1px solid #e0e9e5;
  border-radius: 9px;
  background: #fff;
  color: #5f776e;
  cursor: pointer;
}

.ops-row-actions button:hover {
  border-color: #a9d8c2;
  color: #078954;
}

.ops-empty {
  min-height: 270px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #7b8f87;
  text-align: center;
}

.ops-empty > span {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: #078954;
  font-size: 21px;
}

.ops-empty h3 {
  margin: 14px 0 5px;
  color: var(--forest);
  font-size: 16px;
}

.ops-empty p {
  margin: 0 0 15px;
  font-size: 11px;
}

.ops-empty button {
  background: var(--forest);
  color: #fff;
}

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

.ops-integration {
  min-height: 260px;
  padding: 24px;
  border-radius: 20px;
}

.ops-integration-icon {
  width: 49px;
  height: 49px;
  margin-bottom: 22px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #e5faef;
  color: #078451;
  font-size: 13px;
  font-weight: 900;
}

.ops-integration.pending .ops-integration-icon {
  background: #fff4e5;
  color: #b87326;
}

.ops-integration-state {
  color: #078451;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ops-integration.pending .ops-integration-state {
  color: #b87326;
}

.ops-integration h3 {
  margin: 9px 0 8px;
  color: var(--forest);
  font-size: 17px;
}

.ops-integration p {
  min-height: 54px;
  margin: 0 0 18px;
  color: #71847c;
  font-size: 11px;
  line-height: 1.65;
}

.ops-integration small {
  color: #879790;
  font-size: 9px;
}

.ops-modal {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100vh - 34px);
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(8, 42, 33, 0.28);
}

.ops-modal::backdrop {
  background: rgba(8, 35, 28, 0.62);
  backdrop-filter: blur(5px);
}

.ops-modal-card {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.ops-modal-head {
  padding: 24px 26px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #e6ece9;
}

.ops-modal-head h2 {
  margin: 5px 0 3px;
  color: var(--forest);
  font-size: 21px;
  letter-spacing: -0.035em;
}

.ops-modal-head p {
  margin: 0;
  color: #7c8e87;
  font-size: 11px;
}

.ops-modal-head > button {
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 11px;
  background: #f0f5f2;
  color: #5c7169;
  font-size: 21px;
  cursor: pointer;
}

.ops-form-scroll {
  max-height: calc(100vh - 210px);
  padding: 22px 26px;
  overflow: auto;
}

.ops-form-scroll fieldset {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.ops-form-scroll legend {
  width: 100%;
  margin-bottom: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9efec;
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.ops-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ops-form-grid label,
.ops-inline-form label {
  display: grid;
  gap: 7px;
  color: #526a61;
  font-size: 10px;
  font-weight: 760;
}

.ops-form-grid label.full,
.ops-form-help.full,
.ops-check.full {
  grid-column: 1 / -1;
}

.ops-form-grid input,
.ops-form-grid select,
.ops-form-grid textarea,
.ops-inline-form input,
.ops-inline-form select {
  width: 100%;
  min-height: 43px;
  padding: 10px 12px;
  border: 1px solid #dce7e2;
  border-radius: 11px;
  outline: 0;
  background: #fbfdfc;
  color: var(--forest);
  font: inherit;
  font-size: 12px;
}

.ops-form-grid textarea {
  min-height: 84px;
  resize: vertical;
}

.ops-form-grid input:focus,
.ops-form-grid select:focus,
.ops-form-grid textarea:focus,
.ops-inline-form input:focus,
.ops-inline-form select:focus {
  border-color: #62dca4;
  box-shadow: 0 0 0 3px rgba(31, 229, 140, 0.1);
}

.ops-form-help {
  margin: -5px 0 0;
  color: #83948d;
  font-size: 9px;
}

.ops-check {
  min-height: 43px;
  padding: 0 13px;
  border: 1px solid #e2eae6;
  border-radius: 11px;
  display: flex !important;
  align-items: center;
  gap: 9px !important;
  background: #f8fbf9;
}

.ops-check input {
  width: 16px;
  min-height: 16px;
}

.ops-modal-footer {
  padding: 15px 26px 22px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  background: #fff;
}

.ops-secondary {
  border: 1px solid #dce7e2;
  background: #fff;
  color: #5c7169;
}

.ops-connectors-card {
  min-height: 460px;
}

.ops-connectors-list {
  display: grid;
  gap: 9px;
}

.ops-connector-card {
  padding: 13px;
  border: 1px solid #e1ebe6;
  border-radius: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: #fbfdfc;
}

.ops-connector-number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--green);
  font-weight: 900;
}

.ops-connector-card > div {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.ops-connector-card b,
.ops-connector-card small {
  overflow: hidden;
  color: var(--forest);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ops-connector-card small {
  color: #82958d;
  font-size: 9px;
}

.ops-connector-card button {
  min-height: 34px;
  padding: 0 11px;
  background: #fff0ee;
  color: #b95650;
}

.ops-inline-form {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5ede9;
  display: grid;
  grid-template-columns: 0.65fr 1.2fr 1fr auto;
  align-items: end;
  gap: 10px;
}

.ops-inline-empty {
  min-height: 100px;
  gap: 11px;
  color: #81938c;
}

.ops-inline-empty > span {
  width: 37px;
  height: 37px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #edf7f2;
  color: #079058;
}

.ops-inline-empty div {
  display: grid;
  gap: 3px;
}

.ops-inline-empty b {
  color: var(--forest);
  font-size: 11px;
}

.ops-inline-empty small {
  font-size: 9px;
}

.ops-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: min(390px, calc(100% - 32px));
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--forest);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 18px 42px rgba(10, 44, 35, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 180ms ease;
}

.ops-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.ops-toast.error {
  background: #9e3d39;
}

@media (max-width: 1120px) {
  .ops-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-station-cards,
  .ops-integration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .ops-shell {
    display: block;
  }

  .ops-sidebar {
    position: fixed;
    left: 0;
    transform: translateX(-102%);
    transition: transform 200ms ease;
    box-shadow: 24px 0 55px rgba(5, 32, 24, 0.28);
  }

  .ops-menu-open .ops-sidebar {
    transform: translateX(0);
  }

  .ops-menu-toggle {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 1px solid #dfe8e4;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--forest);
  }

  .ops-overview-grid {
    grid-template-columns: 1fr;
  }

  .ops-progress-panel {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .ops-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .ops-header-copy span,
  .ops-api-state,
  .ops-admin div {
    display: none;
  }

  .ops-content {
    padding: 20px 14px 38px;
  }

  .ops-setup-banner {
    grid-template-columns: auto 1fr;
  }

  .ops-setup-banner .ops-primary-action {
    grid-column: 1 / -1;
  }

  .ops-stat-grid,
  .ops-station-cards,
  .ops-integration-grid {
    grid-template-columns: 1fr;
  }

  .ops-stat {
    min-height: 120px;
  }

  .ops-page-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .ops-page-toolbar .ops-primary-action {
    width: 100%;
  }

  .ops-modal {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 17px;
  }

  .ops-modal-card {
    border-radius: 17px;
  }

  .ops-modal-head,
  .ops-form-scroll {
    padding-right: 17px;
    padding-left: 17px;
  }

  .ops-modal-footer {
    padding-right: 17px;
    padding-left: 17px;
  }

  .ops-form-grid,
  .ops-inline-form {
    grid-template-columns: 1fr;
  }

  .ops-form-grid label.full,
  .ops-form-help.full,
  .ops-check.full {
    grid-column: auto;
  }

  .ops-inline-form .ops-primary-action {
    width: 100%;
  }

  .ops-connector-card {
    grid-template-columns: auto 1fr;
  }

  .ops-connector-card button {
    grid-column: 1 / -1;
  }
}

/* Admin V3.3: catálogo modular, descoberta e gateway OCPP */
.ops-equipment-hero {
  min-height: 172px;
  margin-bottom: 16px;
  padding: 27px 30px;
  border: 1px solid rgba(63, 238, 151, 0.2);
  border-radius: 22px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, rgba(38, 224, 138, 0.22), transparent 30%),
    linear-gradient(125deg, #0b332a, #0d4a3b);
  box-shadow: 0 18px 42px rgba(9, 54, 42, 0.14);
}

.ops-equipment-product-icon {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(98, 245, 169, 0.25);
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: var(--ops-green);
  background: rgba(255, 255, 255, 0.08);
  font-size: 31px;
  font-weight: 800;
}

.ops-equipment-product-copy > span {
  color: #70ecad;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.ops-equipment-product-copy h3 {
  margin: 8px 0 6px;
  font-size: clamp(21px, 2.4vw, 29px);
  letter-spacing: -0.04em;
}

.ops-equipment-product-copy p {
  max-width: 710px;
  margin: 0;
  color: rgba(236, 249, 243, 0.76);
  font-size: 13px;
  line-height: 1.6;
}

.ops-equipment-product-copy > div {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ops-equipment-product-copy > div b {
  padding: 6px 9px;
  border: 1px solid rgba(119, 241, 180, 0.16);
  border-radius: 999px;
  color: #d9f8e8;
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
}

.ops-equipment-hero > a {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(129, 241, 186, 0.28);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8fff3;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.ops-equipment-hero > a:hover {
  border-color: rgba(129, 241, 186, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.ops-v3 .ops-integration-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.ops-v3 .ops-integration {
  min-height: 238px;
}

.ops-equipment-grid,
.ops-equipment-log-grid {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 16px;
}

.ops-discovery-panel {
  margin-bottom: 16px;
  border-color: #cfe9dc;
  background: linear-gradient(180deg, #ffffff, #fbfefc);
}

.ops-discovery-intro {
  margin: -5px 20px 16px;
  color: #5b7067;
  font-size: 12px;
  line-height: 1.6;
}

.ops-v3 .ops-discovery-table {
  min-width: 900px;
  table-layout: fixed;
}

.ops-discovery-table th:nth-child(1) { width: 20%; }
.ops-discovery-table th:nth-child(2) { width: 25%; }
.ops-discovery-table th:nth-child(3) { width: 16%; }
.ops-discovery-table th:nth-child(4) { width: 25%; }
.ops-discovery-table th:nth-child(5) { width: 14%; }

.ops-discovery-table td,
.ops-discovery-table td b,
.ops-discovery-table td small {
  overflow-wrap: anywhere;
}

.ops-discovery-select {
  width: 100%;
  min-height: 39px;
  padding: 0 30px 0 10px;
  border: 1px solid #d6e5de;
  border-radius: 9px;
  color: #29493d;
  background: #f8fbf9;
  font: 600 11px/1.3 "Montserrat", "Segoe UI", sans-serif;
}

.ops-link-equipment-button {
  width: 100%;
  min-height: 39px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  color: #073e2a;
  background: var(--ops-green);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.ops-link-equipment-button:hover {
  filter: brightness(0.96);
}

.ops-link-equipment-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ops-equipment-log-grid {
  margin-top: 16px;
  margin-bottom: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ops-equipment-models {
  padding: 12px;
  display: grid;
  gap: 9px;
}

.ops-equipment-model-card {
  padding: 15px;
  border: 1px solid #e1eae6;
  border-radius: 14px;
  background: #fbfdfc;
}

.ops-equipment-model-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ops-equipment-model-card > div:first-child > span {
  width: 39px;
  height: 39px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #0c7f4c;
  background: #dff8eb;
  font-size: 12px;
  font-weight: 800;
}

.ops-equipment-model-card b,
.ops-equipment-model-card small {
  display: block;
}

.ops-equipment-model-card b {
  color: var(--ops-ink);
  font-size: 13px;
}

.ops-equipment-model-card small {
  margin-top: 4px;
  color: #657970;
  font-size: 11px;
}

.ops-equipment-model-card p {
  margin: 12px 0;
  color: #4f655c;
  font-size: 12px;
  line-height: 1.5;
}

.ops-equipment-model-card > div:last-child {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.ops-equipment-model-card i,
.ops-equipment-model-card em {
  padding: 5px 7px;
  border-radius: 7px;
  color: #466158;
  background: #edf3f0;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
}

.ops-equipment-model-card em {
  margin-left: auto;
  color: #0b7a49;
  background: #ddf8ea;
}

.ops-equipment-model-card em.experimental {
  color: #9a6119;
  background: #fff0db;
}

.ops-provision-card {
  padding-bottom: 17px;
}

.ops-provision-card > label {
  margin: 0 17px 10px;
  padding: 6px 6px 6px 13px;
  border: 1px solid #dfe9e5;
  border-radius: 11px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  color: #50665d;
  background: #f8fbf9;
  font-size: 10px;
  font-weight: 750;
}

.ops-provision-card > label input {
  min-width: 0;
  padding: 5px 0 0;
  border: 0;
  grid-column: 1;
  color: #173c31;
  background: transparent;
  font: 600 11px/1.35 "Montserrat", "Segoe UI", sans-serif;
  outline: 0;
}

.ops-provision-card > label button {
  min-height: 34px;
  padding: 0 11px;
  border: 0;
  border-radius: 8px;
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #087446;
  background: #ddf7ea;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.ops-provision-card > p {
  margin: 4px 18px 0;
  color: #657970;
  font-size: 11px;
  line-height: 1.55;
}

.ops-equipment-connection {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #556b62;
  font-size: 11px;
  font-weight: 750;
}

.ops-equipment-connection i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b9b95;
}

.ops-equipment-connection.connected {
  color: #087949;
}

.ops-equipment-connection.connected i {
  background: #17be75;
  box-shadow: 0 0 0 4px rgba(23, 190, 117, 0.12);
}

.ops-equipment-connection.awaiting {
  color: #9c651f;
}

.ops-equipment-connection.awaiting i {
  background: #efa53a;
}

.ops-diagnostic-button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #d6e5de;
  border-radius: 9px;
  color: #116b45;
  background: #f5faf7;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.ops-diagnostic-button:hover {
  border-color: #a8d7c0;
  background: #e9f8f0;
}

.ops-diagnostic-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ops-equipment-actions {
  display: grid;
  gap: 6px;
}

.ops-command-button {
  min-height: 34px;
  padding: 0 11px;
  border: 0;
  border-radius: 9px;
  color: #073e2a;
  background: #54e89a;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.ops-command-button:hover {
  filter: brightness(0.96);
}

.ops-command-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ops-command-warning {
  margin-top: 16px;
  padding: 15px 17px;
  border: 1px solid #cfe7dc;
  border-radius: 13px;
  color: #2d5747;
  background: #effaf4;
}

.ops-command-warning.attention {
  border-color: #efcf9f;
  color: #744816;
  background: #fff6e9;
}

.ops-command-warning b {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.ops-command-warning p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.ops-v3 .ops-equipment-table {
  min-width: 850px;
  table-layout: fixed;
}

.ops-equipment-table th:nth-child(1) { width: 21%; }
.ops-equipment-table th:nth-child(2) { width: 18%; }
.ops-equipment-table th:nth-child(3) { width: 18%; }
.ops-equipment-table th:nth-child(4) { width: 12%; }
.ops-equipment-table th:nth-child(5) { width: 15%; }
.ops-equipment-table th:nth-child(6) { width: 16%; }

.ops-equipment-table td,
.ops-equipment-table td b,
.ops-equipment-table td small {
  overflow-wrap: anywhere;
}

.ops-equipment-table .ops-diagnostic-button {
  width: 100%;
  min-height: 38px;
  white-space: normal;
}

.ops-equipment-timeline {
  max-height: 390px;
  padding: 8px 14px 14px;
  overflow-y: auto;
}

.ops-equipment-log {
  min-height: 62px;
  padding: 10px 2px;
  border-bottom: 1px solid #edf2ef;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
}

.ops-equipment-log:last-child {
  border-bottom: 0;
}

.ops-equipment-log > span {
  width: 31px;
  height: 31px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #0b7a49;
  background: #def8eb;
  font-size: 11px;
  font-weight: 800;
}

.ops-equipment-log > span.failed,
.ops-equipment-log > span.rejected,
.ops-equipment-log > span.fault {
  color: #b33f49;
  background: #ffeaec;
}

.ops-equipment-log > span.queued,
.ops-equipment-log > span.sent {
  color: #9a621b;
  background: #fff0dc;
}

.ops-equipment-log b,
.ops-equipment-log small {
  display: block;
}

.ops-equipment-log b {
  color: var(--ops-ink);
  font-size: 12px;
}

.ops-equipment-log small {
  margin-top: 4px;
  color: #657970;
  font-size: 10px;
}

.ops-equipment-log time {
  color: #6c7f77;
  font-size: 9px;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .ops-v3 .ops-integration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-equipment-hero {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .ops-equipment-hero > a {
    width: max-content;
    grid-column: 2;
  }

  .ops-equipment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ops-equipment-hero {
    padding: 23px;
    grid-template-columns: 1fr;
  }

  .ops-equipment-product-icon {
    width: 58px;
    height: 58px;
  }

  .ops-equipment-hero > a {
    width: 100%;
    grid-column: auto;
    justify-content: center;
  }

  .ops-v3 .ops-integration-grid,
  .ops-equipment-log-grid {
    grid-template-columns: 1fr;
  }

  .ops-equipment-model-card em {
    margin-left: 0;
  }
}

/* Montserrat typography system */
body {
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
.brand {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  letter-spacing: -0.035em;
}

.site-nav,
.button {
  font-size: 15px;
}

.ops-nav button {
  font-size: 14px;
}

.ops-workspace b,
.ops-equipment-state b,
.ops-setup-banner p,
.ops-stat span,
.ops-stat small,
.ops-panel-head small,
.ops-map-empty b,
.ops-map-empty small,
.ops-check-list b,
.ops-check-list small,
.ops-station-card small,
.ops-page-toolbar p,
.ops-table th,
.ops-table td,
.ops-table td > small,
.ops-empty p,
.ops-integration p,
.ops-integration small,
.ops-form-grid label,
.ops-inline-form label,
.ops-form-help,
.ops-connector-card b,
.ops-connector-card small,
.ops-inline-empty b,
.ops-inline-empty small {
  font-size: 12px;
  line-height: 1.5;
}

.ops-workspace small,
.ops-header-copy span,
.ops-panel-head span,
.ops-modal-head span,
.ops-status,
.ops-visibility,
.ops-integration-state,
.ops-form-scroll legend {
  font-size: 10px;
  line-height: 1.45;
}

.ops-api-state,
.ops-admin b,
.ops-admin small,
.ops-primary-action,
.ops-secondary,
.ops-empty button,
.ops-connector-card button,
.ops-toast {
  font-size: 12px;
}

.ops-table-station small,
.ops-user-cell small {
  font-size: 11px;
}

/* Co2 Charger Admin V3 */
.ops-v3 {
  --ops-ink: #12251f;
  --ops-forest: #073b30;
  --ops-forest-deep: #042a22;
  --ops-green: #20e38b;
  --ops-green-dark: #0fac68;
  --ops-canvas: #f3f7f5;
  --ops-card: #ffffff;
  --ops-muted: #71827b;
  --ops-line: #e1eae6;
  --ops-blue: #3988f4;
  --ops-amber: #f4a73d;
  --ops-red: #ea5b65;
  min-height: 100vh;
  background: var(--ops-canvas);
  color: var(--ops-ink);
}

.ops-v3 button,
.ops-v3 input,
.ops-v3 select,
.ops-v3 textarea {
  font-family: inherit;
}

.ops-v3 button:focus-visible,
.ops-v3 input:focus-visible,
.ops-v3 select:focus-visible,
.ops-v3 textarea:focus-visible {
  outline: 3px solid rgba(32, 227, 139, 0.25);
  outline-offset: 2px;
}

.ops-v3 .panel-hidden {
  display: none !important;
}

.ops-v3 .admin-login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(430px, 0.78fr);
  background: #fff;
}

.ops-login-showcase {
  min-height: 100vh;
  padding: 48px clamp(45px, 6vw, 92px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(32, 227, 139, 0.18), transparent 25rem),
    linear-gradient(145deg, #073c31 0%, #042a22 58%, #031f19 100%);
}

.ops-login-logo,
.ops-login-mobile-brand,
.ops-v3 .ops-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.ops-login-logo {
  width: fit-content;
  position: relative;
  z-index: 2;
  color: #fff;
}

.ops-login-logo sub,
.ops-login-mobile-brand sub,
.ops-v3 .ops-brand sub {
  font-size: 9px;
}

.ops-login-logo b,
.ops-login-mobile-brand b,
.ops-v3 .ops-brand b {
  font-weight: 800;
}

.ops-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--ops-green);
  color: var(--ops-forest-deep);
  font-size: 23px;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(32, 227, 139, 0.2);
}

.ops-login-copy {
  max-width: 690px;
  margin: auto 0;
  position: relative;
  z-index: 2;
}

.ops-login-kicker,
.ops-login-step,
.ops-kicker {
  color: var(--ops-green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.ops-login-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ops-green);
}

.ops-login-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(32, 227, 139, 0.12);
}

.ops-login-copy h1 {
  max-width: 680px;
  margin: 24px 0 20px;
  color: #fff;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.ops-login-copy h1 em {
  color: var(--ops-green);
  font-style: normal;
}

.ops-login-copy > p {
  max-width: 580px;
  margin: 0;
  color: rgba(231, 247, 240, 0.68);
  font-size: 16px;
  line-height: 1.75;
}

.ops-login-features {
  max-width: 620px;
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ops-login-features article {
  min-width: 0;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.ops-login-features article > span {
  width: 35px;
  height: 35px;
  margin-bottom: 20px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(32, 227, 139, 0.13);
  color: var(--ops-green);
  font-size: 14px;
  font-weight: 800;
}

.ops-login-features b,
.ops-login-features small {
  display: block;
}

.ops-login-features b {
  color: #fff;
  font-size: 12px;
}

.ops-login-features small {
  margin-top: 6px;
  color: rgba(225, 240, 234, 0.5);
  font-size: 10px;
  line-height: 1.55;
}

.ops-login-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(218, 237, 230, 0.35);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.ops-login-orb {
  position: absolute;
  border: 1px solid rgba(32, 227, 139, 0.08);
  border-radius: 50%;
}

.ops-login-orb.one {
  width: 620px;
  height: 620px;
  right: -310px;
  bottom: -350px;
}

.ops-login-orb.two {
  width: 430px;
  height: 430px;
  right: -210px;
  bottom: -255px;
  box-shadow: 0 0 90px rgba(32, 227, 139, 0.07);
}

.ops-login-access {
  min-height: 100vh;
  padding: 45px clamp(35px, 5vw, 76px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.ops-login-mobile-brand {
  display: none;
  color: var(--ops-forest);
}

.ops-login-form-wrap {
  width: min(100%, 430px);
  margin: auto;
}

.ops-login-step {
  display: block;
  margin-bottom: 15px;
}

.ops-login-form-wrap h2 {
  margin: 0;
  color: var(--ops-ink);
  font-size: 35px;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.ops-login-form-wrap > p {
  margin: 10px 0 32px;
  color: var(--ops-muted);
  font-size: 13px;
  line-height: 1.65;
}

.ops-login-form {
  display: grid;
  gap: 18px;
}

.ops-login-form > label {
  display: grid;
  gap: 8px;
  color: #3e544c;
  font-size: 12px;
  font-weight: 700;
}

.ops-login-field {
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid #dbe6e1;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #f9fbfa;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ops-login-field:focus-within {
  border-color: var(--ops-green-dark);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 172, 104, 0.08);
}

.ops-login-field i {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #e9f3ee;
  color: var(--ops-green-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.ops-login-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ops-ink);
  font-size: 13px;
}

.ops-login-field input::placeholder {
  color: #a1aea9;
}

.ops-login-field button {
  padding: 5px;
  border: 0;
  background: transparent;
  color: var(--ops-green-dark);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.ops-login-submit {
  min-height: 56px;
  margin-top: 5px;
  padding: 0 18px 0 21px;
  border: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--ops-forest);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(7, 59, 48, 0.16);
  transition: transform 160ms ease, background 160ms ease;
}

.ops-login-submit:hover {
  transform: translateY(-2px);
  background: #0a4a3c;
}

.ops-login-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.ops-login-submit b {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--ops-green);
  color: var(--ops-forest-deep);
  font-size: 17px;
}

.ops-login-form .form-message {
  min-height: 18px;
  margin: -5px 0 0;
  color: var(--ops-red);
  font-size: 11px;
  font-weight: 600;
}

.ops-login-security {
  margin-top: 27px;
  padding: 15px;
  border: 1px solid #e1eae6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #f8fbf9;
}

.ops-login-security > span {
  width: 31px;
  height: 31px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #def8eb;
  color: var(--ops-green-dark);
  font-size: 13px;
  font-weight: 800;
}

.ops-login-security b,
.ops-login-security small {
  display: block;
}

.ops-login-security b {
  color: var(--ops-ink);
  font-size: 11px;
}

.ops-login-security small {
  margin-top: 3px;
  color: var(--ops-muted);
  font-size: 9px;
  line-height: 1.45;
}

.ops-login-help {
  width: 100%;
  margin-top: auto;
  color: #9ba8a3;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.ops-v3 .ops-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  background: var(--ops-canvas);
}

.ops-v3 .ops-sidebar {
  width: 264px;
  min-height: 100vh;
  padding: 25px 18px;
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0, rgba(32, 227, 139, 0.1), transparent 17rem),
    var(--ops-forest-deep);
}

.ops-v3 .ops-brand {
  padding: 0 10px 23px;
  color: #fff;
}

.ops-v3 .ops-brand .ops-logo-mark {
  width: 35px;
  height: 35px;
  border-radius: 11px;
  font-size: 19px;
}

.ops-v3 .ops-workspace {
  margin: 5px 3px 24px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.ops-workspace-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(32, 227, 139, 0.12);
  color: var(--ops-green);
  font-size: 10px;
  font-weight: 800;
}

.ops-v3 .ops-workspace div {
  min-width: 0;
  flex: 1;
  display: grid;
  gap: 2px;
}

.ops-v3 .ops-workspace b {
  overflow: hidden;
  color: #fff;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ops-v3 .ops-workspace small {
  color: rgba(223, 240, 233, 0.4);
  font-size: 8px;
}

.ops-v3 .ops-workspace > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ops-green);
  box-shadow: 0 0 0 4px rgba(32, 227, 139, 0.1);
}

.ops-v3 .ops-nav {
  display: grid;
  gap: 4px;
}

.ops-v3 .ops-nav > small {
  margin: 15px 12px 6px;
  color: rgba(217, 235, 228, 0.28);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.ops-v3 .ops-nav > small:first-child {
  margin-top: 0;
}

.ops-v3 .ops-nav button {
  width: 100%;
  min-height: 43px;
  padding: 0 12px;
  border: 0;
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(224, 239, 233, 0.57);
  background: transparent;
  font-size: 11px;
  text-align: left;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}

.ops-v3 .ops-nav button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.ops-v3 .ops-nav button.active {
  color: var(--ops-forest-deep);
  background: var(--ops-green);
  box-shadow: 0 12px 24px rgba(32, 227, 139, 0.11);
}

.ops-v3 .ops-nav button > span {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: currentColor;
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 800;
}

.ops-v3 .ops-nav button.active > span {
  background: rgba(5, 42, 34, 0.08);
}

.ops-v3 .ops-nav button b {
  font-weight: 600;
}

.ops-v3 .ops-sidebar-bottom {
  margin-top: auto;
  position: static;
}

.ops-v3 .ops-equipment-state {
  margin: 14px 2px 12px;
  padding: 13px;
  border: 1px solid rgba(246, 169, 59, 0.12);
  border-radius: 13px;
  background: rgba(246, 169, 59, 0.055);
}

.ops-v3 .ops-equipment-state span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffd79f;
  font-size: 9px;
  font-weight: 700;
}

.ops-v3 .ops-equipment-state span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ops-amber);
  box-shadow: 0 0 0 4px rgba(246, 169, 59, 0.1);
}

.ops-v3 .ops-equipment-state p {
  margin: 7px 0 0;
  color: rgba(225, 238, 233, 0.38);
  font-size: 8px;
  line-height: 1.55;
}

.ops-v3 .ops-equipment-state.ready {
  border-color: rgba(32, 227, 139, 0.16);
  background: rgba(32, 227, 139, 0.07);
}

.ops-v3 .ops-equipment-state.ready span {
  color: #91f0bd;
}

.ops-v3 .ops-equipment-state.ready span i {
  background: var(--ops-green);
  box-shadow: 0 0 0 4px rgba(32, 227, 139, 0.1);
}

.ops-v3 .ops-equipment-state.ready p {
  color: rgba(225, 241, 234, 0.56);
}

.ops-v3 .ops-logout {
  width: 100%;
  min-height: 39px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(224, 239, 233, 0.48);
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}

.ops-v3 .ops-logout:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.ops-v3 .ops-main {
  min-width: 0;
  grid-column: 2;
}

.ops-v3 .ops-header {
  height: 78px;
  padding: 0 30px;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(221, 232, 227, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.ops-v3 .ops-menu-toggle {
  display: none;
}

.ops-v3 .ops-header-copy > span {
  color: var(--ops-green-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.ops-v3 .ops-header-copy h1 {
  margin: 4px 0 0;
  color: var(--ops-ink);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.ops-v3 .ops-header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.ops-current-date {
  color: #81918b;
  font-size: 10px;
  text-transform: capitalize;
}

.ops-v3 .ops-api-state {
  padding: 8px 11px;
  border: 1px solid #dceae4;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #177f53;
  background: #f4fbf8;
  font-size: 9px;
  font-weight: 700;
}

.ops-v3 .ops-api-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ops-green-dark);
  box-shadow: 0 0 0 4px rgba(15, 172, 104, 0.09);
}

.ops-v3 .ops-api-state.error {
  color: var(--ops-red);
  background: #fff5f5;
}

.ops-v3 .ops-admin {
  padding-left: 16px;
  border-left: 1px solid var(--ops-line);
  display: flex;
  align-items: center;
  gap: 9px;
}

.ops-v3 .ops-admin > span {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--ops-forest);
  color: var(--ops-green);
  font-size: 10px;
  font-weight: 800;
}

.ops-v3 .ops-admin b,
.ops-v3 .ops-admin small {
  display: block;
}

.ops-v3 .ops-admin b {
  color: var(--ops-ink);
  font-size: 10px;
}

.ops-v3 .ops-admin small {
  margin-top: 3px;
  color: #8a9993;
  font-size: 8px;
}

.ops-v3 .ops-content {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 28px 30px 55px;
}

.ops-v3 .ops-view {
  display: none;
}

.ops-v3 .ops-view.active {
  display: block;
  animation: opsViewIn 220ms ease both;
}

@keyframes opsViewIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}

.ops-welcome {
  min-height: 174px;
  padding: 31px 32px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(32, 227, 139, 0.08), transparent 55%),
    var(--ops-forest);
  box-shadow: 0 20px 45px rgba(7, 59, 48, 0.1);
}

.ops-welcome > div:not(.ops-welcome-glow) {
  position: relative;
  z-index: 2;
}

.ops-welcome .ops-kicker {
  color: var(--ops-green);
}

.ops-welcome h2 {
  margin: 10px 0 7px;
  color: #fff;
  font-size: 27px;
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.ops-welcome p {
  max-width: 650px;
  margin: 0;
  color: rgba(231, 244, 239, 0.58);
  font-size: 11px;
  line-height: 1.65;
}

.ops-welcome-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ops-welcome-glow {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  position: absolute;
  right: -120px;
  top: -180px;
  background: rgba(32, 227, 139, 0.12);
  filter: blur(6px);
}

.ops-v3 .ops-primary-action,
.ops-secondary-action,
.ops-filter-submit {
  min-height: 43px;
  padding: 0 15px;
  border: 0;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ops-forest-deep);
  background: var(--ops-green);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.ops-v3 .ops-primary-action:hover,
.ops-secondary-action:hover,
.ops-filter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(14, 172, 104, 0.14);
}

.ops-secondary-action {
  border: 1px solid var(--ops-line);
  color: var(--ops-ink);
  background: #fff;
}

.ops-welcome .ops-secondary-action {
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.ops-v3 .ops-stat-grid {
  margin: 17px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.ops-v3 .ops-stat {
  min-height: 142px;
  padding: 19px;
  border: 1px solid var(--ops-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 49, 39, 0.035);
}

.ops-v3 .ops-stat > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ops-v3 .ops-stat > div > span {
  color: #6d7f78;
  font-size: 10px;
  font-weight: 650;
}

.ops-v3 .ops-stat i {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #7f918a;
  background: #f0f4f2;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.ops-v3 .ops-stat i.mint {
  color: var(--ops-green-dark);
  background: #ddf9eb;
}

.ops-v3 .ops-stat i.blue {
  color: var(--ops-blue);
  background: #eaf2ff;
}

.ops-v3 .ops-stat i.violet {
  color: #796de2;
  background: #efedff;
}

.ops-v3 .ops-stat i.amber {
  color: #c27a17;
  background: #fff2df;
}

.ops-v3 .ops-stat strong {
  margin-top: 18px;
  display: block;
  color: var(--ops-ink);
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.ops-v3 .ops-stat small {
  margin-top: 7px;
  display: block;
  color: #8a9993;
  font-size: 9px;
}

.ops-v3 .ops-panel {
  border: 1px solid var(--ops-line);
  border-radius: 19px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 49, 39, 0.035);
}

.ops-v3 .ops-panel-head {
  min-height: 66px;
  padding: 0 19px;
  border-bottom: 1px solid #e9efec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ops-v3 .ops-panel-head > div > span {
  color: var(--ops-green-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.ops-v3 .ops-panel-head h3 {
  margin: 4px 0 0;
  color: var(--ops-ink);
  font-size: 13px;
  letter-spacing: -0.025em;
}

.ops-v3 .ops-panel-head button {
  border: 0;
  background: transparent;
  color: #6e8079;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.ops-v3 .ops-panel-head > b {
  color: var(--ops-forest);
  font-size: 10px;
}

.ops-v3 .ops-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.62fr);
  gap: 13px;
}

.ops-network-panel {
  min-height: 360px;
  position: relative;
}

.ops-overview-map {
  height: 292px;
  background: #e8f0ec;
}

.ops-map-placeholder {
  position: absolute;
  inset: 67px 0 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(28deg, transparent 47%, rgba(35, 89, 71, 0.04) 48%, rgba(35, 89, 71, 0.04) 50%, transparent 51%) 0 0 / 92px 92px,
    #edf4f1;
  text-align: center;
}

.ops-map-placeholder > span {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ops-green-dark);
  font-size: 20px;
  box-shadow: 0 12px 28px rgba(17, 61, 50, 0.1);
}

.ops-map-placeholder b {
  color: var(--ops-forest);
  font-size: 12px;
}

.ops-map-placeholder small {
  margin-top: 5px;
  color: #7a8c85;
  font-size: 9px;
}

.ops-health-panel {
  display: flex;
  flex-direction: column;
}

.ops-health-total {
  padding: 23px 20px 18px;
}

.ops-health-total strong,
.ops-health-total span {
  display: block;
}

.ops-health-total strong {
  color: var(--ops-forest);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.ops-health-total span {
  margin-top: 6px;
  color: var(--ops-muted);
  font-size: 9px;
}

.ops-health-list {
  padding: 0 20px;
  display: grid;
}

.ops-health-list > div {
  min-height: 42px;
  border-top: 1px solid #edf1ef;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ops-health-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #63766f;
  font-size: 9px;
}

.ops-health-list b {
  color: var(--ops-ink);
  font-size: 10px;
}

.ops-health-list i,
.ops-map-status-grid i,
.ops-map-legend i,
.ops-map-list-item > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  flex: 0 0 auto;
  background: #879792;
}

.ops-health-list i.online,
.ops-map-status-grid i.online,
.ops-map-legend i.online,
.ops-map-list-item > i.online {
  background: #16c784;
  box-shadow: 0 0 0 4px rgba(22, 199, 132, 0.1);
}

.ops-health-list i.awaiting_equipment,
.ops-map-status-grid i.awaiting_equipment,
.ops-map-legend i.awaiting_equipment,
.ops-map-list-item > i.awaiting_equipment {
  background: #f6a93b;
  box-shadow: 0 0 0 4px rgba(246, 169, 59, 0.1);
}

.ops-health-list i.maintenance,
.ops-map-status-grid i.maintenance,
.ops-map-legend i.maintenance,
.ops-map-list-item > i.maintenance {
  background: #3587f2;
  box-shadow: 0 0 0 4px rgba(53, 135, 242, 0.1);
}

.ops-health-list i.offline,
.ops-map-status-grid i.offline,
.ops-map-legend i.offline,
.ops-map-list-item > i.offline,
.ops-map-list-item > i.faulted {
  background: #879792;
  box-shadow: 0 0 0 4px rgba(135, 151, 146, 0.1);
}

.ops-panel-action {
  min-height: 39px;
  margin: auto 20px 19px;
  border: 1px solid var(--ops-line);
  border-radius: 10px;
  color: var(--ops-forest);
  background: #f7faf8;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.ops-dashboard-lower {
  margin-top: 13px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.62fr);
  gap: 13px;
}

.ops-v3 .ops-station-cards {
  padding: 10px 13px 13px;
  display: grid;
  gap: 8px;
}

.ops-v3 .ops-station-card {
  width: 100%;
  min-height: 69px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  background: #f8faf9;
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.ops-v3 .ops-station-card:hover {
  border-color: #dce7e2;
  background: #fff;
  transform: translateY(-1px);
}

.ops-v3 .ops-station-symbol,
.ops-v3 .ops-table-station > span {
  width: 37px;
  height: 37px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--ops-green-dark);
  background: #dff9ec;
  font-size: 17px;
  font-weight: 800;
}

.ops-v3 .ops-station-symbol.awaiting_equipment,
.ops-v3 .ops-table-station > span.awaiting_equipment {
  color: #bd7415;
  background: #fff0da;
}

.ops-v3 .ops-station-symbol.offline,
.ops-v3 .ops-station-symbol.faulted,
.ops-v3 .ops-table-station > span.offline,
.ops-v3 .ops-table-station > span.faulted {
  color: #74847e;
  background: #edf1ef;
}

.ops-v3 .ops-station-symbol.maintenance,
.ops-v3 .ops-table-station > span.maintenance {
  color: var(--ops-blue);
  background: #eaf2ff;
}

.ops-v3 .ops-station-card > div {
  min-width: 0;
}

.ops-v3 .ops-station-card > div > b,
.ops-v3 .ops-station-card > div > small {
  display: block;
}

.ops-v3 .ops-station-card > div > b {
  margin-top: 5px;
  overflow: hidden;
  color: var(--ops-ink);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ops-v3 .ops-station-card > div > small {
  margin-top: 4px;
  color: #87968f;
  font-size: 8px;
}

.ops-v3 .ops-station-card > strong {
  color: var(--ops-forest);
  font-size: 11px;
  text-align: right;
}

.ops-v3 .ops-station-card > strong small {
  margin-top: 3px;
  display: block;
  color: #8a9893;
  font-size: 7px;
}

.ops-finance-snapshot-body {
  padding: 25px 20px;
}

.ops-finance-snapshot-body > span {
  color: var(--ops-muted);
  font-size: 9px;
}

.ops-finance-snapshot-body > strong {
  margin-top: 8px;
  display: block;
  color: var(--ops-forest);
  font-size: 26px;
  letter-spacing: -0.045em;
}

.ops-finance-snapshot-body > div {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e9efec;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.ops-finance-snapshot-body > div span,
.ops-finance-snapshot-body small,
.ops-finance-snapshot-body b {
  display: block;
}

.ops-finance-snapshot-body small {
  color: #8b9994;
  font-size: 8px;
}

.ops-finance-snapshot-body b {
  margin-top: 5px;
  color: var(--ops-ink);
  font-size: 10px;
}

.ops-v3 .ops-page-toolbar {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.ops-v3 .ops-page-toolbar h2 {
  margin: 7px 0 5px;
  color: var(--ops-ink);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.ops-v3 .ops-page-toolbar p {
  max-width: 720px;
  margin: 0;
  color: var(--ops-muted);
  font-size: 10px;
  line-height: 1.6;
}

.ops-map-status-grid {
  margin-bottom: 13px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ops-map-status-grid article {
  min-height: 79px;
  padding: 15px 17px;
  border: 1px solid var(--ops-line);
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
}

.ops-map-status-grid i {
  width: 10px;
  height: 10px;
}

.ops-map-status-grid strong,
.ops-map-status-grid span {
  display: block;
}

.ops-map-status-grid strong {
  color: var(--ops-ink);
  font-size: 20px;
  line-height: 1;
}

.ops-map-status-grid span {
  margin-top: 5px;
  color: var(--ops-muted);
  font-size: 9px;
}

.ops-map-layout {
  min-height: 630px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 13px;
}

.ops-full-map-card {
  min-height: 630px;
  position: relative;
}

.ops-map-toolbar {
  min-height: 57px;
  padding: 0 15px;
  border-bottom: 1px solid var(--ops-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.ops-map-legend {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ops-map-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #657870;
  font-size: 8px;
  font-weight: 700;
}

.ops-map-toolbar button {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--ops-line);
  border-radius: 9px;
  color: var(--ops-forest);
  background: #fff;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.ops-full-map {
  height: 571px;
  background: #e8efeb;
}

.ops-full-map-card > .ops-map-placeholder {
  inset: 57px 0 0;
}

.ops-map-station-list {
  min-height: 630px;
}

.ops-map-list-scroll {
  max-height: 562px;
  padding: 10px;
  overflow-y: auto;
}

.ops-map-list-item {
  width: 100%;
  min-height: 63px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  color: var(--ops-ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.ops-map-list-item:hover {
  border-color: var(--ops-line);
  background: #f7faf8;
}

.ops-map-list-item b,
.ops-map-list-item small {
  display: block;
}

.ops-map-list-item b {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ops-map-list-item small {
  margin-top: 4px;
  color: #899892;
  font-size: 8px;
}

.ops-map-list-item > span {
  color: #9ba8a3;
  font-size: 13px;
}

.ops-v3 .leaflet-container {
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.ops-v3 .leaflet-control-zoom a {
  color: var(--ops-forest);
}

.ops-v3 .leaflet-control-attribution {
  color: #70817a;
  font-size: 7px;
}

.ops-leaflet-marker {
  background: transparent;
  border: 0;
}

.ops-leaflet-marker > span {
  width: 38px;
  height: 38px;
  border: 4px solid #fff;
  border-radius: 14px 14px 14px 4px;
  display: grid;
  place-items: center;
  transform: rotate(-45deg);
  color: #fff;
  background: #879792;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(17, 46, 37, 0.2);
}

.ops-leaflet-marker > span b {
  display: block;
  transform: rotate(45deg);
  font-weight: 800;
}

.ops-leaflet-marker > span.online {
  background: #16c784;
}

.ops-leaflet-marker > span.awaiting_equipment {
  background: #f6a93b;
}

.ops-leaflet-marker > span.maintenance {
  background: #3587f2;
}

.ops-leaflet-marker > span.faulted {
  background: #ee5d67;
}

.ops-map-popup {
  min-width: 220px;
  padding: 4px;
}

.ops-map-popup h3 {
  margin: 10px 0 5px;
  color: var(--ops-ink);
  font-size: 13px;
}

.ops-map-popup p {
  margin: 0;
  color: var(--ops-muted);
  font-size: 9px;
  line-height: 1.55;
}

.ops-map-popup > div {
  margin-top: 12px;
  display: flex;
  gap: 15px;
}

.ops-map-popup > div b {
  color: var(--ops-forest);
  font-size: 9px;
}

.ops-map-popup button {
  width: 100%;
  min-height: 33px;
  margin-top: 13px;
  border: 0;
  border-radius: 9px;
  color: var(--ops-forest-deep);
  background: var(--ops-green);
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.ops-v3 .ops-filter-row {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px;
  gap: 10px;
}

.ops-v3 .ops-search {
  min-height: 43px;
  padding: 0 14px;
  border: 1px solid var(--ops-line);
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #8b9994;
}

.ops-v3 .ops-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ops-ink);
  background: transparent;
  font-size: 10px;
}

.ops-v3 .ops-filter-row > select,
.ops-finance-filters input,
.ops-finance-filters select {
  min-height: 43px;
  padding: 0 12px;
  border: 1px solid var(--ops-line);
  border-radius: 11px;
  outline: 0;
  color: #52665e;
  background: #fff;
  font-size: 9px;
}

.ops-v3 .ops-table-panel {
  margin-bottom: 14px;
}

.ops-v3 .ops-table-wrap {
  overflow-x: auto;
}

.ops-v3 .ops-table {
  width: 100%;
  border-collapse: collapse;
}

.ops-v3 .ops-table th,
.ops-v3 .ops-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #edf1ef;
  text-align: left;
  white-space: nowrap;
}

.ops-v3 .ops-table th {
  color: #84948e;
  background: #fafcfb;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.ops-v3 .ops-table td {
  color: #50645c;
  font-size: 9px;
}

.ops-v3 .ops-table td > b,
.ops-v3 .ops-table td > small {
  display: block;
}

.ops-v3 .ops-table td > b {
  color: var(--ops-ink);
  font-size: 9px;
}

.ops-v3 .ops-table td > small {
  margin-top: 4px;
  color: #8a9993;
  font-size: 8px;
}

.ops-v3 .ops-table-station,
.ops-v3 .ops-user-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ops-v3 .ops-table-station b,
.ops-v3 .ops-table-station small,
.ops-v3 .ops-user-cell b,
.ops-v3 .ops-user-cell small {
  display: block;
}

.ops-v3 .ops-table-station b,
.ops-v3 .ops-user-cell b {
  color: var(--ops-ink);
  font-size: 9px;
}

.ops-v3 .ops-table-station small,
.ops-v3 .ops-user-cell small {
  margin-top: 4px;
  color: #8a9993;
  font-size: 8px;
}

.ops-v3 .ops-user-cell > span {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--ops-green-dark);
  background: #dff9ec;
  font-size: 9px;
  font-weight: 800;
}

.ops-v3 .ops-status,
.ops-v3 .ops-visibility,
.ops-payment-type {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #61736c;
  background: #edf2ef;
  font-size: 7px;
  font-weight: 800;
  text-transform: none;
}

.ops-v3 .ops-status.online,
.ops-v3 .ops-status.available,
.ops-v3 .ops-status.completed,
.ops-v3 .ops-status.paid,
.ops-v3 .ops-visibility.published {
  color: #108653;
  background: #ddf8eb;
}

.ops-v3 .ops-status.awaiting_equipment,
.ops-v3 .ops-status.pending,
.ops-v3 .ops-status.authorized,
.ops-v3 .ops-status.awaiting_payment,
.ops-v3 .ops-status.authorizing,
.ops-v3 .ops-status.awaiting_charger,
.ops-v3 .ops-status.charging {
  color: #ad6810;
  background: #fff0dc;
}

.ops-v3 .ops-status.maintenance,
.ops-v3 .ops-status.preparing,
.ops-v3 .ops-status.stopping {
  color: #2871cf;
  background: #e9f2ff;
}

.ops-v3 .ops-status.faulted,
.ops-v3 .ops-status.failed,
.ops-v3 .ops-status.refunded,
.ops-v3 .ops-status.cancelled {
  color: #c74550;
  background: #ffeaec;
}

.ops-v3 .ops-status.partially_refunded {
  color: #8861bd;
  background: #f2ebff;
}

.ops-v3 .ops-visibility.draft {
  color: #89631a;
  background: #fff1d7;
}

.ops-v3 .ops-row-actions {
  display: flex;
  gap: 5px;
}

.ops-v3 .ops-row-actions button {
  width: 31px;
  height: 31px;
  padding: 0;
  border: 1px solid var(--ops-line);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #61736c;
  background: #fff;
  font-size: 10px;
  cursor: pointer;
}

.ops-v3 .ops-row-actions button:hover {
  color: var(--ops-forest);
  background: #f3f8f5;
}

.ops-v3 .ops-empty,
.ops-v3 .ops-inline-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ops-v3 .ops-empty {
  min-height: 220px;
  padding: 35px;
  flex-direction: column;
  text-align: center;
}

.ops-v3 .ops-empty > span,
.ops-v3 .ops-inline-empty > span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ops-green-dark);
  background: #dff9ec;
  font-size: 15px;
  font-weight: 800;
}

.ops-v3 .ops-empty h3 {
  margin: 14px 0 5px;
  color: var(--ops-forest);
  font-size: 13px;
}

.ops-v3 .ops-empty p {
  max-width: 460px;
  margin: 0;
  color: var(--ops-muted);
  font-size: 9px;
  line-height: 1.6;
}

.ops-v3 .ops-empty button {
  min-height: 37px;
  margin-top: 15px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  color: var(--ops-forest-deep);
  background: var(--ops-green);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.ops-v3 .ops-inline-empty {
  min-height: 85px;
  padding: 13px;
  gap: 11px;
  justify-content: flex-start;
  color: var(--ops-ink);
}

.ops-v3 .ops-inline-empty b,
.ops-v3 .ops-inline-empty small {
  display: block;
}

.ops-v3 .ops-inline-empty b {
  font-size: 10px;
}

.ops-v3 .ops-inline-empty small {
  margin-top: 4px;
  color: var(--ops-muted);
  font-size: 8px;
}

.ops-finance-filters {
  margin-bottom: 13px;
  padding: 15px;
  border: 1px solid var(--ops-line);
  border-radius: 17px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr 1.1fr 1.1fr auto;
  align-items: end;
  gap: 9px;
  background: #fff;
}

.ops-finance-filters.loading {
  pointer-events: none;
  opacity: 0.65;
}

.ops-finance-filters label {
  display: grid;
  gap: 7px;
}

.ops-finance-filters label > span {
  color: #62756d;
  font-size: 8px;
  font-weight: 750;
}

.ops-filter-submit {
  min-width: 110px;
}

.ops-finance-kpis {
  margin-bottom: 13px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ops-finance-kpis article {
  min-height: 123px;
  padding: 18px;
  border: 1px solid var(--ops-line);
  border-radius: 17px;
  background: #fff;
}

.ops-finance-kpis article.highlight {
  border-color: var(--ops-forest);
  color: #fff;
  background: var(--ops-forest);
  box-shadow: 0 15px 35px rgba(7, 59, 48, 0.12);
}

.ops-finance-kpis span,
.ops-finance-kpis strong,
.ops-finance-kpis small {
  display: block;
}

.ops-finance-kpis span {
  color: #74867e;
  font-size: 9px;
  font-weight: 650;
}

.ops-finance-kpis strong {
  margin-top: 18px;
  color: var(--ops-ink);
  font-size: 19px;
  letter-spacing: -0.035em;
}

.ops-finance-kpis small {
  margin-top: 6px;
  color: #909d98;
  font-size: 8px;
}

.ops-finance-kpis article.highlight span,
.ops-finance-kpis article.highlight small {
  color: rgba(226, 242, 235, 0.58);
}

.ops-finance-kpis article.highlight strong {
  color: var(--ops-green);
}

.ops-finance-grid {
  margin-bottom: 13px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  gap: 13px;
}

.ops-revenue-chart {
  height: 280px;
  padding: 25px 20px 14px;
  position: relative;
}

.ops-chart-grid {
  position: absolute;
  inset: 25px 20px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ops-chart-grid i {
  width: 100%;
  border-top: 1px dashed #e6ece9;
}

.ops-chart-columns {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: clamp(3px, 0.7vw, 9px);
}

.ops-chart-column {
  min-width: 4px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ops-chart-column > span {
  width: 100%;
  min-height: 3px;
  border-radius: 5px 5px 2px 2px;
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ops-green) 0%, #66efb5 100%);
  transition: filter 150ms ease;
}

.ops-chart-column:hover > span {
  filter: brightness(0.92);
}

.ops-chart-column small {
  height: 27px;
  padding-top: 8px;
  overflow: visible;
  color: #8a9993;
  font-size: 7px;
  white-space: nowrap;
}

.ops-chart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #899892;
  text-align: center;
}

.ops-chart-empty span {
  color: var(--ops-green-dark);
  font-size: 24px;
}

.ops-chart-empty b {
  margin-top: 10px;
  color: var(--ops-ink);
  font-size: 11px;
}

.ops-chart-empty small {
  margin-top: 5px;
  font-size: 8px;
}

.ops-payment-mix {
  padding: 18px 20px;
  display: grid;
  gap: 18px;
}

.ops-payment-row > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ops-payment-row > div span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5e7269;
  font-size: 9px;
  font-weight: 650;
}

.ops-payment-row > div span i {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  display: block;
  background: var(--ops-green);
}

.ops-payment-row > div span i.credit_card {
  background: var(--ops-blue);
}

.ops-payment-row > div span i.debit_card {
  background: #8a76de;
}

.ops-payment-row > div b {
  color: var(--ops-ink);
  font-size: 9px;
}

.ops-payment-track {
  height: 7px;
  margin-top: 9px;
  border-radius: 999px;
  display: block;
  overflow: hidden;
  background: #edf2ef;
}

.ops-payment-track i {
  height: 100%;
  border-radius: inherit;
  display: block;
  background: var(--ops-green);
}

.ops-payment-track i.credit_card {
  background: var(--ops-blue);
}

.ops-payment-track i.debit_card {
  background: #8a76de;
}

.ops-payment-row > small {
  margin-top: 6px;
  display: block;
  color: #98a49f;
  font-size: 7px;
}

.ops-money-positive {
  color: var(--ops-green-dark) !important;
}

.ops-payment-type {
  color: #356eaa;
  background: #eaf3ff;
}

.ops-v3 .ops-integration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.ops-v3 .ops-integration {
  min-height: 260px;
  padding: 23px;
  border: 1px solid var(--ops-line);
  border-radius: 19px;
  position: relative;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 49, 39, 0.035);
}

.ops-v3 .ops-integration-icon {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--ops-green-dark);
  background: #def9eb;
  font-size: 11px;
  font-weight: 800;
}

.ops-v3 .ops-integration.pending .ops-integration-icon {
  color: #b36f17;
  background: #fff0db;
}

.ops-v3 .ops-integration-state {
  padding: 6px 9px;
  border-radius: 999px;
  position: absolute;
  top: 23px;
  right: 23px;
  color: #108653;
  background: #def8eb;
  font-size: 7px;
  font-weight: 800;
}

.ops-v3 .ops-integration.pending .ops-integration-state {
  color: #ad6810;
  background: #fff0dc;
}

.ops-v3 .ops-integration h3 {
  margin: 28px 0 8px;
  color: var(--ops-ink);
  font-size: 15px;
}

.ops-v3 .ops-integration p {
  margin: 0;
  color: var(--ops-muted);
  font-size: 10px;
  line-height: 1.65;
}

.ops-v3 .ops-integration > small {
  margin-top: 31px;
  display: block;
  color: #95a29d;
  font-size: 8px;
}

.ops-v3 .ops-modal {
  width: min(760px, calc(100% - 30px));
  max-width: 760px;
  max-height: calc(100vh - 30px);
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 35px 90px rgba(6, 36, 29, 0.28);
}

.ops-v3 .ops-modal::backdrop {
  background: rgba(3, 30, 24, 0.64);
  backdrop-filter: blur(5px);
}

.ops-v3 .ops-modal-card {
  max-height: calc(100vh - 30px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}

.ops-v3 .ops-modal-head {
  padding: 21px 23px;
  border-bottom: 1px solid var(--ops-line);
  display: flex;
  justify-content: space-between;
}

.ops-v3 .ops-modal-head span {
  color: var(--ops-green-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.ops-v3 .ops-modal-head h2 {
  margin: 5px 0;
  color: var(--ops-ink);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.ops-v3 .ops-modal-head p {
  margin: 0;
  color: var(--ops-muted);
  font-size: 9px;
}

.ops-v3 .ops-modal-head > button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ops-line);
  border-radius: 10px;
  color: #62756d;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
}

.ops-v3 .ops-form-scroll {
  padding: 20px 23px;
  overflow-y: auto;
}

.ops-v3 .ops-form-scroll fieldset {
  margin: 0 0 17px;
  padding: 17px;
  border: 1px solid var(--ops-line);
  border-radius: 15px;
}

.ops-v3 .ops-form-scroll legend {
  padding: 0 7px;
  color: var(--ops-green-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ops-v3 .ops-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.ops-v3 .ops-form-grid label {
  display: grid;
  gap: 6px;
  color: #53685f;
  font-size: 9px;
  font-weight: 700;
}

.ops-v3 .ops-form-grid label.full,
.ops-v3 .ops-form-help.full,
.ops-v3 .ops-check.full {
  grid-column: 1 / -1;
}

.ops-v3 .ops-form-grid input,
.ops-v3 .ops-form-grid select,
.ops-v3 .ops-form-grid textarea,
.ops-v3 .ops-inline-form input,
.ops-v3 .ops-inline-form select {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid #dce6e1;
  border-radius: 10px;
  outline: 0;
  color: var(--ops-ink);
  background: #fbfcfb;
  font-size: 9px;
}

.ops-v3 .ops-form-grid textarea {
  min-height: 83px;
  padding-block: 10px;
  resize: vertical;
}

.ops-v3 .ops-form-help {
  margin: -3px 0 0;
  color: #899892;
  font-size: 8px;
  line-height: 1.55;
}

.ops-v3 .ops-check {
  min-height: 40px;
  padding: 0 11px;
  border-radius: 10px;
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  background: #f5f9f7;
}

.ops-v3 .ops-check input {
  width: 15px;
  min-height: 15px;
}

.ops-v3 .ops-modal-footer {
  padding: 15px 23px;
  border-top: 1px solid var(--ops-line);
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  background: #fafcfb;
}

.ops-v3 .ops-secondary {
  min-height: 43px;
  padding: 0 15px;
  border: 1px solid var(--ops-line);
  border-radius: 11px;
  color: #5e7169;
  background: #fff;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.ops-v3 .ops-connectors-list {
  display: grid;
  gap: 9px;
}

.ops-v3 .ops-connector-card {
  padding: 13px;
  border: 1px solid var(--ops-line);
  border-radius: 13px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
}

.ops-v3 .ops-connector-number {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--ops-green-dark);
  background: #ddf9eb;
  font-size: 11px;
  font-weight: 800;
}

.ops-v3 .ops-connector-card b,
.ops-v3 .ops-connector-card small {
  display: block;
}

.ops-v3 .ops-connector-card b {
  margin-top: 6px;
  color: var(--ops-ink);
  font-size: 9px;
}

.ops-v3 .ops-connector-card small {
  margin-top: 4px;
  color: var(--ops-muted);
  font-size: 8px;
}

.ops-v3 .ops-connector-card > button {
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid #f0dfe1;
  border-radius: 9px;
  color: var(--ops-red);
  background: #fff7f7;
  font-size: 8px;
  cursor: pointer;
}

.ops-v3 .ops-inline-form {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 75px 1fr 1fr auto;
  gap: 8px;
}

.ops-v3 .ops-inline-form button {
  min-height: 42px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  color: var(--ops-forest-deep);
  background: var(--ops-green);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.ops-v3 .ops-toast {
  min-width: 260px;
  max-width: min(430px, calc(100% - 30px));
  padding: 13px 16px;
  border-radius: 12px;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  color: #fff;
  background: var(--ops-forest);
  font-size: 10px;
  font-weight: 650;
  box-shadow: 0 18px 45px rgba(6, 42, 34, 0.24);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ops-v3 .ops-toast.show {
  transform: none;
  opacity: 1;
}

.ops-v3 .ops-toast.error {
  background: #b7434d;
}

@media (max-width: 1180px) {
  .ops-v3 .admin-login {
    grid-template-columns: minmax(0, 1fr) 440px;
  }

  .ops-login-features {
    grid-template-columns: 1fr;
    max-width: 470px;
    gap: 8px;
  }

  .ops-login-features article {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .ops-login-features article > span {
    margin: 0;
  }

  .ops-v3 .ops-stat-grid,
  .ops-finance-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-finance-kpis article.highlight {
    grid-column: span 2;
  }

  .ops-finance-filters {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .ops-v3 .admin-login {
    grid-template-columns: 1fr;
  }

  .ops-login-showcase {
    display: none;
  }

  .ops-login-access {
    padding: 35px 24px;
  }

  .ops-login-mobile-brand {
    margin-bottom: 65px;
    display: inline-flex;
  }

  .ops-login-help {
    margin-top: 55px;
  }

  .ops-v3 .ops-shell {
    display: block;
  }

  .ops-v3 .ops-sidebar {
    transform: translateX(-100%);
    transition: transform 190ms ease;
  }

  .ops-menu-open .ops-sidebar {
    transform: none;
    box-shadow: 30px 0 60px rgba(4, 42, 34, 0.2);
  }

  .ops-menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(4, 31, 25, 0.52);
  }

  .ops-v3 .ops-main {
    width: 100%;
  }

  .ops-v3 .ops-menu-toggle {
    width: 37px;
    height: 37px;
    margin-right: 13px;
    padding: 0;
    border: 1px solid var(--ops-line);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--ops-forest);
    background: #fff;
  }

  .ops-v3 .ops-header-copy {
    margin-right: auto;
  }

  .ops-current-date {
    display: none;
  }

  .ops-v3 .ops-overview-grid,
  .ops-dashboard-lower,
  .ops-map-layout,
  .ops-finance-grid {
    grid-template-columns: 1fr;
  }

  .ops-map-station-list {
    min-height: auto;
  }

  .ops-map-list-scroll {
    max-height: 360px;
  }
}

@media (max-width: 680px) {
  .ops-v3 .ops-header {
    height: 70px;
    padding: 0 14px;
  }

  .ops-v3 .ops-api-state,
  .ops-v3 .ops-admin > div {
    display: none;
  }

  .ops-v3 .ops-admin {
    padding-left: 0;
    border: 0;
  }

  .ops-v3 .ops-content {
    padding: 19px 13px 40px;
  }

  .ops-welcome {
    padding: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .ops-welcome-actions {
    width: 100%;
  }

  .ops-welcome-actions button {
    flex: 1;
  }

  .ops-v3 .ops-stat-grid,
  .ops-map-status-grid,
  .ops-finance-kpis,
  .ops-v3 .ops-integration-grid {
    grid-template-columns: 1fr;
  }

  .ops-finance-kpis article.highlight {
    grid-column: auto;
  }

  .ops-v3 .ops-page-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .ops-v3 .ops-page-toolbar > button {
    width: 100%;
  }

  .ops-v3 .ops-filter-row,
  .ops-finance-filters {
    grid-template-columns: 1fr;
  }

  .ops-map-legend {
    gap: 10px;
    flex-wrap: wrap;
  }

  .ops-map-toolbar {
    padding-block: 10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .ops-full-map-card {
    min-height: 575px;
  }

  .ops-full-map {
    height: 500px;
  }

  .ops-full-map-card > .ops-map-placeholder {
    inset: 75px 0 0;
  }

  .ops-v3 .ops-form-grid,
  .ops-v3 .ops-inline-form {
    grid-template-columns: 1fr;
  }

  .ops-v3 .ops-form-grid label.full,
  .ops-v3 .ops-form-help.full,
  .ops-v3 .ops-check.full {
    grid-column: auto;
  }

  .ops-v3 .ops-inline-form button {
    width: 100%;
  }
}

/* Admin V3.1: profile menu and readability */
.ops-v3 {
  --ops-muted: #586c63;
}

.ops-profile-menu {
  position: relative;
}

.ops-v3 .ops-admin {
  padding: 4px 7px 4px 16px;
  border: 0;
  border-left: 1px solid var(--ops-line);
  border-radius: 12px;
  background: transparent;
  color: var(--ops-ink);
  text-align: left;
  cursor: pointer;
  transition: background 150ms ease;
}

.ops-v3 .ops-admin:hover,
.ops-v3 .ops-admin[aria-expanded="true"] {
  background: #f3f8f5;
}

.ops-v3 .ops-admin > i {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #71847b;
  background: #edf3f0;
  font-size: 12px;
  font-style: normal;
}

.ops-profile-dropdown {
  width: 310px;
  padding: 8px;
  border: 1px solid #dce7e2;
  border-radius: 17px;
  position: absolute;
  top: calc(100% + 13px);
  right: 0;
  z-index: 80;
  background: #fff;
  box-shadow: 0 24px 65px rgba(7, 48, 39, 0.18);
  animation: opsProfileIn 160ms ease both;
}

@keyframes opsProfileIn {
  from { opacity: 0; transform: translateY(-5px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.ops-profile-dropdown-head {
  padding: 11px 10px 15px;
  border-bottom: 1px solid #e8eeeb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ops-profile-dropdown-head > span {
  width: 39px;
  height: 39px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ops-green);
  background: var(--ops-forest);
  font-size: 13px;
  font-weight: 800;
}

.ops-profile-dropdown-head div {
  min-width: 0;
}

.ops-profile-dropdown-head b,
.ops-profile-dropdown-head small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ops-profile-dropdown-head b {
  color: var(--ops-ink);
  font-size: 14px;
}

.ops-profile-dropdown-head small {
  margin-top: 4px;
  color: #657970;
  font-size: 12px;
}

.ops-profile-dropdown > button {
  width: 100%;
  min-height: 60px;
  margin-top: 5px;
  padding: 9px 10px;
  border: 0;
  border-radius: 11px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  color: var(--ops-ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.ops-profile-dropdown > button:hover {
  background: #f3f8f5;
}

.ops-profile-dropdown > button > span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ops-green-dark);
  background: #def8eb;
  font-size: 15px;
  font-weight: 800;
}

.ops-profile-dropdown > button b,
.ops-profile-dropdown > button small {
  display: block;
}

.ops-profile-dropdown > button b {
  font-size: 13px;
}

.ops-profile-dropdown > button small {
  margin-top: 4px;
  color: #677a72;
  font-size: 11px;
}

.ops-profile-dropdown > button > i {
  color: #8a9993;
  font-size: 15px;
  font-style: normal;
}

.ops-profile-dropdown > button.danger {
  color: #bd434d;
}

.ops-profile-dropdown > button.danger:hover {
  background: #fff4f5;
}

.ops-profile-dropdown > button.danger > span {
  color: #c74852;
  background: #ffeaec;
}

.ops-profile-hero {
  margin: 20px 23px 0;
  padding: 17px;
  border: 1px solid #dce8e3;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  background:
    linear-gradient(110deg, rgba(32, 227, 139, 0.08), transparent 60%),
    #f5f9f7;
}

.ops-profile-hero > span {
  width: 49px;
  height: 49px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ops-green);
  background: var(--ops-forest);
  font-size: 15px;
  font-weight: 800;
}

.ops-profile-hero b,
.ops-profile-hero small {
  display: block;
}

.ops-profile-hero b {
  color: var(--ops-ink);
  font-size: 15px;
}

.ops-profile-hero small {
  margin-top: 5px;
  color: #60736b;
  font-size: 12px;
}

.ops-profile-note {
  padding: 13px;
  border: 1px solid #dce8e3;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f5f9f7;
}

.ops-profile-note > span {
  width: 27px;
  height: 27px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ops-green-dark);
  background: #dcf8ea;
  font-size: 13px;
  font-weight: 800;
}

.ops-profile-note p {
  margin: 3px 0 0;
  color: #5e7169;
  font-size: 12px;
  line-height: 1.55;
}

.ops-v3 .ops-nav button {
  font-size: 14px;
}

.ops-v3 .ops-nav > small,
.ops-v3 .ops-header-copy > span,
.ops-login-footer {
  font-size: 11px;
}

.ops-v3 .ops-workspace b,
.ops-v3 .ops-equipment-state span,
.ops-v3 .ops-logout,
.ops-current-date,
.ops-v3 .ops-api-state {
  font-size: 12px;
}

.ops-v3 .ops-workspace small,
.ops-v3 .ops-equipment-state p {
  color: rgba(226, 241, 235, 0.58);
  font-size: 11px;
}

.ops-v3 .ops-header-copy h1 {
  font-size: 22px;
}

.ops-v3 .ops-admin b {
  font-size: 13px;
}

.ops-v3 .ops-admin small {
  color: #667970;
  font-size: 11px;
}

.ops-welcome p {
  color: rgba(231, 244, 239, 0.72);
  font-size: 14px;
}

.ops-v3 .ops-stat > div > span,
.ops-v3 .ops-page-toolbar p {
  color: #5f736a;
  font-size: 13px;
}

.ops-login-features small {
  color: rgba(225, 240, 234, 0.65);
  font-size: 13px;
}

.ops-v3 .ops-stat small,
.ops-health-total span,
.ops-health-list span,
.ops-v3 .ops-station-card > div > small,
.ops-finance-snapshot-body > span,
.ops-finance-snapshot-body small,
.ops-map-status-grid span,
.ops-map-list-item small,
.ops-v3 .ops-inline-empty small,
.ops-v3 .ops-integration > small {
  color: #657970;
  font-size: 12px;
}

.ops-v3 .ops-panel-head > div > span,
.ops-kicker {
  font-size: 11px;
}

.ops-v3 .ops-panel-head h3 {
  font-size: 16px;
}

.ops-v3 .ops-panel-head button,
.ops-panel-action,
.ops-map-toolbar button {
  font-size: 12px;
}

.ops-map-placeholder small,
.ops-map-popup p {
  color: #596d64;
  font-size: 12px;
}

.ops-v3 .ops-station-card > div > b,
.ops-map-list-item b,
.ops-finance-snapshot-body b {
  color: #40564d;
  font-size: 13px;
}

.ops-v3 .ops-station-card > strong small,
.ops-v3 .leaflet-control-attribution,
.ops-v3 .ops-integration-state {
  color: #61756c;
  font-size: 11px;
}

.ops-map-legend span,
.ops-map-popup button,
.ops-chart-empty small,
.ops-v3 .ops-connector-card > button {
  font-size: 12px;
}

.ops-v3 .ops-status,
.ops-v3 .ops-visibility,
.ops-payment-type {
  font-size: 11px;
}

.ops-v3 .ops-filter-row > select,
.ops-v3 .ops-search input,
.ops-finance-filters input,
.ops-finance-filters select {
  color: #40564d;
  font-size: 13px;
}

.ops-v3 .ops-table th {
  color: #5e7269;
  font-size: 11px;
}

.ops-v3 .ops-table td,
.ops-v3 .ops-table td > b,
.ops-v3 .ops-table-station b,
.ops-v3 .ops-user-cell b {
  font-size: 12px;
}

.ops-v3 .ops-table td > small,
.ops-v3 .ops-table-station small,
.ops-v3 .ops-user-cell small {
  color: #687b73;
  font-size: 11px;
}

.ops-finance-filters label > span,
.ops-finance-kpis span,
.ops-payment-row > div span,
.ops-payment-row > div b {
  color: #52675e;
  font-size: 12px;
}

.ops-finance-kpis small,
.ops-payment-row > small,
.ops-chart-column small {
  color: #687b73;
  font-size: 11px;
}

.ops-v3 .ops-integration p {
  color: #5d7168;
  font-size: 13px;
}

.ops-v3 .ops-modal-head p,
.ops-v3 .ops-form-help,
.ops-v3 .ops-connector-card small {
  color: #60736b;
  font-size: 12px;
}

.ops-v3 .ops-form-grid label,
.ops-v3 .ops-form-grid input,
.ops-v3 .ops-form-grid select,
.ops-v3 .ops-form-grid textarea,
.ops-v3 .ops-inline-form input,
.ops-v3 .ops-inline-form select {
  font-size: 13px;
}

.ops-v3 .ops-modal-head span,
.ops-v3 .ops-form-scroll legend {
  font-size: 11px;
}

@media (max-width: 680px) {
  .ops-profile-dropdown {
    width: min(310px, calc(100vw - 28px));
    right: -5px;
  }

  .ops-v3 .ops-admin {
    padding-left: 4px;
    border-left: 0;
  }

  .ops-v3 .ops-admin > i {
    display: none;
  }
}

/* Mantém a grade V3.3 acima das regras legadas do painel. */
.ops-v3 .ops-integration-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.ops-v3 .ops-integration {
  min-height: 238px;
}

@media (max-width: 1180px) {
  .ops-v3 .ops-integration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .ops-v3 .ops-integration-grid {
    grid-template-columns: 1fr;
  }
}
