@import url("https://fonts.googleapis.com/css2?family=Onest:wght@500;600;700;800&family=Oswald:wght@500;600;700&display=swap");

:root {
  --pm-bg: #0b0f0c;
  --pm-ink: #f3f6f1;
  --pm-mute: #8b9788;
  --pm-line: #2a3328;
  --pm-surface: #141a14;
  --pm-surface-solid: #171e17;
  --pm-navy: #f5c518;
  --pm-teal: #3dd68c;
  --pm-amber: #f5c518;
  --pm-amber-deep: #c9a00c;
  --pm-soft: #24301f;
  --pm-danger: #ff6b6b;
  --pm-radius: 18px;
  --pm-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html.skin-pumpmap body {
  margin: 0;
  min-height: 100vh;
  color: var(--pm-ink);
  font-family: "Onest", system-ui, sans-serif;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(245, 197, 24, 0.16), transparent 55%),
    radial-gradient(800px 400px at 0% 100%, rgba(61, 214, 140, 0.1), transparent 50%),
    var(--pm-bg);
  -webkit-font-smoothing: antialiased;
}

html.skin-pumpmap .view { display: none; }
html.skin-pumpmap .view.active { display: block; }

html.skin-pumpmap .pm-frame {
  position: relative;
  width: min(100% - 24px, 780px);
  margin: 0 auto;
  padding: 18px 0 64px;
  z-index: 1;
}

html.skin-pumpmap .pm-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

html.skin-pumpmap .pm-scene__grid {
  position: absolute;
  inset: -30%;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: rotate(-8deg);
  opacity: 0.7;
}

html.skin-pumpmap .pm-scene__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

html.skin-pumpmap .pm-scene__blob--a {
  width: 360px;
  height: 360px;
  top: -90px;
  right: -80px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.22), transparent 70%);
}

html.skin-pumpmap .pm-scene__blob--b {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(61, 214, 140, 0.16), transparent 70%);
}

html.skin-pumpmap .pm-scene__stripe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #3dd68c, #f5c518 55%, #ff8a00);
}

html.skin-pumpmap .pm-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

html.skin-pumpmap .pm-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

html.skin-pumpmap .pm-brand img {
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.35);
}

html.skin-pumpmap .pm-brand strong {
  display: block;
  font-family: "Oswald", "Onest", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html.skin-pumpmap .pm-brand small {
  color: var(--pm-mute);
  font-size: 0.78rem;
}

html.skin-pumpmap .pm-bar__tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.35);
  background: rgba(245, 197, 24, 0.1);
  color: var(--pm-amber);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

html.skin-pumpmap .pm-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

html.skin-pumpmap .pm-hero {
  padding: 22px 8px 8px 4px;
}

