@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --pm-bg: #0b1017;
  --pm-panel: #131b26;
  --pm-panel-2: #182232;
  --pm-line: #2a3a4f;
  --pm-text: #e8eef7;
  --pm-mute: #8fa3bb;
  --pm-amber: #f0a429;
  --pm-amber-2: #ffc45a;
  --pm-cyan: #4fd1c5;
  --pm-danger: #ff6b6b;
  --pm-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --pm-radius: 18px;
}

* { box-sizing: border-box; }

html.skin-pumpmap body {
  margin: 0;
  min-height: 100vh;
  color: var(--pm-text);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background:
    radial-gradient(900px 420px at 8% -10%, rgba(240, 164, 41, 0.16), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(79, 209, 197, 0.08), transparent 50%),
    linear-gradient(180deg, #0d1420 0%, var(--pm-bg) 45%, #090d13 100%);
}

html.skin-pumpmap .view { display: none; }
html.skin-pumpmap .view.active { display: block; }

html.skin-pumpmap .pm-frame {
  position: relative;
  width: min(100% - 28px, 1120px);
  margin: 0 auto;
  padding: 18px 0 44px;
  z-index: 1;
}

html.skin-pumpmap .pm-sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

html.skin-pumpmap .pm-sky__beam {
  position: absolute;
  width: 55vw;
  height: 55vw;
  left: -12%;
  top: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 164, 41, 0.18), transparent 68%);
  filter: blur(10px);
}

html.skin-pumpmap .pm-sky__dots {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(232, 238, 247, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
}

@keyframes pmPulse {
  0% { box-shadow: 0 0 0 0 rgba(79, 209, 197, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(79, 209, 197, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 209, 197, 0); }
}

@keyframes pmRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

html.skin-pumpmap .pm-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(42, 58, 79, 0.95);
  border-radius: 20px;
  background: rgba(19, 27, 38, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: var(--pm-shadow);
  animation: pmRise 0.55s ease both;
}

html.skin-pumpmap .pm-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: inherit;
}

html.skin-pumpmap .pm-brand img {
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(240, 164, 41, 0.28);
}

html.skin-pumpmap .pm-brand strong {
  display: block;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

html.skin-pumpmap .pm-brand small {
  color: var(--pm-mute);
  font-size: 0.78rem;
}

html.skin-pumpmap .pm-bar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

html.skin-pumpmap .pm-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--pm-line);
  background: var(--pm-panel-2);
  color: #c7d5e6;
  font-size: 0.78rem;
  font-weight: 700;
}

html.skin-pumpmap .pm-tag--live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pm-cyan);
  animation: pmPulse 1.8s ease infinite;
}

html.skin-pumpmap .pm-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
  animation: pmRise 0.65s ease 0.06s both;
}

html.skin-pumpmap .pm-hero { padding: 10px 4px 4px; }

