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

:root {
  --vpt-accent: #00f08a;
  --vpt-bg: #020303;
  --vpt-panel: rgba(16, 18, 18, 0.94);
  --vpt-border: rgba(255, 255, 255, 0.16);
  --vpt-text: #f6f7f7;
  --vpt-muted: #747b7a;
  --vpt-radius: 26px;
  --vpt-shadow: 0 24px 90px rgba(0, 0, 0, 0.75);
  --vpt-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--vpt-bg);
}

body.vpt-app-theme {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 61%, rgba(255, 255, 255, 0.08), transparent 25%),
    radial-gradient(circle at 50% 40%, #151716 0, #080909 39%, #010202 75%);
  color: var(--vpt-text);
  font-family: var(--vpt-font);
}

body.vpt-modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--vpt-accent);
  outline-offset: 4px;
}

.vpt-shell {
  position: relative;
  min-height: 100vh;
  padding: 24px 24px 54px;
  isolation: isolate;
}

.vpt-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.vpt-orb--top {
  top: -90px;
  right: -65px;
  width: 235px;
  height: 235px;
  border: 2px solid rgba(0, 240, 138, 0.17);
  background: radial-gradient(circle, rgba(0, 240, 138, 0.24), transparent 68%);
  box-shadow: 0 0 90px rgba(0, 240, 138, 0.17);
}

.vpt-orb--center {
  top: 51%;
  left: 50%;
  width: 800px;
  height: 350px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.065), transparent 67%);
  filter: blur(16px);
}

.vpt-floating-header {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 50;
}

.vpt-login-trigger,
.vpt-account-trigger {
  min-width: 88px;
  border: 1px solid rgba(0, 240, 138, 0.72);
  border-radius: 999px;
  padding: 10px 20px;
  background: rgba(1, 13, 8, 0.78);
  box-shadow:
    0 0 0 8px rgba(0, 240, 138, 0.025),
    0 0 32px rgba(0, 240, 138, 0.34);
  color: #fff;
  cursor: pointer;
  font-family: "Orbitron", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.vpt-account-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vpt-account-trigger__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vpt-accent);
  box-shadow: 0 0 12px var(--vpt-accent);
}

.vpt-account-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 210px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 138, 0.26);
  border-radius: 16px;
  padding: 8px;
  background: rgba(10, 12, 12, 0.98);
  box-shadow: var(--vpt-shadow);
}

.vpt-account-menu strong,
.vpt-account-menu a {
  display: block;
  border-radius: 10px;
  padding: 10px 12px;
  color: #f4f7f5;
  text-decoration: none;
}

.vpt-account-menu strong {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--vpt-accent);
  font-size: 0.82rem;
}

.vpt-account-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.vpt-control-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 235px;
  width: min(1040px, calc(100vw - 48px));
  min-height: 380px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--vpt-border);
  border-radius: var(--vpt-radius);
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.035), transparent 45%),
    var(--vpt-panel);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    var(--vpt-shadow);
  backdrop-filter: blur(18px);
}

.vpt-control-panel__main {
  padding: 28px 22px 14px 36px;
}

.vpt-brand-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.vpt-brand {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-shadow: 0 0 30px rgba(0, 240, 138, 0.18);
}

.vpt-brand span {
  color: var(--vpt-accent);
}

.vpt-custom-logo img {
  width: auto;
  max-width: 390px;
  max-height: 74px;
}

.vpt-subtitle {
  max-width: 680px;
  margin: 8px 0 0;
  color: #7d8382;
  font-size: 0.76rem;
  font-weight: 600;
}

.vpt-community {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin: 12px 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 5px 9px;
  background:
    linear-gradient(90deg, transparent, rgba(0, 240, 138, 0.08), transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 2px, transparent 2px 7px);
}