html.skin-pumpmap .pm-kicker {
  margin: 0 0 8px;
  color: var(--pm-teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html.skin-pumpmap .pm-hero h1 {
  margin: 0 0 12px;
  font-family: "Oswald", "Onest", sans-serif;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

html.skin-pumpmap .pm-hero h1 span {
  color: var(--pm-amber);
}

html.skin-pumpmap .pm-lead {
  margin: 0 0 18px;
  color: var(--pm-mute);
  line-height: 1.5;
}

html.skin-pumpmap .pm-meters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

html.skin-pumpmap .pm-meter {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(20, 26, 20, 0.8);
  border: 1px solid var(--pm-line);
}

html.skin-pumpmap .pm-meter small {
  display: block;
  color: var(--pm-mute);
  font-size: 0.74rem;
  margin-bottom: 4px;
}

html.skin-pumpmap .pm-meter b {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  color: var(--pm-amber);
}

html.skin-pumpmap .pm-dock {
  padding: 18px 16px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1b231b 0%, #121812 100%);
  border: 1px solid #2e392c;
  box-shadow: var(--pm-shadow);
}

html.skin-pumpmap .pm-dock::before {
  content: "";
  display: block;
  height: 3px;
  margin: -18px -16px 16px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #3dd68c, #f5c518);
}

html.skin-pumpmap .pm-step { display: none; }
html.skin-pumpmap .pm-step.is-on { display: block; }

html.skin-pumpmap .pm-dock__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

html.skin-pumpmap .pm-dock__head h2 {
  margin: 0;
  font-size: 1.15rem;
}

html.skin-pumpmap .pm-dock__head p {
  margin: 4px 0 0;
  color: var(--pm-mute);
  font-size: 0.86rem;
}

html.skin-pumpmap .pm-pill {
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  background: #24301f;
  color: var(--pm-teal);
  font-size: 0.74rem;
  font-weight: 800;
}

html.skin-pumpmap .pm-block { margin-bottom: 14px; }

html.skin-pumpmap .pm-block--split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

html.skin-pumpmap .pm-label {
  display: block;
  margin-bottom: 8px;
  color: var(--pm-mute);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

html.skin-pumpmap .pm-fuels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

html.skin-pumpmap .pm-fuels button {
  min-height: 68px;
  border: 1px solid #33402f;
  border-radius: 14px;
  background: #101610;
  color: var(--pm-ink);
  padding: 8px 6px;
  cursor: pointer;
  font: inherit;
}

html.skin-pumpmap .pm-fuels__wide { grid-column: auto; }

html.skin-pumpmap .pm-fuels button:hover {
  border-color: rgba(245, 197, 24, 0.45);
}

html.skin-pumpmap .pm-fuels button.is-active {
  background: #f5c518;
  border-color: #f5c518;
  color: #141a14;
}

html.skin-pumpmap .pm-fuels strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
}

html.skin-pumpmap .pm-fuels em {
  color: inherit;
  opacity: 0.65;
  font-style: normal;
  font-size: 0.72rem;
}

html.skin-pumpmap .pm-select select,
html.skin-pumpmap .phone-input,
html.skin-pumpmap .password-input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #33402f;
  border-radius: 12px;
  background: #101610;
  color: var(--pm-ink);
  font: inherit;
  padding: 0 12px;
  margin-bottom: 12px;
}

html.skin-pumpmap .pm-select select option { background: #171e17; }

html.skin-pumpmap .pm-select select:focus,
html.skin-pumpmap .phone-input:focus,
html.skin-pumpmap .password-input:focus {
  outline: 2px solid rgba(245, 197, 24, 0.45);
  border-color: #f5c518;
}

html.skin-pumpmap .pm-ghost {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #3dd68c;
  background: rgba(61, 214, 140, 0.08);
  color: var(--pm-teal);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

html.skin-pumpmap .pm-ghost.is-active {
  background: #3dd68c;
  color: #0b0f0c;
}

html.skin-pumpmap .pm-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

html.skin-pumpmap .pm-check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 12px;
  background: #101610;
  border: 1px solid #2a3328;
  font-size: 0.88rem;
}

html.skin-pumpmap .pm-check input {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #5a6a52;
  border-radius: 5px;
  background: #0b0f0c;
  position: relative;
}

html.skin-pumpmap .pm-check input::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 3px;
  background: transparent;
}

html.skin-pumpmap .pm-check input:checked {
  border-color: #f5c518;
  background: #f5c518;
}

html.skin-pumpmap .pm-check input:checked::after {
  background: #141a14;
}

html.skin-pumpmap .pm-hint {
  margin: 0 0 10px;
  color: var(--pm-danger);
  font-size: 0.86rem;
}

html.skin-pumpmap .pm-cta {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd84a, #f5c518);
  color: #141a14;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(245, 197, 24, 0.22);
}

html.skin-pumpmap .pm-cta:hover { filter: brightness(1.05); }

html.skin-pumpmap .pm-cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

html.skin-pumpmap .pm-fine {
  margin: 10px 0 0;
  text-align: center;
  color: var(--pm-mute);
  font-size: 0.78rem;
}

html.skin-pumpmap .pm-progress {
  height: 8px;
  border-radius: 99px;
  background: #101610;
  overflow: hidden;
  border: 1px solid #2a3328;
}

html.skin-pumpmap .pm-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #3dd68c, #f5c518);
}

html.skin-pumpmap .pm-progress__val {
  margin: 8px 0 12px;
  color: var(--pm-amber);
  font-family: "Oswald", sans-serif;
}

html.skin-pumpmap .pm-log {
  margin: 0;
  padding-left: 18px;
  color: var(--pm-mute);
  font-size: 0.88rem;
}

html.skin-pumpmap .pm-result {
  padding: 16px;
  border-radius: 16px;
  background: #101610;
  border: 1px solid #2a3328;
  margin-bottom: 14px;
}

html.skin-pumpmap .pm-result small {
  color: var(--pm-mute);
}

html.skin-pumpmap .pm-result strong {
  display: block;
  margin: 4px 0 8px;
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  color: var(--pm-amber);
}

html.skin-pumpmap .pm-result mark {
  background: rgba(61, 214, 140, 0.12);
  color: var(--pm-teal);
  padding: 4px 8px;
  border-radius: 8px;
}

html.skin-pumpmap .pm-how {
  margin-top: 22px;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(20, 26, 20, 0.72);
  border: 1px solid #2a3328;
}

html.skin-pumpmap .pm-how h3 {
  margin: 0 0 14px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html.skin-pumpmap .pm-how ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

html.skin-pumpmap .pm-how ol::before { display: none; }

html.skin-pumpmap .pm-how li {
  display: flex;
  gap: 10px;
}

html.skin-pumpmap .pm-how b {
  color: var(--pm-amber);
  font-family: "Oswald", sans-serif;
}

html.skin-pumpmap .pm-how strong { display: block; margin-bottom: 2px; }

html.skin-pumpmap .pm-how p {
  margin: 0;
  color: var(--pm-mute);
  font-size: 0.86rem;
  line-height: 1.4;
}

html.skin-pumpmap .pm-auth {
  display: none;
  width: min(440px, 100%);
  margin: 24px auto 0;
  padding: 22px 20px;
  border-radius: var(--pm-radius);
  background: var(--pm-surface-solid);
  border: 1px solid var(--pm-line);
  box-shadow: var(--pm-shadow);
  border-top: 4px solid var(--pm-amber);
}

html.skin-pumpmap .pm-auth h2 {
  margin: 0 0 8px;
  font-family: "Oswald", "Onest", sans-serif;
  text-transform: uppercase;
}

html.skin-pumpmap .pm-auth > p {
  margin: 0 0 14px;
  color: var(--pm-mute);
  line-height: 1.45;
}

html.skin-pumpmap .pm-auth-pill {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--pm-soft);
  color: var(--pm-teal);
  font-size: 0.82rem;
  font-weight: 800;
}

html.skin-pumpmap .pm-auth-pill.hidden { display: none; }

html.skin-pumpmap .pm-phone-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

html.skin-pumpmap .country-wrap { position: relative; }

html.skin-pumpmap .pm-country-btn {
  min-height: 46px;
  min-width: 92px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #33402f;
  border-radius: 8px;
  background: #101610;
  color: var(--pm-ink);
  font: inherit;
  padding: 0 10px;
  cursor: pointer;
}

html.skin-pumpmap .country-wrap.open .pm-country-btn,
html.skin-pumpmap .pm-country-btn:active {
  border-color: rgba(245, 197, 24, 0.45);
  background: var(--pm-soft);
  color: var(--pm-amber);
}

html.skin-pumpmap .country-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 20;
  min-width: 220px;
  display: none;
  border: 1px solid var(--pm-line);
  border-radius: 8px;
  background: #171e17;
  box-shadow: var(--pm-shadow);
  overflow: hidden;
}