html.skin-pumpmap .pm-chip {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(240, 164, 41, 0.14);
  color: var(--pm-amber-2);
  border: 1px solid rgba(240, 164, 41, 0.28);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html.skin-pumpmap .pm-hero h1 {
  margin: 0 0 14px;
  max-width: 13ch;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: clamp(2.05rem, 4.4vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

html.skin-pumpmap .pm-hero h1 span {
  color: var(--pm-amber);
  text-shadow: 0 0 28px rgba(240, 164, 41, 0.28);
}

html.skin-pumpmap .pm-lead {
  margin: 0 0 18px;
  max-width: 46ch;
  color: var(--pm-mute);
  font-size: 1.02rem;
  line-height: 1.55;
}

html.skin-pumpmap .pm-meters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 420px;
}

html.skin-pumpmap .pm-meters article {
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(24, 34, 50, 0.95), rgba(19, 27, 38, 0.95));
  border: 1px solid var(--pm-line);
  border-top: 3px solid var(--pm-amber);
}

html.skin-pumpmap .pm-meters small {
  display: block;
  color: var(--pm-mute);
  font-size: 0.78rem;
  font-weight: 600;
}

html.skin-pumpmap .pm-meters b {
  display: block;
  margin-top: 6px;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

html.skin-pumpmap .pm-dock {
  position: relative;
  padding: 18px 16px 16px;
  border-radius: calc(var(--pm-radius) + 4px);
  background: linear-gradient(180deg, #172131, #121925);
  border: 1px solid rgba(42, 58, 79, 0.95);
  box-shadow: var(--pm-shadow);
  overflow: hidden;
  animation: pmRise 0.7s ease 0.1s both;
}

html.skin-pumpmap .pm-rail {
  height: 4px;
  margin: -6px 0 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffc45a, #f0a429 45%, #4fd1c5);
}

html.skin-pumpmap .pm-step { display: none; }
html.skin-pumpmap .pm-step.is-on { display: block; }

html.skin-pumpmap .pm-dock__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

html.skin-pumpmap .pm-dock__head h2 {
  margin: 0;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

html.skin-pumpmap .pm-dock__head p {
  margin: 4px 0 0;
  color: var(--pm-mute);
  font-size: 0.86rem;
}

html.skin-pumpmap .pm-pill {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(79, 209, 197, 0.12);
  color: #9fe8e0;
  border: 1px solid rgba(79, 209, 197, 0.28);
  font-size: 0.75rem;
  font-weight: 800;
}

html.skin-pumpmap .pm-block { margin-bottom: 13px; }

html.skin-pumpmap .pm-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #c5d4e6;
}

html.skin-pumpmap .pm-fuels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

html.skin-pumpmap .pm-fuels button {
  min-height: 58px;
  border: 1px solid var(--pm-line);
  border-radius: 14px;
  background: #101821;
  color: var(--pm-text);
  font: inherit;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

html.skin-pumpmap .pm-fuels__wide { grid-column: 1 / -1; }

html.skin-pumpmap .pm-fuels button:hover {
  border-color: #3d5470;
  transform: translateY(-1px);
  background: #152032;
}

html.skin-pumpmap .pm-fuels button.is-active {
  border-color: rgba(240, 164, 41, 0.7);
  background: linear-gradient(180deg, rgba(240, 164, 41, 0.16), #121925);
  box-shadow: inset 0 0 0 1px rgba(240, 164, 41, 0.22);
}

html.skin-pumpmap .pm-fuels strong {
  display: block;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1rem;
}

html.skin-pumpmap .pm-fuels em {
  font-style: normal;
  color: var(--pm-mute);
  font-size: 0.75rem;
}

html.skin-pumpmap .pm-select select,
html.skin-pumpmap .phone-input,
html.skin-pumpmap .password-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--pm-line);
  border-radius: 12px;
  background: #0e151f;
  color: var(--pm-text);
  font: inherit;
  padding: 0 12px;
}

html.skin-pumpmap .pm-select select option {
  background: #131b26;
  color: var(--pm-text);
}

html.skin-pumpmap .pm-select select:focus,
html.skin-pumpmap .phone-input:focus,
html.skin-pumpmap .password-input:focus {
  outline: none;
  border-color: rgba(240, 164, 41, 0.7);
  box-shadow: 0 0 0 3px rgba(240, 164, 41, 0.18);
}

html.skin-pumpmap .pm-ghost {
  margin-top: 8px;
  width: 100%;
  min-height: 40px;
  border: 1px dashed #40556f;
  border-radius: 10px;
  background: transparent;
  color: #b7c8db;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
}

html.skin-pumpmap .pm-ghost.is-active {
  border-color: rgba(79, 209, 197, 0.55);
  background: rgba(79, 209, 197, 0.1);
  color: #9fe8e0;
}

html.skin-pumpmap .pm-checks { display: grid; gap: 8px; }

html.skin-pumpmap .pm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #c5d4e6;
  cursor: pointer;
}

html.skin-pumpmap .pm-check input {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid #5a718c;
  border-radius: 6px;
  background: #0e151f;
  cursor: pointer;
}

html.skin-pumpmap .pm-check input::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #101821;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.12s ease;
}

html.skin-pumpmap .pm-check input:checked {
  border-color: var(--pm-amber);
  background: var(--pm-amber);
}

html.skin-pumpmap .pm-check input:checked::after {
  transform: rotate(45deg) scale(1);
}

html.skin-pumpmap .pm-hint {
  margin: 0 0 8px;
  color: var(--pm-danger);
  font-size: 0.86rem;
}

html.skin-pumpmap .pm-cta {
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffc45a, #f0a429 55%, #d88912);
  color: #1a1205;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(240, 164, 41, 0.28);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

html.skin-pumpmap .pm-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(240, 164, 41, 0.36);
}

html.skin-pumpmap .pm-cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

html.skin-pumpmap .pm-fine {
  margin: 10px 0 0;
  color: #6f8298;
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: center;
}

html.skin-pumpmap .pm-progress {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: #0e151f;
  overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid var(--pm-line);
}

html.skin-pumpmap .pm-progress i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, #ffc45a, #4fd1c5);
  transition: width 0.2s ease;
}