.vpt-community__join {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 7px 16px;
  background: linear-gradient(90deg, #17d985, #79f3b9);
  color: #052116;
  box-shadow: 0 0 22px rgba(0, 240, 138, 0.22);
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.vpt-whatsapp-icon {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 2px solid #062519;
  border-radius: 50%;
  font-size: 0.65rem;
}

.vpt-community__counter {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 12px;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
}

.vpt-tools {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.vpt-tool-card {
  position: relative;
  min-height: 194px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 18px 14px 13px;
  background:
    radial-gradient(circle at 50% 10%, var(--tool-glow), transparent 43%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(0, 0, 0, 0.12));
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vpt-tool-card::after {
  position: absolute;
  right: -30px;
  bottom: -55px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: var(--tool-glow);
  content: "";
  filter: blur(36px);
  opacity: 0.26;
}

.vpt-tool-card:hover,
.vpt-tool-card.is-selected {
  z-index: 2;
  transform: translateY(-4px);
  border-color: var(--tool-accent);
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.36),
    0 0 24px color-mix(in srgb, var(--tool-accent) 28%, transparent);
}

.vpt-tool-card--bronze {
  --tool-accent: #bb754b;
  --tool-glow: rgba(187, 117, 75, 0.25);
}

.vpt-tool-card--green {
  --tool-accent: #00f08a;
  --tool-glow: rgba(0, 240, 138, 0.27);
}

.vpt-tool-card--blue {
  --tool-accent: #7d9cbb;
  --tool-glow: rgba(89, 146, 198, 0.25);
}

.vpt-tool-card--silver {
  --tool-accent: #c8c9c9;
  --tool-glow: rgba(222, 225, 225, 0.16);
}

.vpt-tool-card__version {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 8px;
  padding: 2px 8px;
  background: rgba(217, 222, 221, 0.84);
  color: #202222;
  font-size: 0.56rem;
  font-weight: 800;
}

.vpt-tool-card__symbol {
  height: 48px;
  color: var(--tool-accent);
  font-family: Georgia, serif;
  font-size: 2.35rem;
  text-align: center;
  text-shadow: 0 0 18px var(--tool-accent);
}

.vpt-tool-card h2 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-size: 1.02rem;
  font-style: italic;
  letter-spacing: 0.01em;
}

.vpt-tool-card p {
  min-height: 43px;
  margin: 0;
  color: #8c9291;
  font-size: 0.63rem;
  line-height: 1.45;
}

.vpt-tool-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 9px;
}

.vpt-tool-card__chips span {
  border: 1px solid color-mix(in srgb, var(--tool-accent) 35%, transparent);
  border-radius: 5px;
  padding: 3px 5px;
  color: color-mix(in srgb, var(--tool-accent) 80%, #fff);
  background: rgba(0, 0, 0, 0.16);
  font-size: 0.49rem;
  font-weight: 800;
}

.vpt-tool-status {
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  z-index: 1;
  border: 1px solid color-mix(in srgb, var(--tool-accent) 43%, transparent);
  border-radius: 8px;
  padding: 5px 8px;
  background: rgba(1, 11, 7, 0.6);
  color: var(--tool-accent);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.vpt-tool-status--muted {
  color: #838b8a;
}

.vpt-tool-status--locked {
  color: #dfbb44;
}

.vpt-search-panel {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 18px 16px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.09), transparent 38%),
    rgba(0, 0, 0, 0.18);
}

.vpt-search-panel__version {
  position: absolute;
  top: 9px;
  right: 12px;
  z-index: 2;
  border-radius: 5px;
  padding: 2px 8px;
  background: #bcc2c1;
  color: #171919;
  font-size: 0.58rem;
  font-weight: 800;
}

.vpt-dropzone {
  position: relative;
  display: grid;
  min-height: 270px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent 32%),
    rgba(20, 21, 21, 0.86);
  box-shadow:
    inset 0 0 35px rgba(255, 255, 255, 0.035),
    0 18px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.vpt-dropzone:hover,
.vpt-dropzone.is-dragging {
  transform: translateY(-2px);
  border-color: rgba(0, 240, 138, 0.56);
  box-shadow:
    inset 0 0 35px rgba(0, 240, 138, 0.05),
    0 0 28px rgba(0, 240, 138, 0.12);
}

.vpt-dropzone__placeholder {
  display: grid;
  place-items: center;
  color: #808685;
}

.vpt-camera-icon {
  color: #a7acab;
  font-size: 2.4rem;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.32);
}