html.skin-pumpmap .country-wrap.open .country-drop,
html.skin-pumpmap .country-drop.open { display: block; }

html.skin-pumpmap .country-opt {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: #171e17;
  color: var(--pm-ink);
  padding: 10px 12px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

html.skin-pumpmap .country-opt:hover,
html.skin-pumpmap .country-opt.active {
  background: var(--pm-soft);
  color: var(--pm-amber);
}

html.skin-pumpmap .country-opt .c-cd {
  margin-left: auto;
  color: var(--pm-mute);
}

html.skin-pumpmap .otp-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 12px;
}

html.skin-pumpmap .otp-grid input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #33402f;
  border-radius: 8px;
  text-align: center;
  font-family: "Oswald", "Onest", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  background: #101610;
  color: var(--pm-ink);
}

html.skin-pumpmap .error-msg {
  min-height: 0;
  margin: 0 0 10px;
  color: var(--pm-danger);
  font-size: 0.88rem;
}

html.skin-pumpmap .pm-time {
  margin: 6px 0;
  color: var(--pm-mute);
  font-size: 0.86rem;
}

html.skin-pumpmap .pm-link {
  display: inline-block;
  margin-top: 8px;
  border: 0;
  background: none;
  color: var(--pm-amber);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

html.skin-pumpmap .pm-link--muted { color: var(--pm-mute); }

html.skin-pumpmap .pm-success { text-align: center; }

html.skin-pumpmap .pm-success-check {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(61, 214, 140, 0.14);
  color: var(--pm-teal);
  font-size: 1.5rem;
  font-weight: 800;
}

html.skin-pumpmap.pm-auth-open .pm-auth { display: block; }
html.skin-pumpmap.pm-auth-open .pm-how,
html.skin-pumpmap.pm-auth-open .pm-hero,
html.skin-pumpmap.pm-auth-open .pm-dock,
html.skin-pumpmap.pm-auth-open .pm-bar { display: none; }

@media (max-width: 720px) {
  html.skin-pumpmap .pm-top {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  html.skin-pumpmap .pm-fuels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  html.skin-pumpmap .pm-fuels__wide { grid-column: 1 / -1; }
  html.skin-pumpmap .pm-checks { grid-template-columns: 1fr; }
  html.skin-pumpmap .pm-block--split { grid-template-columns: 1fr; }
  html.skin-pumpmap .pm-ghost { width: 100%; }
  html.skin-pumpmap .pm-how ol { grid-template-columns: 1fr; gap: 16px; }
  html.skin-pumpmap .pm-how ol::before { display: none; }
  html.skin-pumpmap .pm-how li { flex-direction: row; }
}

@media (max-width: 560px) {
  html.skin-pumpmap .pm-frame {
    width: min(100% - 16px, 760px);
    padding-top: 14px;
  }
  html.skin-pumpmap .pm-dock { padding: 16px 14px 14px; }
  html.skin-pumpmap .pm-fuels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