html.skin-pumpmap .pm-progress__val {
  margin-bottom: 10px;
  text-align: right;
  color: var(--pm-mute);
  font-size: 0.8rem;
}

html.skin-pumpmap .pm-log {
  margin: 0;
  padding-left: 18px;
  color: #a9bbcf;
  font-size: 0.88rem;
  line-height: 1.55;
}

html.skin-pumpmap .pm-result {
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(240, 164, 41, 0.12), rgba(79, 209, 197, 0.08));
  border: 1px solid rgba(240, 164, 41, 0.28);
  margin-bottom: 12px;
}

html.skin-pumpmap .pm-result small {
  display: block;
  color: #8fa3bb;
  font-size: 0.76rem;
}

html.skin-pumpmap .pm-result strong {
  display: block;
  margin: 4px 0 8px;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1.55rem;
}

html.skin-pumpmap .pm-result mark {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(79, 209, 197, 0.14);
  color: #9fe8e0;
  font-size: 0.78rem;
}

html.skin-pumpmap .pm-how {
  margin-bottom: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(42, 58, 79, 0.95);
  border-radius: 18px;
  background: rgba(19, 27, 38, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  animation: pmRise 0.7s ease 0.16s both;
}

html.skin-pumpmap .pm-how h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  letter-spacing: -0.02em;
}

html.skin-pumpmap .pm-how ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

html.skin-pumpmap .pm-how li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

html.skin-pumpmap .pm-how b {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffc45a, #f0a429);
  color: #1a1205;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 0.85rem;
  box-shadow: 0 8px 16px rgba(240, 164, 41, 0.28);
}

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: calc(var(--pm-radius) + 2px);
  background: linear-gradient(180deg, #172131, #121925);
  border: 1px solid rgba(42, 58, 79, 0.95);
  box-shadow: var(--pm-shadow);
}

html.skin-pumpmap .pm-auth h2 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
}

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: 8px;
  background: rgba(79, 209, 197, 0.14);
  color: #9fe8e0;
  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 var(--pm-line);
  border-radius: 12px;
  background: #0e151f;
  color: var(--pm-text);
  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(240, 164, 41, 0.55);
  background: rgba(240, 164, 41, 0.1);
  color: var(--pm-amber-2);
}

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: 12px;
  background: #131b26;
  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: #131b26;
  color: var(--pm-text);
  padding: 10px 12px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

html.skin-pumpmap .country-opt:hover,
html.skin-pumpmap .country-opt.active {
  background: rgba(240, 164, 41, 0.12);
  color: var(--pm-amber-2);
}

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 var(--pm-line);
  border-radius: 10px;
  text-align: center;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  background: #0e151f;
  color: var(--pm-text);
}

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-cyan);
  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: 50%;
  background: rgba(79, 209, 197, 0.14);
  color: var(--pm-cyan);
  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-grid,
html.skin-pumpmap.pm-auth-open .pm-bar { display: none; }

@media (max-width: 900px) {
  html.skin-pumpmap .pm-grid,
  html.skin-pumpmap .pm-how ol { grid-template-columns: 1fr; }
  html.skin-pumpmap .pm-hero h1 { max-width: none; }
  html.skin-pumpmap .pm-meters { max-width: none; }
}

@media (max-width: 560px) {
  html.skin-pumpmap .pm-frame {
    width: min(100% - 16px, 1120px);
    padding-top: 12px;
  }
  html.skin-pumpmap .pm-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  html.skin-pumpmap .pm-meters { grid-template-columns: 1fr; }
}