.vpt-dropzone__line {
  width: 78px;
  height: 4px;
  margin: 24px 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #e8eaea, transparent);
  box-shadow: 0 0 13px rgba(255, 255, 255, 0.7);
}

.vpt-dropzone strong,
.vpt-dropzone small {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
}

.vpt-dropzone small {
  margin-top: 5px;
  color: #606665;
  font-size: 0.49rem;
  font-weight: 700;
}

.vpt-dropzone__preview {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.vpt-dropzone__clear {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  cursor: pointer;
  font-size: 1.15rem;
}

.vpt-search-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px;
  background: rgba(35, 37, 37, 0.92);
  color: #fff;
  cursor: pointer;
  font-family: "Orbitron", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.vpt-search-button i {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vpt-accent), transparent);
  box-shadow: 0 0 12px var(--vpt-accent);
}

.vpt-search-button:hover {
  border-color: rgba(0, 240, 138, 0.55);
}

.vpt-showcase {
  width: min(1200px, calc(100vw - 20px));
  min-height: 470px;
  margin: 22px auto 0;
}

.vpt-carousel {
  position: relative;
  min-height: 470px;
  perspective: 1200px;
}

.vpt-carousel::before {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 900px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.07), transparent 68%);
  content: "";
  filter: blur(13px);
}

.vpt-carousel__track {
  position: relative;
  height: 355px;
  transform-style: preserve-3d;
}

.vpt-slide {
  --slide-x: 0px;
  --slide-z: 0px;
  --slide-scale: 1;
  --slide-opacity: 1;
  --slide-brightness: 1;
  --slide-grayscale: 0;
  position: absolute;
  top: 22px;
  left: 50%;
  width: 250px;
  height: 345px;
  transform:
    translateX(calc(-50% + var(--slide-x)))
    translateZ(var(--slide-z))
    scale(var(--slide-scale));
  transform-origin: center center;
  opacity: var(--slide-opacity);
  filter:
    brightness(var(--slide-brightness))
    grayscale(var(--slide-grayscale));
  cursor: pointer;
  transition:
    width 430ms cubic-bezier(0.21, 0.83, 0.36, 1),
    height 430ms cubic-bezier(0.21, 0.83, 0.36, 1),
    transform 430ms cubic-bezier(0.21, 0.83, 0.36, 1),
    opacity 430ms ease,
    filter 430ms ease;
  will-change: transform, opacity, filter;
}

.vpt-slide.is-active {
  z-index: 10;
  width: 275px;
  height: 380px;
}

.vpt-slide.is-near {
  z-index: 8;
}

.vpt-slide.is-mid {
  z-index: 5;
}

.vpt-slide.is-far {
  z-index: 2;
  opacity: 0.19;
}

.vpt-slide__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #171919;
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.66),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
}

.vpt-slide__image-wrap::before {
  position: absolute;
  inset: -1px;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.16), transparent 33%, transparent 74%, rgba(0, 240, 138, 0.08));
  content: "";
  pointer-events: none;
}

.vpt-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vpt-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 50%, rgba(0, 0, 0, 0.35)),
    radial-gradient(circle at 50% 25%, transparent, rgba(0, 0, 0, 0.22));
}

.vpt-showcase__meta {
  position: relative;
  z-index: 15;
  display: grid;
  justify-items: center;
  margin-top: 12px;
}

.vpt-showcase__meta h2 {
  max-width: 420px;
  margin: 0 0 8px;
  overflow: hidden;
  color: #d6d9d8;
  font-size: 0.75rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vpt-showcase__purchase {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vpt-showcase__purchase strong {
  min-width: 55px;
  color: #ffe100;
  font-family: "Orbitron", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
}

.vpt-purchase-button {
  min-width: 132px;
  border: 0;
  border-radius: 999px;
  padding: 8px 19px;
  background: linear-gradient(180deg, #dadcdb, #8b8e8d);
  color: #111313;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.vpt-purchase-button:disabled {
  cursor: default;
  opacity: 0.62;
}

.vpt-carousel__controls {
  position: relative;
  z-index: 15;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 13px;
}

.vpt-carousel__controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(18, 20, 20, 0.84);
  color: #d9dcdb;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 300;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.vpt-carousel__controls button:hover {
  transform: translateY(-2px);
  border-color: var(--vpt-accent);
  box-shadow: 0 0 22px rgba(0, 240, 138, 0.12);
}

.vpt-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: min(390px, calc(100vw - 48px));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 13px 16px;
  background: rgba(13, 16, 15, 0.96);
  box-shadow: var(--vpt-shadow);
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.45;
  animation: vpt-toast-in 220ms ease;
}

.vpt-toast--success {
  border-color: rgba(0, 240, 138, 0.45);
}

.vpt-toast--error {
  border-color: rgba(255, 82, 82, 0.5);
}

.vpt-toast--info {
  border-color: rgba(98, 163, 230, 0.5);
}

@keyframes vpt-toast-in {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
}

.vpt-modal[hidden],
.vpt-account-menu[hidden],
.vpt-toast[hidden] {
  display: none !important;
}

.vpt-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.vpt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(9px);
}

.vpt-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  border: 1px solid rgba(0, 240, 138, 0.28);
  border-radius: 24px;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 240, 138, 0.12), transparent 36%),
    #111414;
  box-shadow: var(--vpt-shadow), 0 0 50px rgba(0, 240, 138, 0.08);
}

.vpt-modal__dialog h2 {
  margin: 0 0 8px;
  font-family: "Orbitron", sans-serif;
}

.vpt-modal__dialog > p {
  margin: 0 0 20px;
  color: #858c8a;
  font-size: 0.82rem;
}

.vpt-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
}

.vpt-modal .login-username,
.vpt-modal .login-password,
.vpt-modal .login-remember {
  margin: 0 0 14px;
}

.vpt-modal label {
  display: block;
  margin-bottom: 5px;
  color: #c8cdcc;
  font-size: 0.72rem;
  font-weight: 600;
}

.vpt-modal input[type="text"],
.vpt-modal input[type="password"] {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
}

.vpt-modal input[type="submit"] {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px;
  background: var(--vpt-accent);
  color: #04130c;
  cursor: pointer;
  font-weight: 900;
}

.vpt-modal__links {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.vpt-modal__links a {
  color: #9ba19f;
  font-size: 0.7rem;
  text-decoration: none;
}

.vpt-simple-page {
  min-height: 100vh;
  padding: 70px 24px;
}

.vpt-simple-page__inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

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

.vpt-slide__score {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  border: 1px solid rgba(0, 240, 138, 0.42);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(1, 12, 8, 0.78);
  color: var(--vpt-accent);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}

/* Responsive 1.2.0 */
html,
body.vpt-app-theme {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body.vpt-app-theme img {
  max-width: 100%;
}

.vpt-carousel {
  touch-action: pan-y pinch-zoom;
}

@media (max-width: 1100px) {
  .vpt-control-panel {
    grid-template-columns: minmax(0, 1fr) 215px;
    width: min(960px, calc(100vw - 32px));
  }

  .vpt-control-panel__main {
    min-width: 0;
    padding-left: 24px;
  }

  .vpt-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vpt-tool-card {
    min-height: 178px;
  }

  .vpt-showcase {
    overflow: clip;
  }
}

@media (max-width: 782px) {
  .vpt-shell {
    min-height: 100svh;
    padding:
      calc(76px + env(safe-area-inset-top))
      max(12px, env(safe-area-inset-right))
      calc(34px + env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
  }

  .admin-bar .vpt-shell {
    padding-top: calc(116px + env(safe-area-inset-top));
  }

  .vpt-floating-header {
    position: absolute;
    top: calc(16px + env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
  }

  .admin-bar .vpt-floating-header {
    top: calc(62px + env(safe-area-inset-top));
  }

  .vpt-login-trigger,
  .vpt-account-trigger {
    min-height: 44px;
    padding: 10px 16px;
  }

  .vpt-account-menu {
    right: 0;
    width: min(230px, calc(100vw - 28px));
  }

  .vpt-control-panel {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-height: 0;
    overflow: visible;
    border-radius: 20px;
  }

  .vpt-control-panel__main {
    min-width: 0;
    padding: 22px 15px 15px;
  }

  .vpt-brand-row,
  .vpt-brand-row > div {
    width: 100%;
    min-width: 0;
  }

  .vpt-brand {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2rem, 12vw, 3.15rem);
    letter-spacing: -0.065em;
    line-height: 0.98;
  }

  .vpt-custom-logo img {
    max-width: min(100%, 330px);
    height: auto;
    max-height: 70px;
  }

  .vpt-subtitle {
    max-width: 100%;
    margin-top: 10px;
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .vpt-community {
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 14px 0 10px;
  }

  .vpt-community__join {
    min-width: 0;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.61rem;
    white-space: normal;
    text-align: center;
  }

  .vpt-community__counter {
    padding: 0 9px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .vpt-tools {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    overflow: visible;
    padding-bottom: 0;
  }

  .vpt-tool-card {
    width: auto;
    min-width: 0;
    min-height: 185px;
    padding: 16px 11px 12px;
    scroll-snap-align: none;
  }

  .vpt-tool-card__symbol {
    height: 39px;
    font-size: 1.95rem;
  }

  .vpt-tool-card h2 {
    font-size: 0.94rem;
    line-height: 1.08;
  }

  .vpt-tool-card p {
    min-height: 52px;
    font-size: 0.59rem;
  }

  .vpt-tool-card__chips span {
    font-size: 0.44rem;
  }

  .vpt-search-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
    padding: 14px;
  }

  .vpt-dropzone {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  .vpt-dropzone__preview {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .vpt-search-button {
    min-height: 48px;
  }

  .vpt-showcase {
    width: 100%;
    min-height: 0;
    margin-top: 12px;
    overflow: clip;
  }

  .vpt-carousel {
    min-height: 0;
    overflow: clip;
    perspective: 900px;
  }

  .vpt-carousel::before {
    width: 115vw;
    max-width: 620px;
    height: 260px;
  }

  .vpt-carousel__track {
    height: min(100vw, 390px);
    min-height: 330px;
    max-height: 390px;
    overflow: visible;
  }

  .vpt-slide {
    top: 8px;
    width: min(68vw, 245px);
    height: auto;
    aspect-ratio: 8 / 11;
  }

  .vpt-slide.is-active {
    width: min(74vw, 270px);
    height: auto;
    aspect-ratio: 8 / 11;
  }

  .vpt-slide__image-wrap {
    border-radius: 19px;
  }

  .vpt-showcase__meta {
    width: 100%;
    margin-top: 4px;
    padding: 0 8px;
  }

  .vpt-showcase__meta h2 {
    max-width: min(90vw, 390px);
    font-size: 0.72rem;
  }

  .vpt-showcase__purchase {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .vpt-showcase__purchase strong {
    min-width: auto;
  }

  .vpt-purchase-button {
    min-height: 40px;
  }

  .vpt-carousel__controls {
    margin-top: 12px;
  }

  .vpt-carousel__controls button {
    width: 46px;
    height: 46px;
  }

  .vpt-toast {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    max-width: none;
    font-size: 0.75rem;
  }

  .vpt-modal {
    align-items: end;
    padding:
      14px
      max(12px, env(safe-area-inset-right))
      calc(14px + env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
  }

  .vpt-modal__dialog {
    width: 100%;
    max-height: min(86svh, 720px);
    overflow-y: auto;
    border-radius: 22px;
    padding: 26px 18px;
  }

  .vpt-modal__links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .vpt-shell {
    padding-right: max(9px, env(safe-area-inset-right));
    padding-left: max(9px, env(safe-area-inset-left));
  }

  .vpt-control-panel {
    border-radius: 16px;
  }

  .vpt-control-panel__main {
    padding-right: 11px;
    padding-left: 11px;
  }

  .vpt-brand {
    font-size: clamp(1.85rem, 11.5vw, 2.75rem);
  }

  .vpt-community {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px;
    padding: 4px 5px;
  }

  .vpt-community__join {
    gap: 5px;
    padding: 7px 6px;
    font-size: 0.52rem;
  }

  .vpt-whatsapp-icon {
    width: 18px;
    height: 18px;
  }

  .vpt-community__counter {
    padding: 0 5px;
    font-size: 0.62rem;
  }

  .vpt-tools {
    grid-template-columns: minmax(0, 1fr);
  }

  .vpt-tool-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 10px;
    min-height: 142px;
    padding: 15px 11px 39px;
  }

  .vpt-tool-card__symbol {
    grid-row: 1 / span 3;
    align-self: start;
    height: auto;
    padding-top: 7px;
    font-size: 2rem;
  }

  .vpt-tool-card h2 {
    margin-top: 2px;
    font-size: 1rem;
  }

  .vpt-tool-card p {
    min-height: 0;
    font-size: 0.62rem;
  }

  .vpt-tool-card__chips {
    margin-top: 5px;
  }

  .vpt-search-panel {
    padding: 11px;
  }

  .vpt-dropzone {
    aspect-ratio: 4 / 3;
  }

  .vpt-dropzone__preview {
    aspect-ratio: 4 / 3;
  }

  .vpt-carousel__track {
    height: min(105vw, 370px);
    min-height: 310px;
  }

  .vpt-slide {
    width: min(66vw, 225px);
  }

  .vpt-slide.is-active {
    width: min(72vw, 248px);
  }

  .vpt-showcase__meta h2 {
    max-width: 86vw;
  }

  .vpt-carousel__controls button {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 360px) {
  .vpt-brand {
    font-size: 1.82rem;
  }

  .vpt-community__join {
    font-size: 0.48rem;
  }

  .vpt-community__counter {
    font-size: 0.56rem;
  }

  .vpt-carousel__track {
    min-height: 290px;
  }

  .vpt-slide {
    width: min(64vw, 205px);
  }

  .vpt-slide.is-active {
    width: min(70vw, 225px);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .vpt-shell {
    padding-top: calc(66px + env(safe-area-inset-top));
  }

  .admin-bar .vpt-shell {
    padding-top: calc(108px + env(safe-area-inset-top));
  }

  .vpt-control-panel {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 32%);
  }

  .vpt-search-panel {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .vpt-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vpt-dropzone {
    aspect-ratio: auto;
    min-height: 245px;
  }

  .vpt-showcase {
    margin-top: 8px;
  }
}

/* Google Sign-In 1.3.0 */
.vpt-google-login {
  display: grid;
  width: 100%;
  min-height: 44px;
  margin: 4px 0 18px;
  place-items: center;
}

.vpt-google-login > *,
.vpt-google-login iframe,
.vpt-google-login div[role="button"] {
  max-width: 100% !important;
}

.vpt-google-login-notice {
  display: grid;
  gap: 4px;
  margin: 4px 0 18px;
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 11px 13px;
  background: rgba(255, 193, 7, 0.06);
  color: #d8dddb;
  font-size: 0.72rem;
  line-height: 1.45;
}

.vpt-google-login-notice strong {
  color: #ffd75f;
}

.vpt-login-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0 0 17px;
  color: #717876;
  font-size: 0.64rem;
}

.vpt-login-divider::before,
.vpt-login-divider::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16));
  content: "";
}

.vpt-login-divider::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent);
}

/* VectorNed logo 1.4.0 */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.vpt-default-logo {
  display: flex;
  align-items: center;
  max-width: 100%;
}

.vpt-default-logo img {
  display: block;
  width: clamp(118px, 15vw, 178px);
  height: auto;
  border-radius: 999px;
  filter:
    drop-shadow(0 0 18px rgba(255, 0, 0, 0.38))
    drop-shadow(0 0 28px rgba(255, 204, 0, 0.14));
}

.vpt-custom-logo img {
  width: auto;
  max-width: min(260px, 44vw);
  max-height: 122px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(255, 0, 0, 0.28))
    drop-shadow(0 0 28px rgba(255, 204, 0, 0.1));
}

@media (max-width: 782px) {
  .vpt-default-logo img {
    width: clamp(106px, 28vw, 145px);
  }

  .vpt-custom-logo img {
    max-width: min(210px, 56vw);
    max-height: 100px;
  }
}

@media (max-width: 480px) {
  .vpt-default-logo {
    justify-content: flex-start;
  }

  .vpt-default-logo img {
    width: clamp(96px, 33vw, 128px);
  }
}
